@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
:root {
  --font-display: 56px;
  --font-title-xl: 48px;
  --font-title-lg: 40px;
  --font-title-md: 32px;
  --font-title-sm: 24px;
  --font-body-lg: 20px;
  --font-body-md: 16px;
  --font-body-sm: 14px;
  --font-caption: 12px;
}

@media (max-width: 768px) {
  :root {
    --font-display: 40px;
    --font-title-xl: 32px;
    --font-title-lg: 28px;
    --font-title-md: 24px;
    --font-title-sm: 20px;
    --font-body-lg: 18px;
    --font-body-md: 16px;
    --font-body-sm: 14px;
    --font-caption: 12px;
  }
}
.header {
  z-index: 7;
  position: fixed;
  width: 100%;
  padding: 24px 24px 0;
}
.header__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 32px;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(246, 248, 254, 0.6) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid #fff;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(23, 38, 89, 0.1);
}
.header__brand {
  padding: 0;
  margin-right: 0;
}
.header__logo {
  display: block;
  height: 60px;
  width: auto;
}
.header__nav {
  gap: 8px;
}
.header__nav .nav-link {
  font-size: var(--font-body-lg);
  line-height: 1.6;
  font-weight: 600;
  position: relative;
  padding: 8px 16px;
  color: #172659;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header__nav .nav-link:hover, .header__nav .nav-link:focus, .header__nav .nav-link.active {
  color: #1d4ec9;
}
.header .nav-item {
  text-align: center;
}
.header .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  display: none;
}
@media (max-width: 1199.98px) {
  .header .dropdown-toggle::after {
    display: inline-block;
  }
}
.header .dropdown-menu {
  padding: 8px;
  border: 1px solid #d3deff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(23, 38, 89, 0.15);
  background: #fff;
}
.header .dropdown-item {
  font-size: 18px;
  text-align: center;
  border-radius: 12px;
  padding: 10px 12px;
  color: #39456e;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}
.header .dropdown-item:hover, .header .dropdown-item:focus {
  color: #1d4ec9;
  background: #f6f8fe;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .navbar-toggler {
  border: none;
  padding: 4px 8px;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 1199.98px) {
  .header {
    padding: 12px 12px 0;
  }
  .header__inner {
    padding: 10px 16px;
    border-radius: 20px;
  }
  .header__logo {
    height: 48px;
  }
  .header .navbar-collapse {
    margin-top: 8px;
  }
  .header__nav {
    gap: 0;
    margin: 4px 0 8px;
  }
  .header__nav .nav-link {
    padding: 12px 8px;
  }
}
@media (max-width: 1199.98px) {
  .header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #ebebeb;
  }
  .header__actions .btn--lg {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .header__nav.w-100 {
    width: auto !important;
    flex: 1 1 auto;
    justify-content: center;
  }
  .header .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }
  .header .dropdown-menu {
    margin-top: 0;
  }
}
@media (max-width: 1199.98px) {
  .header .dropdown-menu {
    box-shadow: none;
    background: #f6f8fe;
  }
  .header .dropdown-item {
    padding: 8px 8px;
  }
}
* {
  font-family: "Noto Sans TC", sans-serif;
}

body {
  background: linear-gradient(to bottom, white 20%, #e4eafb 100%);
}
body a {
  text-decoration: none;
}

section {
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  section {
    padding: 32px 0;
  }
}

.section__head {
  text-align: center;
  margin-bottom: 36px;
}

.section__title {
  font-size: var(--font-title-lg);
  line-height: 1.25;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  color: #172659;
  font-weight: 900;
  letter-spacing: 0.1rem;
}

.section__title-deco {
  font-size: var(--font-title-sm);
  line-height: 1.25;
  font-weight: 700;
  font-weight: 900;
  background: linear-gradient(to bottom, #1d55f3, #053ee4);
  background: -webkit-linear-gradient(to bottom, #1d55f3, #053ee4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section__subtitle {
  font-size: var(--font-body-lg);
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
  color: #707b98;
  font-weight: 400;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.hero-section {
  background: url(../image/home-bg.png) 70% center no-repeat;
  background-size: cover;
  height: 1080px;
  display: flex;
  align-items: top;
  justify-content: center;
  padding-top: 290px;
}
.hero-section__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-section__content {
  padding-left: 60px;
}
.hero-section__badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid #9eb6fd;
  border-radius: 50px;
  color: #1d4ec9;
  font-weight: 500;
  background: linear-gradient(to right bottom, rgb(255, 255, 255) 0%, #eef4fe 100%);
  margin-bottom: 14px;
  font-size: 24px;
}
@media (max-width: 991.98px) {
  .hero-section__badge {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .hero-section__badge {
    font-size: 16px;
  }
}
.hero-section__title {
  margin-bottom: 8px;
  color: #3453e1;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-wrap: nowrap;
  font-size: 56px;
}
@media (max-width: 991.98px) {
  .hero-section__title {
    font-size: 32px;
  }
}
@media (max-width: 575.98px) {
  .hero-section__title {
    font-size: 30px;
  }
}
.hero-section__desc {
  font-size: 24px;
  margin-bottom: 40px;
  color: #7d7d7d;
  font-weight: 500;
  line-height: 1.25;
}
@media (max-width: 991.98px) {
  .hero-section__desc {
    margin-bottom: 24px;
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .hero-section__desc {
    font-size: 16px;
  }
}
.hero-section__highlight {
  color: #785bf1;
  font-weight: 600;
}
.hero-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  background: linear-gradient(135deg, #5a81f4 0%, #785bf1 100%);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(90, 105, 244, 0.4);
  transition: all 0.2s ease;
  height: 72px !important;
  font-size: 28px !important;
}
@media (max-width: 991.98px) {
  .hero-section__cta {
    height: 56px !important;
    font-size: 24px !important;
  }
}
@media (max-width: 575.98px) {
  .hero-section__cta {
    font-size: 20px !important;
  }
}
.hero-section__cta__btn-arrow {
  transition: transform 0.2s ease;
  width: 28px !important;
  height: 28px !important;
}
.hero-section__cta:hover, .hero-section__cta:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(120, 91, 241, 0.5);
}
.hero-section__cta:hover .hero-section__cta-arrow, .hero-section__cta:focus .hero-section__cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .hero-section {
    height: auto;
    min-height: 560px;
    padding: 120px 0 64px;
  }
  .hero-section__inner {
    padding: 0 24px;
  }
  .hero-section__content {
    max-width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .hero-section {
    background: url(../image/home-bg-mobile.png) center center no-repeat;
    background-size: cover;
    height: 666px;
  }
}
.banner {
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}
.banner__swiper {
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 48px;
  overflow: visible;
}
.banner .swiper-slide {
  width: 64%;
  max-width: 1180px;
}
.banner__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.banner__slide span {
  color: rgba(9, 41, 121, 0.35);
  font-size: var(--font-title-md);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.banner__slide img {
  height: 100%;
  width: aspect-ratio;
}
.banner .swiper-slide:not(.swiper-slide-active) .banner__slide {
  opacity: 0.55;
}
.banner__arrow {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f6f8fe 100%);
  color: #1d4ec9;
  box-shadow: 0 6px 18px rgba(23, 38, 89, 0.18);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid white;
  transition: 0.3s;
}
.banner__arrow:hover {
  transform: translateY(-3px);
}
.banner__arrow--prev {
  left: 16%;
}
.banner__arrow--next {
  right: 16%;
}
.banner__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.banner__pagination {
  bottom: 0;
}
.banner__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  background: #d3deff;
  opacity: 1;
  transition: all 0.25s ease;
}
.banner__pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: #9eb6fd;
}

@media (max-width: 1199.98px) {
  .banner__slide {
    height: 250px;
  }
}
@media (max-width: 991.98px) {
  .banner {
    padding: 40px 0;
  }
  .banner .swiper-slide {
    width: 86%;
  }
  .banner__arrow {
    width: 44px;
    height: 44px;
  }
  .banner__arrow--prev {
    left: 4%;
  }
  .banner__arrow--next {
    right: 4%;
  }
}
@media (max-width: 575.98px) {
  .banner__slide {
    height: 350px;
  }
}
@media (max-width: 419.98px) {
  .banner__slide {
    height: 280px;
  }
}
.course {
  position: relative;
}
.course::before {
  content: "";
  position: absolute;
  right: 0px;
  top: -100px;
  width: 720px;
  height: 720px;
  background: url(../image/decro-bg-04.png) center center no-repeat;
  background-size: contain;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .course::before {
    display: none;
  }
}
.course__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.course__tabs {
  display: inline-flex;
  gap: 8px;
  margin: 0 auto 24px;
  padding: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(23, 38, 89, 0.08);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.course__tab-indicator {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 50px;
  background: linear-gradient(to bottom, #2e60fd 0%, #033cca 100%);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: none;
}
.course__tabs.is-ready .course__tab-indicator {
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.course__tab {
  font-size: var(--font-body-lg);
  line-height: 1.6;
  font-weight: 600;
  position: relative;
  z-index: 1;
  font-weight: 500;
  padding: 12px 32px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: #39456e;
  cursor: pointer;
  transition: color 0.25s ease;
}
@media (max-width: 1199.98px) {
  .course__tab {
    padding: 12px 24px;
  }
}
.course__tab:hover {
  color: #1d4ec9;
}
.course__tab.is-active {
  color: #fff;
}
.course__body {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 56px;
  opacity: 1;
  transition: opacity 0.18s ease;
}
.course__body::after {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: url(../image/decro-bg.png) 70% center no-repeat;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .course__body::after {
    display: none;
  }
}
.course__player {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(23, 38, 89, 0.18);
}
.course__player-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.course__player-bg img {
  width: 100%;
}
.course__player-bg:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(26, 35, 165) 0%, rgba(25, 43, 117, 0) 100%);
}
.course__player-link {
  text-decoration: none !important;
}
.course__player-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  padding: 32px;
  background: linear-gradient(135deg, #172659 0%, #092979 60%, #1d4ec9 100%);
}
.course__player-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 5;
}
.course__player-stage {
  display: block;
  text-decoration: none;
}
.course__badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5a81f4 0%, #785bf1 100%);
  color: #fff;
  font-size: var(--font-body-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.course__player-info {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  max-width: 60%;
  color: #fff;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}
.course__player-title {
  margin: 0 0 14px;
  font-size: var(--font-title-md);
  font-weight: 900;
  line-height: 1.3;
}
.course__player-topic {
  margin: 0 0 16px;
  font-size: var(--font-body-lg);
  font-weight: 500;
}
.course__player-desc {
  margin: 0 0 28px;
  font-size: var(--font-body-md);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.course__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  padding-left: 6px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #5a81f4;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all 0.2s ease;
}
.course__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.22);
}
.course__duration {
  position: absolute;
  right: 24px;
  bottom: 20px;
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: var(--font-body-sm);
  font-weight: 500;
}
.course__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: #0c1838;
}
.course__ctrl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: color 0.2s ease;
}
.course__ctrl:hover {
  color: #fff;
}
.course__progress {
  position: relative;
  flex: 1 1 auto;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}
.course__progress-fill {
  position: absolute;
  inset: 0 60% 0 0;
  border-radius: 999px;
  background: #fff;
}
.course__progress-fill::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}
.course__time {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-body-sm);
  white-space: nowrap;
}
.course__playlist {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}
.course__playlist-title {
  font-size: var(--font-title-sm);
  line-height: 1.25;
  font-weight: 700;
  flex: 0 0 auto;
  margin: 0 0 16px;
  color: #172659;
  font-weight: 700;
}
.course__playlist-scroll {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}
.course__playlist-items {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  /* Webkit browsers (Chrome, Safari)  Scroll-bar*/
}
.course__playlist-items::-webkit-scrollbar {
  width: 0px;
}
.course__playlist-items::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 2.5px;
}
.course__playlist-items::-webkit-scrollbar-thumb::-webkit-scrollbar-track {
  background-color: transparent;
}
.course__playlist-items {
  display: none;
}
.course__playlist-items.is-active {
  display: flex;
}
.course__item-link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}
.course__item-link:hover {
  background: #f6f8fe;
}
.course__item.is-active .course__item-link {
  background: rgba(211, 222, 255, 0.5);
}
.course__item-thumb {
  flex: 0 0 auto;
  width: 104px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.course__item-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.course__item-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}
.course__item-name {
  font-size: var(--font-body-md);
  line-height: 1.6;
  font-weight: 400;
  color: #1d4ec9;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course__item-teacher {
  font-size: var(--font-body-sm);
  line-height: 1.5;
  font-weight: 400;
  font-weight: 500;
  color: #7d7d7d;
}
.course__item-time {
  flex: 0 0 auto;
  align-self: flex-end;
  padding: 3px 10px;
  border-radius: 6px;
  background: #f6f8fe;
  color: #1d4ec9;
  font-size: var(--font-body-sm);
  font-weight: 500;
}
.course__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.course__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.course__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a81f4;
}
.course__feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.course__feature-title {
  font-size: var(--font-title-sm);
  line-height: 1.25;
  font-weight: 700;
  color: #5a81f4;
  font-weight: 700;
}
.course__feature-desc {
  font-size: var(--font-body-sm);
  line-height: 1.5;
  font-weight: 400;
  color: #707b98;
}

@media (max-width: 1199.98px) {
  .course__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
@media (max-width: 991.98px) {
  .course__body {
    flex-direction: column;
  }
  .course__player-info {
    max-width: 100%;
  }
  .course__play {
    left: 50%;
  }
  .course__playlist {
    flex: 1 1 auto;
  }
  .course__playlist-scroll {
    position: static;
  }
  .course__playlist-items {
    position: static;
    inset: auto;
    overflow: visible;
  }
}
@media (max-width: 575.98px) {
  .course__tabs {
    width: 100%;
  }
  .course__tab {
    flex: 1;
    min-width: 0;
    padding: 12px 8px;
  }
  .course__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  .course__feature {
    flex-direction: column;
  }
  .course__feature-text {
    text-align: center;
  }
}
.product::before {
  content: "";
  position: absolute;
  left: -200px;
  bottom: -200px;
  width: 800px;
  height: 650px;
  background: url(../image/decro-bg-02.png) center center no-repeat;
  background-size: contain;
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .product::before {
    display: none;
  }
}
.product__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.product__body {
  display: flex;
  gap: 28px;
  align-items: stretch;
  max-width: 100%;
  width: 100%;
}
.product__cards {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1199.98px) {
  .product__cards {
    flex: 0 0 auto;
  }
}

.product-card {
  --c-name: #5a81f4;
  --c-tag: #1d4ec9;
  --c-tag-border: #d3deff;
  --c-tag-bg: #f6f8fe;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 32px;
  border-radius: 20px;
  border: 2px solid #f6f8fe;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199.98px) {
  .product-card {
    padding: 16px 12px;
    gap: 0rem;
    justify-content: center;
    align-items: stretch;
  }
}
.product-card--elem {
  background: linear-gradient(135deg, #ffffff 0%, #f6f8fe 100%);
  --c-name: #5a81f4;
  --c-tag: #1d4ec9;
  --c-tag-border: #d3deff;
  --c-tag-bg: #f6f8fe;
  --c-gradient-light: #79b3ff;
  --c-gradient-dark: #1b78f1;
}
.product-card--junior {
  background: linear-gradient(135deg, #ffffff 0%, #ebedff 100%);
  --c-name: #1d4ec9;
  --c-tag: #1d4ec9;
  --c-tag-border: #d3deff;
  --c-tag-bg: #f6f8fe;
  --c-gradient-light: #1b78f1;
  --c-gradient-dark: #004cc3;
}
.product-card--senior {
  background: linear-gradient(135deg, #ffffff 0%, #ebedfe 100%);
  --c-name: #785bf1;
  --c-tag: #4829c8;
  --c-tag-border: #d7d2ff;
  --c-tag-bg: #f7f6fe;
  --c-gradient-light: #7649f3;
  --c-gradient-dark: #2f3cde;
}
.product-card__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 1299.98px) {
  .product-card__content {
    gap: 0.5rem;
    justify-content: space-between;
  }
}
@media (max-width: 991.98px) {
  .product-card__content {
    justify-content: space-between;
  }
}
.product-card__head {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.product-card__head-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.product-card__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 30px;
  background: linear-gradient(120deg, var(--c-gradient-light) 0%, var(--c-gradient-dark) 100%);
  color: #fff;
}
.product-card__icon img {
  width: 40px;
  height: 48px;
}
.product-card__level {
  margin: 0;
  color: var(--c-name);
  font-size: var(--font-title-md);
  font-weight: 900;
  line-height: 1.1;
  text-wrap: nowrap;
}
.product-card__tagline {
  margin: 6px 0 0;
  color: #707b98;
  font-size: var(--font-body-md);
  font-weight: 500;
  text-wrap: nowrap;
}
.product-card__bar {
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c-grad-1) 0%, var(--c-grad-2) 100%);
}
.product-card__thumb {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 116px;
  border-radius: 14px;
}
@media (max-width: 991.98px) {
  .product-card__thumb {
    height: 116px;
  }
  .product-card__thumb img {
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
  }
}
.product-card__thumb span {
  color: var(--c-name);
  font-size: var(--font-body-lg);
  font-weight: 700;
  opacity: 0.6;
}
.product-card__tags {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1299.98px) {
  .product-card__tags {
    display: none;
  }
}
.product-card__tag {
  width: 120px;
  padding: 4px 16px;
  border-radius: 50px;
  background: var(--c-tag-bg);
  color: var(--c-tag);
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  border: 1px solid var(--c-tag-border);
}
.product-card__actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: auto;
  padding-left: 32px;
  border-left: 1px solid #ebebeb;
}
@media (max-width: 1299.98px) {
  .product-card__actions {
    margin-left: 0px;
  }
}
@media (max-width: 991.98px) {
  .product-card__actions {
    padding-left: 0px;
    flex-direction: row;
    border-left: 0px;
    justify-content: center;
    width: 100%;
  }
  .product-card__actions button {
    width: 100%;
  }
}
.product-card .btn--ele-gradient {
  background: linear-gradient(180deg, #79b3ff, #1b78f1);
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.2);
}
.product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 130px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: var(--font-body-md);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.product-card__btn--ghost {
  color: var(--c-name);
  background: var(--c-soft);
  border: 1px solid var(--c-grad-1);
}
.product-card__btn--ghost:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--c-grad-1) 0%, var(--c-grad-2) 100%);
  border-color: transparent;
}
.product-card__btn--login {
  color: #fff;
  background: linear-gradient(135deg, var(--c-grad-1) 0%, var(--c-grad-2) 100%);
  box-shadow: 0 6px 16px rgba(90, 129, 244, 0.3);
}
.product-card__btn--login:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(90, 129, 244, 0.42);
}

.product-ai {
  flex: 0 0 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(160deg, #1b2f7a 0%, #122a8f 45%, #1d4ec9 100%);
  box-shadow: 0 20px 50px rgba(23, 38, 89, 0.3);
  overflow: hidden;
  transition: 0.3s;
  color: #fff;
}
@media (max-width: 1199.98px) {
  .product-ai {
    background: linear-gradient(160deg, #0641eb 0%, #00237d 45%, #540ec5 100%);
    padding: 36px 12px 16px 12px;
    gap: 1rem;
    overflow: hidden;
    flex: 0 0 auto;
  }
}
.product-ai:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.product-ai__bg {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.product-ai__bg img {
  width: 100%;
}
@media (max-width: 1199.98px) {
  .product-ai__bg {
    top: 50%;
    right: 0%;
    transform: translate(0%, -50%);
    width: auto;
  }
  .product-ai__bg img {
    height: 100%;
    width: auto;
    border-radius: 20px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 25%, black 50%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 25%, black 50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
            mask-image: linear-gradient(to right, transparent 0%, black 25%);
  }
}
.product-ai__badge {
  z-index: 1;
  font-size: var(--font-body-md);
  line-height: 1.6;
  font-weight: 400;
  position: absolute;
  top: -5px;
  right: -5px;
  padding: 8px 24px;
  border-radius: 0px 24px;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #5a81f4 0%, #785bf1 100%);
  font-weight: 600;
  box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199.98px) {
  .product-ai__badge {
    top: 0px;
    left: 0px;
    padding: 4px 16px;
    border-radius: 0 0 16px 0;
    border: 0px;
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.2);
  }
}
.product-ai__title-content {
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .product-ai__title-content {
    align-items: start;
    justify-content: center;
    text-align: start;
  }
}
.product-ai__title {
  margin: 0;
  font-size: var(--font-title-lg);
  font-weight: 900;
}
.product-ai__subtitle {
  font-size: var(--font-body-md);
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991.98px) {
  .product-ai__subtitle {
    display: none;
  }
}
.product-ai__subtitle-mb {
  display: none;
  font-size: var(--font-body-sm);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 1199.98px) {
  .product-ai__subtitle-mb {
    display: inline-block;
  }
}
.product-ai__features {
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: auto;
  margin-bottom: 16px;
}
@media (max-width: 1199.98px) {
  .product-ai__features {
    display: none;
  }
}
.product-ai__feature {
  font-size: var(--font-body-sm);
  line-height: 1.5;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 500;
  white-space: nowrap;
  color: white;
  background: linear-gradient(to right top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.5) 100%);
}
.product-ai__cta {
  font-size: var(--font-body-lg);
  line-height: 1.6;
  font-weight: 600;
  color: white;
  width: 100%;
  height: 72px;
  border-radius: 50px;
  border-color: transparent;
  background: linear-gradient(to right top, #256cfb 0%, #6733f9 50%, #c957fb 100%);
  box-shadow: inset 0 0 20px #ffffff, 0 0 20px #3943f8;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.product-ai__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: inset 0 0 20px #ffffff, 0 0 28px #3943f8;
}
.product-ai__cta:active, .product-ai__cta:focus-visible {
  filter: brightness(0.95);
  box-shadow: inset 0 0 20px #ffffff, 0 0 12px #3943f8;
  outline: none;
}
@media (max-width: 1199.98px) {
  .product-ai__cta {
    font-size: var(--font-body-md);
    line-height: 1.6;
    font-weight: 400;
    height: 48px;
  }
}

@media (max-width: 1199.98px) {
  .product__body {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  .product__body {
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    margin: auto;
  }
  .product-ai {
    flex: 1 1 auto;
  }
  .product-card {
    flex-direction: column;
  }
  .product-card__head {
    flex: 0 0 auto;
  }
  .product-card__thumb {
    flex: 1 1 auto;
  }
  .product-card__tags {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 575.98px) {
  .product-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .product-card__head {
    justify-content: center;
  }
  .product-card__heading {
    text-align: left;
  }
  .product-card__thumb {
    width: 100%;
  }
  .product-card__tags {
    justify-content: center;
  }
  .product-card__btn {
    flex: 1;
    min-width: 0;
  }
}
.info {
  overflow: hidden;
}
.info__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.info__body {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  position: relative;
}
@media (max-width: 991.98px) {
  .info__body {
    flex-direction: column;
  }
}
.info__body::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  background: url(../image/decro-bg.png) 70% center no-repeat;
  background-size: contain;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .info__body::before {
    display: none;
  }
}
.info__body::after {
  content: "";
  position: absolute;
  right: -400px;
  top: -100px;
  width: 800px;
  height: 630px;
  background: url(../image/decro-bg-03.png) 70% center no-repeat;
  background-size: contain;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .info__body::after {
    display: none;
  }
}
.info__main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: linear-gradient(to top, #ffffff 65%, #ebf1ff 100%);
  border-radius: 20px;
  padding: 26px 30px;
  border: 1px solid #d3deff;
}
@media (max-width: 767.98px) {
  .info-card {
    padding: 22px 20px;
  }
}
.info-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .info-card__head {
    flex-direction: column;
    align-items: start;
  }
}
.info-card__head-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.info-card__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1d55f3 0%, #053ee4 100%);
  box-shadow: 0 0 0 5px #d3deff;
  color: #fff;
}
.info-card__icon img {
  width: 24px;
}
.info-card__title {
  margin: 0;
  color: #172659;
  font-size: var(--font-title-sm);
  font-weight: 700;
  white-space: nowrap;
}
.info-card__desc {
  color: #707b98;
  font-size: var(--font-body-sm);
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .info-card__desc {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .info-card__desc {
    flex: 1 1 100%;
    order: 3;
    white-space: normal;
    margin-left: 58px;
  }
}
.info-card__more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  color: #1d4ec9;
  font-size: var(--font-body-md);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.info-card__more:hover {
  color: #5a81f4;
}
@media (max-width: 767.98px) {
  .info-card__more {
    order: 2;
  }
}
.info-card__cols {
  display: flex;
  gap: 0 44px;
}
@media (max-width: 767.98px) {
  .info-card__cols {
    flex-direction: column;
    gap: 0;
  }
}

.info-list {
  flex: 1 1 0;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.info-list li {
  font-size: var(--font-body-md);
  line-height: 1.6;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid #ebebeb;
}
.info-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5a81f4;
}
.info-list li:last-child {
  border-bottom: none;
}
.info-list a {
  flex: 1 1 auto;
  min-width: 0;
  color: #39456e;
  font-size: var(--font-body-md);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.info-list a:hover {
  color: #5a81f4;
}

.info-media {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: linear-gradient(to top, #ffffff 65%, #ebf1ff 100%);
  border-radius: 20px;
  padding: 26px 30px;
  border: 1px solid #d3deff;
}
.info-media > .info-card__head {
  flex: 0 0 auto;
}
.info-media > .info-list {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  /* Webkit browsers (Chrome, Safari)  Scroll-bar*/
}
.info-media > .info-list::-webkit-scrollbar {
  width: 0px;
}
.info-media > .info-list::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 2.5px;
}
.info-media > .info-list::-webkit-scrollbar-thumb::-webkit-scrollbar-track {
  background-color: transparent;
}
@media (max-width: 991.98px) {
  .info-media {
    padding: 22px 20px;
    flex: 1 1 auto;
  }
  .info-media > .info-list {
    flex: 0 0 auto;
    min-height: auto;
    overflow-y: visible;
    padding-right: 0;
  }
}
.info-media__player {
  position: relative;
  height: 230px;
  margin: 18px 0 14px;
  border-radius: 14px;
  background: url(../image/info-media.png) 70% center no-repeat;
  background-size: cover;
}
@media (max-width: 991.98px) {
  .info-media__player {
    height: 350px;
  }
}
@media (max-width: 575.98px) {
  .info-media__player {
    height: 200px;
  }
}
.info-media__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  padding-left: 5px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #5a81f4;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all 0.2s ease;
}
.info-media__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.info-media__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 18px;
}
.info-media__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c0c7d7;
  transition: all 0.25s ease;
}
.info-media__dots span.is-active {
  width: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5a81f4 0%, #785bf1 100%);
}
.info-media__course-title {
  margin: 0 0 6px;
  color: #1d4ec9;
  font-size: var(--font-body-lg);
  font-weight: 700;
}
.info-media__course-desc {
  margin: 0 0 8px;
  color: #7d7d7d;
  font-size: var(--font-body-sm);
}

.footer {
  background: linear-gradient(to right top, #fff 0%, #f6f8fe 100%);
  padding: 72px 0 36px;
  box-shadow: 0 -10px 40px rgba(47, 60, 222, 0.15);
  border-top: 2px solid white;
}
.footer__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer__main {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .footer__main {
    justify-content: center;
  }
}
.footer__brand {
  flex: 0 0 auto;
}
.footer__brand img {
  width: 100px;
}
.footer__logo {
  display: block;
  width: 130px;
  height: auto;
}
@media (max-width: 767.98px) {
  .footer__logo {
    width: 80px;
  }
}
.footer__content {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
  }
}
.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991.98px) {
  .footer__cols {
    width: 100%;
  }
}
.footer__col {
  flex: 0 1 auto;
}
.footer__col-title {
  margin: 0 0 18px;
  color: #1d4ec9;
  font-size: var(--font-body-lg);
  font-weight: 700;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__list a {
  color: #565656;
  font-size: var(--font-body-md);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__list a:hover {
  color: #1d4ec9;
}
.footer__info {
  flex: 0 0 auto;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__hours {
  margin: 0;
  color: #565656;
  font-size: var(--font-body-md);
  font-weight: 500;
  line-height: 1.8;
}
.footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #1d4ec9;
  font-size: var(--font-title-sm);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__phone:last-child {
  margin-bottom: 0;
}
.footer__phone:hover {
  color: #5a81f4;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f6f8fe;
  border: 1px solid #d3deff;
  transition: all 0.2s ease;
}
.footer__social-link:hover {
  transform: translateY(-2px);
  background: #d3deff;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid #ebebeb;
}
.footer__copyright {
  margin: 0;
  color: #7d7d7d;
  font-size: var(--font-body-sm);
}
.footer__policy {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer__policy li:not(:last-child)::after {
  content: "｜";
  margin: 0 12px;
  color: #d9d9d9;
}
.footer__policy a {
  color: #1d4ec9;
  font-size: var(--font-body-sm);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__policy a:hover {
  color: #5a81f4;
}

@media (max-width: 991.98px) {
  .footer__main {
    flex-wrap: wrap;
    gap: 32px;
  }
  .footer__brand {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer__logo {
    margin: 0 auto;
  }
  .footer__info {
    flex: 1 1 100%;
  }
}
@media (max-width: 767.98px) {
  .footer {
    padding: 48px 0 28px;
    text-align: center;
  }
  .footer__info {
    align-items: center;
  }
  .footer__phone {
    justify-content: center;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__policy {
    justify-content: center;
  }
  .footer__cols {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .footer__col {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    border-bottom: 1px solid #ebebeb;
  }
  .footer__col .footer__col-title {
    position: relative;
    margin: 0;
    padding: 16px 28px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .footer__col .footer__col-title::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.25s ease;
  }
  .footer__col.is-open .footer__col-title::after {
    transform: translateY(-30%) rotate(225deg);
  }
  .footer__col .footer__list {
    align-items: center;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }
  .footer__col.is-open .footer__list {
    max-height: 420px;
    gap: 14px;
    padding: 4px 0 18px;
    opacity: 1;
  }
}
.btn--primary-gradient {
  color: white;
  border-color: #053ee4;
  background: linear-gradient(180deg, #1b78f1 0%, #004cc3 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2) inset;
}

.btn--accent-gradient {
  color: white;
  background: linear-gradient(112deg, #7649f3 14.85%, #2f3cde 100%);
  border-color: #2f3cde;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2) inset;
}

.btn--primary-fill {
  border-color: #d3deff !important;
  background: linear-gradient(180deg, #fff 0%, #ddebff 75%, #fff 100%);
  box-shadow: 0 4px 4px 0 rgba(73, 113, 243, 0.2);
  color: #1d4ec9 !important;
}

.btn--accent-fill {
  border-color: #d7d2ff !important;
  background: linear-gradient(180deg, #fff 0%, #ece5ff 80%, #fff 100%);
  box-shadow: 0 4px 4px 0 rgba(118, 73, 243, 0.2);
  color: #4829c8 !important;
}

.btn--primary-gradient,
.btn--accent-gradient,
.btn--primary-fill,
.btn--accent-fill {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn--primary-gradient:hover {
  filter: brightness(1.06);
  box-shadow: 0 4px 10px rgba(5, 62, 228, 0.4), inset 0 4px 4px rgba(0, 0, 0, 0.2);
}
.btn--primary-gradient:active, .btn--primary-gradient:focus-visible {
  transform: translateY(0);
  filter: brightness(0.95);
  box-shadow: 0 2px 6px rgba(5, 62, 228, 0.3), inset 0 5px 8px rgba(0, 0, 0, 0.35);
  outline: none;
}

.btn--accent-gradient:hover {
  filter: brightness(1.06);
  box-shadow: 0 4px 10px rgba(47, 60, 222, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.btn--accent-gradient:active, .btn--accent-gradient:focus-visible {
  transform: translateY(0);
  filter: brightness(0.95);
  box-shadow: 0 2px 6px rgba(47, 60, 222, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.35);
  outline: none;
}

.btn--primary-fill:hover {
  box-shadow: 0 4px 10px rgba(73, 113, 243, 0.28);
}
.btn--primary-fill:active, .btn--primary-fill:focus-visible {
  transform: translateY(0);
  box-shadow: inset 0 2px 4px rgba(73, 113, 243, 0.35);
  outline: none;
}

.btn--accent-fill:hover {
  box-shadow: 0 4px 10px rgba(118, 73, 243, 0.28);
}
.btn--accent-fill:active, .btn--accent-fill:focus-visible {
  transform: translateY(0);
  box-shadow: inset 0 2px 4px rgba(118, 73, 243, 0.35);
  outline: none;
}

.btn--lg {
  font-size: var(--font-body-lg);
  line-height: 1.6;
  font-weight: 600;
  text-wrap: nowrap;
  border-radius: 50px;
  border: 2px solid transparent;
  padding: 0px 32px;
  height: 56px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.1rem;
}

.btn--md {
  font-size: var(--font-body-md);
  line-height: 1.6;
  font-weight: 400;
  text-wrap: nowrap;
  border-radius: 50px;
  border: 1.5px solid transparent;
  padding: 12px 24px;
  height: 42px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.1rem;
}/*# sourceMappingURL=style.css.map */