@charset "UTF-8";
:root {
  --body-font-family: "Archivo", sans-serif;
  --heading-font-family: "Bricolage Grotesque", sans-serif;
  --font-family-style3: "Gallient", serif;
  --font-family-style4: "Gotu", sans-serif;
}

@font-face {
  font-family: "Gallient";
  src: url("../fonts/gallient-font/GallientRegular-eZoMp.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque/BricolageGrotesque-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque/BricolageGrotesque-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque/BricolageGrotesque-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque/BricolageGrotesque-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotu";
  src: url("../fonts/gotu/Gotu-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@keyframes chakra-spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) rotate(90deg);
  }
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(78px, 7.4vw, 98px);
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

body {
  font-family: var(--body-font-family);
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: #212529;
  background: #ffffff;
}

p,
ul,
ol,
li {
  font-family: var(--body-font-family);
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

.para {
  margin-bottom: 15px;
}
.para:last-child {
  margin-bottom: 0;
}

a {
  font-family: var(--body-font-family);
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 400;
  color: #2f555d;
  transition: color 0.3s ease;
}
a:hover {
  color: #244349;
}

strong,
b {
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 600;
  color: #152124;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
  font-weight: 600;
  line-height: 1.3;
  color: #152124;
}

.common-heading {
  font-size: clamp(24px, 14px + 2.2vw, 60px);
  font-weight: 400;
  line-height: 1.2;
  color: #152124;
}

.heading-img {
  height: 0.78em;
  aspect-ratio: 218/70;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
  vertical-align: baseline;
  margin: 0 0.1em;
}
@media (max-width: 767.98px) {
  .heading-img, .split-text .heading-img.char {
    display: none;
  }
}

.mid-heading {
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 17px + 0.7vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  color: #152124;
}

.sub-heading {
  font-family: var(--heading-font-family);
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  color: #2f555d;
}

.small-heading {
  font-family: var(--heading-font-family);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  font-weight: 600;
  line-height: 1.4;
  color: #152124;
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

section {
  padding: clamp(45px, 6vw, 90px) 0;
  overflow-x: clip;
}

.spacing {
  padding: clamp(30px, 5vw, 70px) 0;
}

.section-light {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 auto;
  border-radius: clamp(24px, 3vw, 48px);
  background-color: #f5f2ea;
  background-image: url("../img/mask-pattern/bg-pattern.webp");
  background-repeat: repeat;
  background-size: 1866px auto;
  background-blend-mode: multiply;
}
.section-light .heading-wrap .heading-sub-title {
  background: #ffffff;
  border-color: #e6e3da;
}
.section-light .heading-sub-title {
  background: #ffffff;
  border-color: #e6e3da;
}

.has-top-shape,
.section--top-shape {
  position: relative;
}
.has-top-shape::before,
.section--top-shape::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 15px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 9.4vw, 126px);
  aspect-ratio: 216/71;
  background-color: #f5f2ea;
  background-image: url("../img/mask-pattern/bg-pattern.webp");
  background-repeat: repeat;
  background-size: 1866px auto;
  background-blend-mode: multiply;
  -webkit-mask: url("../img/mask-pattern/mask-section-top.webp") center/contain no-repeat;
  mask: url("../img/mask-pattern/mask-section-top.webp") center/contain no-repeat;
  pointer-events: none;
  z-index: 1;
}

.container-wide {
  width: 100%;
  padding-left: clamp(15px, 3vw, 45px);
  padding-right: clamp(15px, 3vw, 45px);
}

.text-center {
  text-align: center;
}

.theme-btn {
  --btn-bg: #c9a227;
  --btn-bg:linear-gradient(to right, #ffa64d, #c9a227);
  --btn-hover-bg: #2f555d;
  --btn-gap: 12px;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  font-family: var(--body-font-family);
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 600;
  letter-spacing: 0.2px;
  color: white;
  background: transparent;
  padding: clamp(10px, 1.2vw, 14px) clamp(20px, 2.5vw, 32px);
  border-radius: 50px;
  overflow: hidden;
  transition: color 0.3s ease;
}
.theme-btn::before, .theme-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
}
.theme-btn::before {
  z-index: -1;
  background: var(--btn-hover-bg);
  transform: translateX(-105%) scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.45s ease;
}
.theme-btn::after {
  z-index: -2;
  background: var(--btn-bg);
}
.theme-btn:hover {
  color: #ffffff;
}
.theme-btn:hover::before {
  transform: translateX(0) scaleX(1);
}

.btn-word-sm {
  margin-right: calc(0.21em - var(--btn-gap));
}
@media (max-width: 575.98px) {
  .btn-word-sm {
    display: none;
  }
}

.btn-arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: -12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.btn-arrow::after {
  content: "";
  width: 15px;
  height: 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E") center/contain no-repeat;
}

.theme-btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

.btn-solid {
  --btn-bg: #2f555d;
  --btn-hover-bg: #244349;
  color: #ffffff;
}
.btn-solid:hover {
  color: #ffffff;
}

.theme-btn--outline {
  --btn-bg: transparent;
  --btn-hover-bg: #2f555d;
  color: #2f555d;
  border: 1px solid #2f555d;
}
.theme-btn--outline:hover {
  color: #ffffff;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: #244349;
}
@keyframes heroWordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section .hero-slider {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 100vh - 70px, 820px);
  isolation: isolate;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .hero-section .hero-slider {
    min-height: clamp(520px, 82svh, 660px);
  }
}
.hero-section .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.25s ease, visibility 1.25s ease;
}
.hero-section .hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 32, 27, 0.78) 0%, rgba(20, 32, 27, 0.48) 42%, rgba(20, 32, 27, 0.18) 100%), linear-gradient(0deg, rgba(20, 32, 27, 0.42), rgba(20, 32, 27, 0.18));
}
@media (max-width: 767.98px) {
  .hero-section .hero-slide::before {
    background: linear-gradient(0deg, rgba(20, 32, 27, 0.75) 0%, rgba(20, 32, 27, 0.55) 50%, rgba(20, 32, 27, 0.3) 100%);
  }
}
.hero-section .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-section .hero-slide.is-active .hero-slide-img {
  transform: scale(1.12);
}
.hero-section .hero-slide:first-child .hero-slide-img {
  -o-object-position: top center;
     object-position: top center;
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-slide {
    transition: none;
    animation: none;
  }
  .hero-section .hero-slide.is-active .hero-slide-img {
    transform: scale(1);
  }
}
.hero-section .hero-slide .hero-slide-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 7.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-slide .hero-slide-img {
    transition: none;
    animation: none;
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(70px, 9vw, 140px) clamp(22px, 4.5vw, 78px);
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .hero-section .hero-content {
    padding: 76px 20px 84px;
  }
}
@media (max-width: 399.98px) {
  .hero-section .hero-content {
    padding: 70px 16px 78px;
  }
}
.hero-section .hero-content .hero-content-inner {
  width: min(730px, 100%);
}
.hero-section .hero-content.is-in .hero-kicker {
  animation: heroFadeUp 0.75s ease 0.05s forwards;
}
.hero-section .hero-content.is-in p {
  animation: heroFadeUp 0.75s ease 0.45s forwards;
}
.hero-section .hero-content.is-in .hero-actions {
  animation: heroFadeUp 0.75s ease 0.65s forwards;
}
.hero-section .hero-content .hero-kicker {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: clamp(4px, 0.9vw, 10px);
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 6px 16px;
  font-size: clamp(9px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  opacity: 0;
  transform: translateY(18px);
  position: relative;
}
.hero-section .hero-content .hero-kicker::before {
  content: "";
  width: clamp(6px, 0.9vw, 10px);
  height: clamp(6px, 0.9vw, 10px);
  border-radius: 50%;
  background: linear-gradient(#ffa64d, #ffd549);
}
@media (max-width: 767.98px) {
  .hero-section .hero-content .hero-kicker {
    margin-bottom: 12px;
    padding: 5px 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-content .hero-kicker {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.hero-section .hero-content .hero-title {
  display: block;
  margin-bottom: clamp(20px, 2.4vw, 32px);
  font-family: var(--heading-font-family);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .hero-section .hero-content .hero-title {
    margin-bottom: 14px;
    line-height: 1.08;
  }
}
.hero-section .hero-content .hero-title .word {
  display: inline-block;
  opacity: 0;
  white-space: nowrap;
  transform: translateY(0.35em);
  animation: heroWordIn 0.72s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  animation-delay: calc(var(--word-index) * 0.12s);
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-content .hero-title .word {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}
.hero-section .hero-content p {
  margin-bottom: 28px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(18px);
}
@media (max-width: 767.98px) {
  .hero-section .hero-content p {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 0.875rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-content p {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.hero-section .hero-content .hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  opacity: 0;
  transform: translateY(18px);
}
@media (max-width: 767.98px) {
  .hero-section .hero-content .hero-actions {
    gap: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-content .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.hero-section .hero-content .hero-actions .theme-btn {
  min-height: 54px;
}
@media (max-width: 767.98px) {
  .hero-section .hero-content .hero-actions .theme-btn {
    min-height: 48px;
    font-size: 0.875rem;
  }
}
.hero-section .hero-content .hero-actions .hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px clamp(18px, 2vw, 26px);
  width: 100%;
  max-width: 560px;
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767.98px) {
  .hero-section .hero-content .hero-actions .hero-trust {
    gap: 6px 14px;
    padding-top: 12px;
  }
}
.hero-section .hero-content .hero-actions .hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 11px + 0.2vw, 14px);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.hero-section .hero-content .hero-actions .hero-trust li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"), linear-gradient(135deg, #ffa64d, #c9a227);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px, cover;
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.4);
}
@media (max-width: 767.98px) {
  .hero-section .hero-content .hero-actions .hero-trust li {
    width: auto;
    gap: 6px;
    font-size: 11.5px;
  }
  .hero-section .hero-content .hero-actions .hero-trust li::before {
    width: 14px;
    height: 14px;
    background-size: 8px 8px, cover;
    box-shadow: 0 1px 6px rgba(201, 162, 39, 0.35);
  }
}
.hero-section .hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 72px);
  bottom: clamp(28px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: min(320px, 100% - 44px);
  padding: 16px 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}
@media (max-width: 991.98px) {
  .hero-section .hero-card {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-card {
    transition: none;
    animation: none;
  }
}
.hero-section .hero-card.is-swapping .hero-card-info,
.hero-section .hero-card.is-swapping .hero-card-next-img {
  opacity: 0;
}
.hero-section .hero-card .hero-card-info {
  flex: 1 1 auto;
  min-width: 0;
  transition: opacity 0.22s ease;
}
.hero-section .hero-card .hero-card-info strong {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 8px;
  padding-bottom: 9px;
  font-family: var(--heading-font-family);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.3vw, 1.35rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #ffffff;
  border-bottom: 2px solid #d6caa5;
}
.hero-section .hero-card .hero-card-info span {
  display: block;
  max-width: 260px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}
.hero-section .hero-card .hero-card-next {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16/7;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-card .hero-card-next {
    transition: none;
    animation: none;
  }
}
.hero-section .hero-card .hero-card-next::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 32, 27, 0.45), rgba(20, 32, 27, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-section .hero-card .hero-card-next:hover, .hero-section .hero-card .hero-card-next:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.85);
}
.hero-section .hero-card .hero-card-next:hover::after, .hero-section .hero-card .hero-card-next:focus-visible::after {
  opacity: 1;
}
.hero-section .hero-card .hero-card-next:hover .hero-card-next-img, .hero-section .hero-card .hero-card-next:focus-visible .hero-card-next-img {
  transform: scale(1.08);
}
.hero-section .hero-card .hero-card-next:hover .hero-card-next-icon, .hero-section .hero-card .hero-card-next:focus-visible .hero-card-next-icon {
  background: #2f555d;
  color: #ffffff;
}
.hero-section .hero-card .hero-card-next:hover .hero-card-next-icon img, .hero-section .hero-card .hero-card-next:focus-visible .hero-card-next-icon img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(18%) hue-rotate(171deg) brightness(106%) contrast(100%);
}
.hero-section .hero-card .hero-card-next .hero-card-next-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 38%;
     object-position: center 38%;
  transition: transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-card .hero-card-next .hero-card-next-img {
    transition: none;
    animation: none;
  }
}
.hero-section .hero-card .hero-card-next .hero-card-next-icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #244349;
  background: rgba(255, 255, 255, 0.9);
  transition: background 0.4s ease, color 0.4s ease;
}
.hero-section .hero-card .hero-card-next .hero-card-next-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.hero-section .hero-dots {
  position: absolute;
  right: clamp(22px, 4vw, 72px);
  bottom: clamp(20px, 2.4vw, 30px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(20, 32, 27, 0.32);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
@media (max-width: 767.98px) {
  .hero-section .hero-dots {
    left: 50%;
    right: auto;
    bottom: 28px;
    transform: translateX(-50%);
  }
}
.hero-section .hero-dots .hero-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: transparent;
  transition: width 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.hero-section .hero-dots .hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}
.hero-section .hero-dots .hero-dot.is-active {
  width: 26px;
  border-radius: 50px;
  background: #ffffff;
  border-color: #ffffff;
}

.heading-wrap {
  margin-bottom: clamp(20px, 2.4vw, 32px);
  max-width: 1000px;
}
.heading-wrap.text-center {
  margin-left: auto;
  margin-right: auto;
}
.heading-wrap.text-center .common-heading::after {
  margin-inline: auto;
}
.heading-wrap.left {
  max-width: 70ch;
}
.heading-wrap .common-heading::after {
  content: "";
  display: block;
  width: min(100%, 300px);
  aspect-ratio: 768/108;
  margin: clamp(6px, 1vw, 12px) 0 clamp(16px, 2vw, 22px);
  background: url("../img/mask-pattern/divider-pattern.webp") center/contain no-repeat;
}
.heading-wrap .heading-sub-title {
  display: inline-block;
  margin-bottom: clamp(10px, 1.6vw, 16px);
  font-size: clamp(10px, 2.2vw, 13px);
  font-weight: 600;
  letter-spacing: clamp(1px, 0.3vw, 2px);
  text-transform: uppercase;
  border-radius: 50px;
  padding: clamp(5px, 0.9vw, 6px) clamp(12px, 2.2vw, 16px);
  color: #2f555d;
  background: #f5f2ea;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.heading-wrap .heading-sub-title.bg-white {
  background: rgba(255, 255, 255, 0.767);
}

.section-light .heading-sub-title {
  background: #ffffff;
  border-color: #e6e3da;
}

.about-section {
  position: relative;
  overflow-x: clip;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
}

.about-media {
  position: relative;
}

.about-media-mask {
  aspect-ratio: 589/633;
  overflow: hidden;
  border-radius: 20px;
}

.about-media.is-visible .about-media-mask {
  -webkit-mask: url("../img/mask-pattern/mask-group.webp") center/contain no-repeat;
  mask: url("../img/mask-pattern/mask-group.webp") center/contain no-repeat;
  animation: maskIn 1.1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s both;
}

@keyframes maskIn {
  from {
    -webkit-mask-size: 165% 165%;
    mask-size: 165% 165%;
  }
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
.about-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.4vw, 30px);
  text-align: center;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(20, 32, 27, 0.14);
}
.about-badge strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-family-style4);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #2f555d;
  font-variant-numeric: tabular-nums;
}
.about-badge span {
  display: block;
  max-width: 110px;
  margin: 0 auto;
  line-height: 1.45;
  color: #212529;
}

.about-text {
  max-width: 580px;
  margin-bottom: clamp(26px, 3vw, 38px);
  padding-bottom: clamp(24px, 2.8vw, 34px);
  border-bottom: 1px solid #e6e3da;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
}

.about-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid #e6e3da;
}
.about-contact:hover .about-contact-icon {
  transform: translateY(-3px);
}

.about-contact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #2f555d;
  background: #f5f2ea;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.about-contact-icon svg {
  width: 24px;
  height: 24px;
}

.about-contact-text {
  display: grid;
}
.about-contact-text small {
  color: #212529;
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  line-height: 1.4;
}
.about-contact-text strong {
  font-family: var(--heading-font-family);
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  color: #152124;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  margin-top: clamp(34px, 4.5vw, 64px);
  padding: clamp(16px, 2vw, 26px) clamp(6px, 1.2vw, 16px);
  background: #f5f2ea;
  border-radius: 20px;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 22px);
  padding: clamp(6px, 1vw, 12px) clamp(16px, 2.2vw, 34px);
}
.about-stat + .about-stat {
  border-left: 1px solid rgba(47, 85, 93, 0.16);
}
.about-stat strong {
  flex-shrink: 0;
  font-family: var(--font-family-style4);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  color: #2f555d;
  font-variant-numeric: tabular-nums;
}

.about-stat-text h3 {
  margin-bottom: 2px;
}
.about-stat-text p {
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .about-stat-text h3,
  .about-stat-text p {
    white-space: nowrap;
  }
}
@media (max-width: 991.98px) {
  .about-stats {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-stat {
    gap: 16px;
    padding: 14px 18px;
  }
  .about-stat strong {
    min-width: 88px;
  }
  .about-stat + .about-stat {
    border-left: none;
    border-top: 1px solid rgba(47, 85, 93, 0.16);
  }
}
@media (max-width: 575.98px) {
  .about-stats {
    padding: 0;
  }
  .about-stat {
    gap: 14px;
    padding: 14px 16px;
  }
  .about-stat strong {
    min-width: 72px;
    font-size: 1.5rem;
  }
  .about-stat-text h3 {
    line-height: 1.35;
  }
  .about-stat-text p {
    font-size: 12.5px;
  }
}
@media (max-width: 991.98px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .about-media {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .about-actions {
    gap: 12px;
  }
  .about-contact {
    gap: 9px;
    padding-left: 0;
    border-left: none;
  }
  .about-contact-icon {
    width: 42px;
    height: 42px;
  }
  .about-contact-icon svg {
    width: 19px;
    height: 19px;
  }
  .about-contact-text small {
    font-size: 11px;
    letter-spacing: 0.2px;
  }
  .about-contact-text strong {
    font-size: 14.5px;
    white-space: nowrap;
  }
  .about-actions .theme-btn {
    padding: 11px 18px;
    font-size: 12.5px;
    white-space: nowrap;
  }
  .about-actions .theme-btn .btn-arrow {
    width: 30px;
    height: 30px;
    margin-right: -8px;
  }
}
.split-text {
  perspective: 400px;
}
.split-text .split-word {
  display: inline-block;
  white-space: nowrap;
}
.split-text .split-word,
.split-text .char {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-90deg);
  transform-origin: 50% 100%;
}
.split-text.is-visible .char {
  animation: charIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: calc(var(--char-index) * 0.03s);
}

@keyframes charIn {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(-90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .split-text .char,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
  .why-flower,
  .stay-corner,
  .course-popular::after {
    animation: none;
  }
}
.why-section {
  position: relative;
}

.why-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(88px, 11vw, 200px);
  border-top-right-radius: clamp(24px, 3vw, 48px);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(40px, 6vw, 86px);
}

.why-col {
  display: grid;
  gap: clamp(34px, 5vw, 80px);
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.6vw, 20px);
}

.why-col--left .why-point {
  justify-content: flex-end;
  text-align: right;
}

.why-point-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(54px, 5vw, 70px);
  height: clamp(54px, 5vw, 70px);
  background: linear-gradient(to left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.99));
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(47, 85, 93, 0.12);
}
.why-point-icon svg,
.why-point-icon img {
  width: 55%;
  height: 55%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.why-point-icon svg {
  width: 46%;
  height: 46%;
  -o-object-fit: contain;
     object-fit: contain;
}

.why-point-text h3 {
  margin-bottom: 4px;
}
.why-point-text p {
  line-height: 1.6;
}

.why-media {
  position: relative;
  isolation: isolate;
}

.why-flower {
  position: absolute;
  bottom: 34%;
  left: 50%;
  z-index: -1;
  width: 118%;
  max-width: none;
  margin-left: -59%;
  animation: flowerFloat 6s ease-in-out infinite alternate;
}

@keyframes flowerFloat {
  from {
    transform: translateY(-14px);
  }
  to {
    transform: translateY(14px);
  }
}
.why-figure {
  width: 100%;
}

@media (max-width: 991.98px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
  .why-media {
    order: -1;
    max-width: 360px;
    margin: 0 auto 10px;
  }
  .why-flower {
    width: 104%;
    margin-left: -52%;
  }
  .why-col {
    gap: 26px;
  }
  .why-col--left .why-point {
    justify-content: flex-start;
    text-align: left;
  }
  .why-col--left .why-point .why-point-icon {
    order: -1;
  }
}
@media (max-width: 575.98px) {
  .why-media {
    max-width: 270px;
  }
  .why-col .why-point {
    flex-direction: column;
    text-align: center;
    align-items: center;
    border: 1px solid rgba(201, 162, 39, 0.24);
    background: radial-gradient(rgba(255, 255, 255, 0.5), rgba(201, 162, 39, 0.1));
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 12px;
  }
}
.courses-section {
  position: relative;
}
@media (min-width: 1200px) {
  .courses-section#courses .course-track {
    --slider-per-view: 3;
  }
}
.courses-section .course-track--center {
  justify-content: safe center;
}

.courses-intro {
  max-width: none;
}

.courses-section .heading-wrap {
  margin-left: auto;
  margin-right: auto;
}

.slider {
  position: relative;
  margin-top: clamp(30px, 4vw, 56px);
}

.slider-track {
  --slider-gap: clamp(20px, 2vw, 28px);
  --slider-per-view: 4;
  --slider-edge: 14px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--slider-per-view) - 1) * var(--slider-gap)) / var(--slider-per-view));
  gap: var(--slider-gap);
  padding: 44px var(--slider-edge);
  margin: -44px calc(var(--slider-edge) * -1);
  scroll-padding-inline: var(--slider-edge);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar {
  display: none;
}
.slider-track > * {
  scroll-snap-align: start;
}

.slider-nav {
  position: absolute;
  top: var(--slider-nav-top, 50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  color: #2f555d;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(20, 32, 27, 0.12);
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}
.slider-nav::after {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.slider-nav:hover {
  color: #ffffff;
  background: #2f555d;
  border-color: #2f555d;
}

.slider-nav--prev {
  left: -10px;
}
.slider-nav--prev::after {
  transform: scaleX(-1);
}

.slider-nav--next {
  right: -10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(26px, 3vw, 40px);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(47, 85, 93, 0.5);
  border-radius: 50%;
  background: transparent;
  transition: width 0.3s ease, background 0.3s ease;
}
.slider-dot.is-active {
  width: 28px;
  border-color: #2f555d;
  border-radius: 50px;
  background: #2f555d;
}

@media (max-width: 1199.98px) {
  .slider-track {
    --slider-per-view: 3;
  }
}
@media (max-width: 991.98px) {
  .slider-track {
    --slider-per-view: 2;
  }
}
@media (max-width: 639.98px) {
  .slider-track {
    --slider-per-view: 1;
    --slider-edge: 8px;
  }
  .slider-nav {
    display: none;
  }
}
.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(20, 32, 27, 0.05);
  transition: translate 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.course-card:hover {
  translate: 0 -4px;
  border-color: rgba(47, 85, 93, 0.28);
  box-shadow: 0 18px 38px rgba(20, 32, 27, 0.1);
}

.course-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  border-radius: 21px 21px 0 0;
}
.course-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
}
.course-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(20, 32, 27, 0.22));
  pointer-events: none;
}
.course-media .course-seal {
  position: absolute;
  right: clamp(10px, 1.2vw, 16px);
  bottom: clamp(10px, 1.2vw, 16px);
  z-index: 3;
  width: clamp(52px, 5.5vw, 68px);
  height: auto;
  padding: 7px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(20, 32, 27, 0.14);
  pointer-events: none;
}

.course-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.course-card:hover .course-media-overlay {
  transform: none;
  opacity: 1;
  filter: blur(0);
}
.course-card:hover .course-media img:not(.course-media-overlay):not(.course-seal) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.course-days {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.5;
  color: #ffffff;
  background: rgba(36, 67, 73, 0.92);
  border-radius: 50px;
}

.course-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: clamp(12px, 1.4vw, 16px);
}
.course-body .course-cert-note {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #8a968f;
}
.course-body .course-summary {
  margin-bottom: 20px;
}

.course-title {
  margin-bottom: 15px;
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  color: #152124;
}
.course-title strong {
  margin-right: 4px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: #2f555d;
}

.course-price {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
  text-align: center;
  background: rgba(245, 242, 234, 0.6);
  border: 1px solid rgba(230, 227, 218, 0.8);
  border-radius: 14px;
}

.course-price-item {
  padding: 14px 10px;
}
.course-price-item + .course-price-item {
  border-left: 1px solid rgba(230, 227, 218, 0.9);
}
.course-price-item span {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
  color: #8a968f;
}
.course-price-item strong {
  display: block;
  font-size: clamp(1.125rem, 1.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #2f555d;
}

.course-features {
  flex: 1 1 auto;
  margin-bottom: 24px;
}
.course-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  line-height: 1.5;
  border-bottom: 1px solid rgba(230, 227, 218, 0.55);
}
.course-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.course-features li:first-child {
  padding-top: 0;
}
.course-features svg,
.course-features img {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(38%) saturate(565%) hue-rotate(142deg) brightness(96%) contrast(88%);
}

.course-actions {
  display: grid;
  margin-top: auto;
}
.course-actions .theme-btn {
  gap: 10px;
  min-height: 50px;
  padding: 12px 20px;
  font-size: 15px;
}

.course-card--featured {
  translate: 0 -6px;
  border-color: transparent;
  box-shadow: 0 0 0 1.5px #2f555d, 0 16px 36px rgba(20, 32, 27, 0.1);
}
.course-card--featured:hover {
  translate: 0 -10px;
  border-color: transparent;
  box-shadow: 0 0 0 1.5px #2f555d, 0 24px 48px rgba(20, 32, 27, 0.14);
}

.course-popular {
  position: absolute;
  top: -14px;
  right: 20px;
  z-index: 2;
  overflow: hidden;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #ffa64d, #b8941f);
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.35);
}
.course-popular::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.6) 50%, transparent 75%);
  transform: translateX(-130%);
  animation: badgeShine 4s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 55% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}
.slider.is-static .slider-nav,
.slider.is-static .slider-dots {
  display: none;
}

[data-parallax] {
  overflow: hidden;
}
[data-parallax] img {
  height: 150%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: translate, transform;
}

[data-parallax=x] img {
  width: 150%;
  max-width: none;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] img {
    width: 100%;
    height: 100%;
    translate: none;
    transform: none;
  }
}
.stay-section {
  position: relative;
}
.stay-section .heading-wrap {
  margin-left: auto;
  margin-right: auto;
}

.stay-top-shape {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(96px, 9vw, 140px);
  aspect-ratio: 216/91;
  background-color: #f5f2ea;
  background-image: url("../img/mask-pattern/bg-pattern.webp");
  background-repeat: repeat;
  background-size: 1866px auto;
  background-blend-mode: multiply;
  -webkit-mask: url("../img/mask-pattern/mask-section-top.webp") center/contain no-repeat;
  mask: url("../img/mask-pattern/mask-section-top.webp") center/contain no-repeat;
}

.stay-corner {
  position: absolute;
  top: clamp(6px, 0.9vw, 16px);
  right: clamp(10px, 1.3vw, 24px);
  width: clamp(90px, 11vw, 200px);
  pointer-events: none;
  animation: cornerFloat 7s ease-in-out infinite alternate;
}

@keyframes cornerFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
.stay-intro {
  max-width: none;
}

.stay-copy {
  max-width: 991px;
  margin: 0 auto clamp(30px, 4vw, 56px);
  text-align: center;
}

.stay-grid {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 3vw, 46px);
  margin-top: clamp(30px, 4vw, 56px);
}

.stay-tabs {
  display: grid;
  gap: 12px;
}

.stay-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--heading-font-family);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  font-weight: 600;
  text-align: left;
  color: #152124;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 14px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.stay-tab.is-active {
  color: #ffffff;
  background: #2f555d;
  border-color: #2f555d;
}

.stay-tab-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #f5f2ea;
  border: 1px solid rgba(47, 85, 93, 0.18);
  border-radius: 12px;
  overflow: hidden;
}
.stay-tab-icon svg,
.stay-tab-icon img {
  width: 75%;
  height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: brightness(0) saturate(100%) invert(19%) sepia(38%) saturate(565%) hue-rotate(142deg) brightness(96%) contrast(88%);
}
.stay-tab-icon svg {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.stay-tab.is-active .stay-tab-icon {
  background: #ffffff;
  border-color: #ffffff;
}

.stay-tab.is-active .stay-tab-icon img {
  transform: scale(1.05);
}

.stay-panel {
  display: grid;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(20, 32, 27, 0.07);
  animation: stayPanelIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes stayPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.stay-panel[hidden] {
  display: none;
}

.stay-panel-media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/10;
}
.stay-panel-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stay-panel-body h3 {
  margin-top: 12px;
}
.stay-panel-body p {
  max-width: 600px;
  margin: 26px 0 0;
  line-height: 1.68;
}
.stay-panel-body .theme-btn {
  margin-top: 16px;
}

.stay-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}
.stay-points li {
  padding: 5px 11px;
  font-size: 13px;
  line-height: 1.6;
  white-space: nowrap;
  color: #2f555d;
  background: #f5f2ea;
  border-radius: 50px;
}

@media (min-width: 768px) {
  .stay-panel {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    -moz-column-gap: 28px;
         column-gap: 28px;
    align-items: start;
    padding: 20px;
  }
  .stay-panel-media {
    align-self: stretch;
    height: auto;
    min-height: 250px;
    aspect-ratio: auto;
  }
}
@media (min-width: 992px) {
  .stay-panel {
    -moz-column-gap: 40px;
         column-gap: 40px;
    padding: 24px;
  }
  .stay-panel-media {
    min-height: 280px;
  }
}
@media (max-width: 767.98px) {
  .stay-panel {
    padding: 16px;
    gap: 0;
  }
  .stay-panel-body h3 {
    margin-top: 22px;
  }
  .stay-panel-body p {
    margin-top: 16px;
  }
  .stay-panel-body .theme-btn {
    width: 100%;
    margin-top: 18px;
  }
  .stay-points {
    margin-top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .stay-grid {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 22px;
  }
  .stay-panel-body {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991.98px) {
  .stay-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .stay-tabs {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .stay-tabs::-webkit-scrollbar {
    display: none;
  }
  .stay-tab {
    white-space: nowrap;
  }
}
@media (max-width: 575.98px) {
  .stay-tabs {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .stay-tab {
    flex-direction: column;
    gap: 6px;
    padding: 10px 6px;
    font-size: 10.5px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    border-radius: 10px;
  }
  .stay-tab-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
}
@media (max-width: 575.98px) {
  .course-title {
    min-height: 0;
    margin-bottom: 14px;
    font-size: 1.125rem;
  }
  .course-price {
    margin-bottom: 14px;
  }
  .course-price-item {
    padding: 9px 8px;
  }
  .course-features {
    margin-bottom: 16px;
  }
  .course-actions .theme-btn {
    min-height: 48px;
  }
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.is-open {
  opacity: 1;
}
.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 27, 0.88);
}

.video-modal-inner {
  position: relative;
  width: min(1000px, 100%);
}

.video-modal-frame {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000000;
  border-radius: 16px;
}
.video-modal-frame iframe,
.video-modal-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: background 0.3s ease;
}
.video-modal-close::before, .video-modal-close::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.video-modal-close::before {
  transform: rotate(45deg);
}
.video-modal-close::after {
  transform: rotate(-45deg);
}
.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .story-play-ring,
  .story-seal-ring {
    animation: none;
  }
}
.video-modal-frame:has(.video-modal-image) {
  aspect-ratio: auto;
  background: transparent;
  border-radius: 0;
}

.cert-section {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, rgba(20, 42, 34, 0.58), rgba(11, 25, 20, 0.72)), url("../img/certifcates/certificate-bg.webp") center/cover no-repeat;
  background-color: #244349;
  color: #ffffff;
}
.cert-section a {
  color: #f5f2ea;
  text-decoration: underline;
  text-decoration-color: #c9a227;
  text-underline-offset: 3px;
}
.cert-section a:hover, .cert-section a:focus-visible {
  color: #c9a227;
  text-decoration-color: #c9a227;
}
.cert-section .special-note {
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.45);
}
.cert-section .special-note p {
  color: #f5f2ea;
}
.cert-section .heading-wrap {
  margin-left: auto;
  margin-right: auto;
}
.cert-section .common-heading {
  color: #ffffff;
}
.cert-section .heading-sub-title {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.cert-intro {
  max-width: none;
  color: rgba(255, 255, 255, 0.82);
}

.cert-glow {
  position: absolute;
  z-index: 0;
  width: clamp(280px, 40vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cert-glow--one {
  top: -10%;
  left: -6%;
  background: rgba(47, 85, 93, 0.55);
}

.cert-glow--two {
  right: -8%;
  bottom: -14%;
  background: rgba(201, 162, 39, 0.28);
}

.cert-section--prose .ya-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(30px, 5vw, 76px);
  margin-top: clamp(30px, 4vw, 54px);
}
@media (min-width: 992px) {
  .cert-section--prose .ya-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }
}
.cert-section--prose .cert-shots {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  margin: clamp(30px, 4vw, 52px) 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991.98px) {
  .cert-section--prose .cert-shots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 479.98px) {
  .cert-section--prose .cert-shots {
    grid-template-columns: minmax(0, 1fr);
  }
}
.cert-section--prose .cert-shot .cert-frame {
  aspect-ratio: 4/3;
  background: #f5f2ea;
}
.cert-section--prose .cert-shot .cert-frame img {
  -o-object-fit: cover;
     object-fit: cover;
}
.cert-section--prose .cert-shot-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(22px, 3vw, 32px) clamp(10px, 1.4vw, 14px) clamp(9px, 1.2vw, 12px);
  font-family: var(--font-family-style4);
  font-size: clamp(10px, 0.5rem + 0.3vw, 12px);
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(20, 32, 27, 0) 0%, rgba(20, 32, 27, 0.84) 62%);
  pointer-events: none;
}
@media (min-width: 992px) {
  .cert-section--prose .ya-proof {
    position: sticky;
    top: clamp(140px, 16vh, 180px);
  }
}
.cert-section--prose .ya-doc {
  position: relative;
  margin: 0;
  transform: rotate(-2.2deg);
}
.cert-section--prose .ya-doc .cert-frame {
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  box-shadow: 0 40px 70px -34px rgba(0, 0, 0, 0.75);
}
.cert-section--prose .ya-doc-seal {
  position: absolute;
  top: clamp(-30px, -2.4vw, -18px);
  left: clamp(-26px, -2vw, -14px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(76px, 8vw, 112px);
  aspect-ratio: 1;
  padding: clamp(4px, 0.5vw, 7px);
  background: #f5f2ea;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 50%;
  box-shadow: 0 16px 30px -14px rgba(0, 0, 0, 0.7);
  transform: rotate(2.2deg);
}
@media (max-width: 575.98px) {
  .cert-section--prose .ya-doc-seal {
    top: -6px;
    left: 4px;
  }
}
.cert-section--prose .ya-doc-seal img {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.cert-section--prose .ya-marks {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  padding-top: clamp(22px, 2.6vw, 30px);
}
.cert-section--prose .ya-wordmark {
  flex: none;
  width: clamp(110px, 12vw, 150px);
  height: auto;
  filter: brightness(0) invert(1);
}
.cert-section--prose .ya-marks-rule {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.cert-section--prose .ya-seals {
  flex: none;
  display: flex;
  gap: clamp(10px, 1.2vw, 14px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.cert-section--prose .ya-seals img {
  display: block;
  width: clamp(44px, 4.6vw, 60px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.cert-section--prose .ya-points {
  --bead: clamp(38px, 3.6vw, 46px);
  --bead-gap: clamp(16px, 1.8vw, 26px);
  position: relative;
  counter-reset: yaPoint;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 575.98px) {
  .cert-section--prose .ya-points {
    --bead-gap: 10px;
  }
}
.cert-section--prose .ya-points::before {
  content: "";
  position: absolute;
  top: var(--bead);
  bottom: var(--bead);
  left: calc(var(--bead) / 2 - 1px);
  border-left: 2px dotted rgba(201, 162, 39, 0.45);
}
.cert-section--prose .ya-point {
  position: relative;
  padding-left: calc(var(--bead) + var(--bead-gap));
  margin-bottom: clamp(26px, 3vw, 38px);
}
.cert-section--prose .ya-point:last-child {
  margin-bottom: 0;
}
.cert-section--prose .ya-point::before {
  counter-increment: yaPoint;
  content: counter(yaPoint, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--bead);
  height: var(--bead);
  font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.15rem);
  line-height: 1;
  color: #2f555d;
  background: #f5f2ea;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 50%;
}
.cert-section--prose .ya-point .para {
  color: rgba(255, 255, 255, 0.84);
}
.cert-section--prose .ya-point-title {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 18px);
  min-height: var(--bead);
  margin-bottom: clamp(8px, 1vw, 12px);
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
}
.cert-section--prose .ya-point-title::after {
  content: "";
  flex: 1 1 auto;
  min-width: 18px;
  border-top: 2px dotted rgba(201, 162, 39, 0.35);
}

.cert-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
  margin-top: clamp(34px, 4vw, 60px);
}

.cert-card {
  position: relative;
  padding: clamp(14px, 1.6vw, 20px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(4px);
  transition: translate 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.cert-card:hover {
  translate: 0 -6px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 162, 39, 0.45);
}

.cert-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  z-index: 2;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #152124;
  background: linear-gradient(135deg, #ffa64d, #b8941f);
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}

.cert-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 700/541;
  background: #ffffff;
  border-radius: 14px;
  cursor: pointer;
}
.cert-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.5s ease;
}
.cert-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 27, 0);
  transition: background 0.3s ease;
}
.cert-frame:hover img, .cert-frame:focus-visible img {
  transform: scale(1.04);
}
.cert-frame:hover::after, .cert-frame:focus-visible::after {
  background: rgba(20, 32, 27, 0.28);
}
.cert-frame:hover .cert-zoom, .cert-frame:focus-visible .cert-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cert-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #244349;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cert-zoom svg {
  width: 24px;
  height: 24px;
}

.cert-meta {
  margin-top: clamp(14px, 1.6vw, 20px);
  padding: 0 8px 6px;
}
.cert-meta h3 {
  color: #ffffff;
}
.cert-meta p {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
}

.video-modal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .cert-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.team-section {
  position: relative;
}

.team-intro {
  max-width: none;
}

.team-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(24px, 4vw, 60px);
  margin-top: clamp(34px, 4vw, 60px);
}

.team-feature {
  position: sticky;
  top: 100px;
  height: clamp(480px, 40vw, 560px);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 46px rgba(20, 32, 27, 0.14);
}

.team-feature-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.team-feature-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: opacity 0.45s ease, transform 0.7s ease;
}

.team-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(12, 22, 18, 0.96) 0%, rgba(14, 25, 21, 0.86) 18%, rgba(18, 30, 25, 0.45) 44%, rgba(20, 32, 27, 0.12) 64%, transparent 80%);
}

.team-feature-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(24px, 3.2vw, 34px);
  color: #ffffff;
  text-align: center;
  transition: opacity 0.35s ease;
}

.team-feature.is-swapping .team-feature-body {
  opacity: 0;
}
.team-feature.is-swapping .team-feature-media img {
  opacity: 0;
  transform: scale(1.1);
}

.team-feature-name {
  margin-bottom: clamp(10px, 1.2vw, 12px);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.05;
  color: #ffffff;
}

.team-feature-role {
  font-family: var(--heading-font-family);
  font-size: clamp(10px, 1.3vw, 13px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
  color: #e4bd6b;
}

.team-feature-divider {
  display: block;
  width: min(100%, 400px);
  height: auto;
  margin: clamp(14px, 1.8vw, 18px) auto clamp(16px, 2vw, 20px);
}

.team-feature-bio {
  max-width: 440px;
  margin-inline: auto;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.team-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 16px);
}

@media (min-width: 768px) {
  .team-thumbs {
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: clamp(10px, 1.2vw, 18px);
         column-gap: clamp(10px, 1.2vw, 18px);
    row-gap: clamp(18px, 2.4vw, 34px);
  }
  .team-thumb-item {
    grid-column: 5/9;
  }
  .team-thumb-item:nth-child(3n+1) {
    grid-column: 1/5;
  }
  .team-thumb-item:nth-child(3n+2) {
    grid-column: 9/13;
  }
  .team-thumb-item:nth-child(1),
  .team-thumb-item:nth-child(2) {
    grid-row: 1;
  }
  .team-thumb-item:nth-child(3) {
    grid-row: 2;
  }
  .team-thumb-item:nth-child(4),
  .team-thumb-item:nth-child(5) {
    grid-row: 3;
  }
  .team-thumb-item:nth-child(6) {
    grid-row: 4;
  }
  .team-thumb-item:nth-child(7),
  .team-thumb-item:nth-child(8) {
    grid-row: 5;
  }
  .team-thumb-item:nth-child(9) {
    grid-row: 6;
  }
  .team-thumb-item:nth-child(3n) {
    margin-top: clamp(-90px, -6vw, -50px);
  }
}
.team-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 7px;
  aspect-ratio: 1/1;
  border-radius: 14px;
  cursor: pointer;
  transition: translate 0.3s ease, box-shadow 0.3s ease;
}
.team-thumb .team-thumb-frame {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.team-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.team-thumb:hover .team-thumb-frame img {
  transform: scale(1.05);
}
.team-thumb::before, .team-thumb::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  z-index: 2;
  pointer-events: none;
  transition: width 0.2s ease, height 0.2s ease 0.2s;
}
.team-thumb::before {
  top: 0;
  right: 0;
}
.team-thumb::after {
  bottom: 0;
  left: 0;
}
.team-thumb:hover {
  translate: 0 -4px;
  box-shadow: 0 16px 32px rgba(20, 32, 27, 0.14);
}

.team-thumb:not(.team-thumb--filler):hover::before,
.team-thumb:not(.team-thumb--filler):hover::after {
  width: 100%;
  height: 100%;
}

.team-thumb:not(.team-thumb--filler):hover::before {
  border-top-color: #2f555d;
  border-right-color: #2f555d;
}

.team-thumb:not(.team-thumb--filler):hover::after {
  border-bottom-color: #2f555d;
  border-left-color: #2f555d;
}

.team-thumb--filler {
  cursor: default;
}

.team-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  align-self: stretch;
}

.team-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #e6e3da;
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.team-dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: #2f555d;
}

@media (max-width: 767.98px) {
  .team-showcase {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
  }
  .team-feature {
    position: relative;
    top: auto;
    width: min(420px, 100%);
    margin-inline: auto;
  }
  .team-feature {
    height: clamp(460px, 118vw, 540px);
  }
  .team-thumbs {
    display: none;
  }
  .team-dots {
    display: flex;
  }
  .team-section.section-light {
    padding-bottom: clamp(10px, 1.5vw, 16px);
  }
  .team-section.section-light + .stay-section {
    padding-top: clamp(20px, 3vw, 28px);
  }
}
.school-section {
  position: relative;
}

.school-lede {
  margin: 0;
  font-family: var(--font-family-style3);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: #c9a227;
}

.school-narrative {
  --spine-pad: clamp(30px, 4vw, 44px);
  --rail-x: 11px;
  --dot: 13px;
  --spine-tail: clamp(70px, 11vw, 190px);
  position: relative;
  max-width: 720px;
  margin: clamp(34px, 5vw, 56px) auto 0;
  padding-left: var(--spine-pad);
}
.school-narrative::before {
  content: "";
  position: absolute;
  top: calc(clamp(20px, 2.4vw, 26px) + var(--dot) / 2);
  bottom: calc(var(--spine-tail) + 8px);
  left: calc(var(--rail-x) - 1px);
  width: 2px;
  background: linear-gradient(180deg, #c9a227, rgba(201, 162, 39, 0.12));
}

.school-narrative::after {
  content: "";
  display: block;
  height: var(--spine-tail);
}

.school-node {
  position: sticky;
  top: var(--stack-top, 100px);
  margin-bottom: clamp(46px, 6vw, 78px);
  padding: clamp(20px, 2.4vw, 26px) clamp(20px, 2.6vw, 30px);
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 16px;
  box-shadow: 0 -10px 30px rgba(20, 32, 27, 0.1);
}
.school-node:nth-child(1) {
  --stack-top: 100px;
}
.school-node:nth-child(2) {
  --stack-top: 142px;
}
.school-node:nth-child(3) {
  --stack-top: 184px;
}
.school-node:nth-child(4) {
  --stack-top: 226px;
}
.school-node:nth-child(5) {
  --stack-top: 268px;
}
.school-node:nth-child(6) {
  --stack-top: 310px;
}
.school-node:last-child {
  margin-bottom: 0;
}
.school-node::before, .school-node::after {
  content: "";
  position: absolute;
  left: calc(var(--rail-x) - var(--spine-pad) - var(--dot) / 2);
  top: clamp(20px, 2.4vw, 26px);
  width: var(--dot);
  height: var(--dot);
  border-radius: 50%;
}
.school-node::before {
  background: #ffffff;
  border: 2px solid #c9a227;
  z-index: 1;
  transition: box-shadow 0.3s ease;
}
.school-node::after {
  border: 2px solid #c9a227;
  opacity: 0;
  pointer-events: none;
}
.school-node.is-visible::before {
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.14);
}
.school-node.is-visible::after {
  animation: nodePulse 2.6s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}
.school-node p {
  margin: 0;
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  line-height: 1.8;
}

.school-node:nth-child(1).is-visible::after {
  animation-delay: 0s;
}

.school-node:nth-child(2).is-visible::after {
  animation-delay: 0.4s;
}

.school-node:nth-child(3).is-visible::after {
  animation-delay: 0.8s;
}

.school-node:nth-child(4).is-visible::after {
  animation-delay: 1.2s;
}

.school-node:nth-child(5).is-visible::after {
  animation-delay: 1.6s;
}

.school-node:nth-child(6).is-visible::after {
  animation-delay: 2s;
}

@keyframes nodePulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70% {
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
.school-node-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading-font-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a227;
}

.school-creds-section {
  padding: clamp(44px, 5.5vw, 76px) 0;
  background: radial-gradient(ellipse 700px 300px at 50% 0%, rgba(201, 162, 39, 0.1), transparent 60%), linear-gradient(180deg, rgba(20, 42, 34, 0.6), rgba(11, 25, 20, 0.74)), url("../img/home/cta/cta-back-bg.webp") center/cover no-repeat;
  background-attachment: fixed;
  text-align: center;
}

.school-creds-section-label {
  display: inline-block;
  margin-bottom: clamp(14px, 1.6vw, 20px);
  padding: 8px 20px;
  font-family: var(--heading-font-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e2c07a;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.school-creds-section-title {
  margin: 0 auto clamp(10px, 1.2vw, 14px);
  font-family: var(--font-family-style3);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
}

.school-creds-section-text {
  max-width: min(100%, 900px);
  margin: 0 auto clamp(20px, 2.4vw, 30px);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.school-creds-section-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.school-creds-section-row::-webkit-scrollbar {
  height: 5px;
}
.school-creds-section-row::-webkit-scrollbar-thumb {
  background: rgba(201, 162, 39, 0.3);
  border-radius: 4px;
}

.school-rule {
  flex-shrink: 0;
  width: clamp(18px, 2.4vw, 38px);
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.school-medal {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(84px, 9vw, 108px);
  aspect-ratio: 1;
  padding: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 30px rgba(0, 0, 0, 0.2);
}
.school-medal img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.school-mark {
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.school-mark img {
  width: 100%;
  height: auto;
}

.school-mark--plaque {
  width: clamp(118px, 13vw, 158px);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 30px rgba(0, 0, 0, 0.2);
}
.school-mark--plaque img {
  filter: brightness(0) invert(1);
}

.school-mark--brand {
  width: clamp(126px, 14vw, 168px);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.school-medal,
.school-mark {
  position: relative;
}
.school-medal::after,
.school-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1.5px solid rgba(226, 192, 122, 0);
  pointer-events: none;
}

.school-medal::after {
  border-radius: 50%;
}

.school-mark--plaque::after {
  border-radius: 21px;
}

.school-mark--brand::after {
  border-radius: 19px;
}

.school-creds-section.is-visible .school-medal::after,
.school-creds-section.is-visible .school-mark::after {
  animation: markSweep 4.5s ease-in-out infinite;
}
.school-creds-section.is-visible .school-creds-section-row > :nth-child(3)::after {
  animation-delay: 0.35s;
}
.school-creds-section.is-visible .school-creds-section-row > :nth-child(5)::after {
  animation-delay: 0.7s;
}
.school-creds-section.is-visible .school-creds-section-row > :nth-child(7)::after {
  animation-delay: 1.05s;
}
.school-creds-section.is-visible .school-creds-section-row > :nth-child(9)::after {
  animation-delay: 1.4s;
}
.school-creds-section.is-visible .school-creds-section-row > :nth-child(11)::after {
  animation-delay: 1.75s;
}

@keyframes markSweep {
  0%, 100% {
    border-color: rgba(226, 192, 122, 0);
    box-shadow: 0 0 0 0 rgba(226, 192, 122, 0);
  }
  6% {
    border-color: rgba(226, 192, 122, 0.85);
    box-shadow: 0 0 22px 0 rgba(226, 192, 122, 0.32);
  }
  16% {
    border-color: rgba(226, 192, 122, 0);
    box-shadow: 0 0 0 0 rgba(226, 192, 122, 0);
  }
}
.school-closing {
  text-align: center;
  margin: 0 auto;
}
.school-closing p {
  margin-bottom: clamp(14px, 1.8vw, 22px);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  line-height: 1.85;
}

.special-note {
  margin-top: clamp(22px, 3vw, 36px);
  padding: clamp(20px, 2.6vw, 28px) clamp(22px, 3vw, 32px);
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 16px;
}
.special-note p {
  margin: 0;
  font-family: var(--font-family-style4);
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.6;
  color: #244349;
}

@media (max-width: 767.98px) {
  .school-creds-section-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 3vw, 18px) 8px;
    align-items: center;
    justify-items: center;
    overflow: visible;
  }
  .school-rule {
    display: none;
  }
  .school-mark--plaque {
    order: 1;
    grid-column: span 2;
  }
  .school-mark--brand {
    order: 2;
    grid-column: span 2;
  }
  .school-medal {
    order: 3;
    width: 100%;
    max-width: 108px;
  }
}
.school-intro {
  position: relative;
}

.school-intro .heading-wrap,
.school-intro .school-narrative,
.school-intro .school-outro {
  position: relative;
  z-index: 1;
}

.school-intro .heading-wrap {
  max-width: 720px;
}

.school-outro {
  max-width: 720px;
  margin: clamp(26px, 3.5vw, 40px) auto 0;
  padding-left: clamp(30px, 4vw, 44px);
}

.school-figure {
  --fig-h: clamp(370px, 29vw, 560px);
  display: none;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  width: var(--fig-w);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.school-figure img {
  position: sticky;
  top: clamp(110px, 13vh, 170px);
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(60px, 8vw, 150px);
}

@media (min-width: 1200px) {
  .school-figure {
    display: block;
  }
}
.school-figure--left {
  --fig-w: calc(var(--fig-h) * 576 / 977);
  left: calc((100% - 720px) / 4 - var(--fig-w) / 2);
}

.school-figure--right {
  --fig-w: calc(var(--fig-h) * 576 / 1306);
  right: calc((100% - 720px) / 4 - var(--fig-w) / 2);
}

.school-figure--left img.reveal {
  transform: translateX(-30px);
}

.school-figure--right img.reveal {
  transform: translateX(30px);
}

.school-figure img.reveal.is-visible {
  transform: none;
}

.testimonial-section {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 auto;
  border-radius: clamp(24px, 3vw, 48px);
}
.testimonial-section:not(.section-light) .testimonial-top-shape {
  display: none;
}

.testimonial-top-shape {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(96px, 9vw, 140px);
  aspect-ratio: 216/91;
  background-color: #f5f2ea;
  background-image: url("../img/mask-pattern/bg-pattern.webp");
  background-repeat: repeat;
  background-size: 1866px auto;
  background-blend-mode: multiply;
  -webkit-mask: url("../img/mask-pattern/mask-section-top.webp") center/contain no-repeat;
  mask: url("../img/mask-pattern/mask-section-top.webp") center/contain no-repeat;
}

.testimonial-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(28px, 3.6vw, 48px);
}
.testimonial-head .heading-wrap {
  margin-bottom: 0;
  max-width: min(100%, 640px);
}
.testimonial-head em {
  font-style: italic;
}

.testimonial-more {
  flex-shrink: 0;
}

.testimonial-layout {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2vw, 28px);
}

.testimonial-score {
  flex: 0 0 clamp(240px, 22vw, 330px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(26px, 3vw, 38px) clamp(18px, 2vw, 26px);
  background: #244349;
  border-radius: 22px;
  text-align: center;
}

.testimonial-avatars {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px 5px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.testimonial-avatars-brand {
  flex-shrink: 0;
  width: 24px;
  height: auto;
}

.testimonial-avatars-rule {
  align-self: stretch;
  width: 1px;
  margin-block: 3px;
  background: rgba(255, 255, 255, 0.22);
}

.testimonial-avatars-stack {
  display: inline-flex;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: -10px;
  font-family: var(--heading-font-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #244349;
  background: #f5f2ea;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.testimonial-avatar:first-child {
  margin-left: 0;
}

.testimonial-avatar--photo {
  -o-object-fit: cover;
     object-fit: cover;
  background: #f5f2ea;
}

.testimonial-avatar--count {
  font-size: 11px;
  color: #2f555d;
  background: #e7efe9;
}

.testimonial-score .middle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
}

.testimonial-score-value {
  font-family: var(--heading-font-family);
  font-size: clamp(3rem, 4.6vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #e2c07a;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}
.testimonial-stars svg {
  width: 15px;
  height: 15px;
  fill: #c9a227;
}

.testimonial-score .testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #7fb069;
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.testimonial-source img {
  width: auto;
  height: 20px;
}

.testimonial-slider {
  flex: 1 1 0;
  min-width: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.testimonial-track {
  --slider-per-view: 2;
  padding-block: 0;
  margin-block: 0;
}

@media (min-width: 992px) {
  .testimonial-layout {
    margin-right: calc((100% - 100vw) / 2 + 32px);
  }
  .testimonial-track {
    --slider-per-view: 2.28;
  }
}
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 18px);
  padding: clamp(22px, 2.4vw, 30px);
  background: linear-gradient(150deg, #ffffff 0%, #ffffff 45%, #fbf8f1 100%);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(20, 32, 27, 0.06);
}

.testimonial-source-icon {
  position: absolute;
  top: clamp(18px, 2vw, 24px);
  right: clamp(18px, 2vw, 24px);
  width: clamp(22px, 2.2vw, 28px);
  height: auto;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.testimonial-person-text strong {
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #244349;
}
.testimonial-person-text span {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(36, 67, 73, 0.6);
}

.testimonial-card .testimonial-stars svg {
  width: 19px;
  height: 19px;
  fill: #244349;
}

.testimonial-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  font-family: var(--body-font-family);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  line-height: 1.7;
  color: rgba(36, 67, 73, 0.85);
}

.testimonial-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  color: rgba(36, 67, 73, 0.75);
}
.testimonial-note a {
  font-weight: 600;
  color: #2f555d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonial-note-avatars {
  display: inline-flex;
}
.testimonial-note-avatars .testimonial-avatar {
  width: 36px;
  height: 36px;
  font-size: 11px;
  border-width: 2px;
}

@media (max-width: 991.98px) {
  .testimonial-layout {
    flex-direction: column;
  }
  .testimonial-score {
    flex: 0 0 auto;
  }
  .testimonial-score {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .testimonial-track {
    --slider-per-view: 2;
  }
}
@media (max-width: 767.98px) {
  .testimonial-track {
    --slider-per-view: 1;
  }
}
@media (max-width: 575.98px) {
  .testimonial-head {
    display: contents;
  }
  .testimonial-head .heading-wrap {
    max-width: none;
    text-align: center;
  }
  .testimonial-head .heading-wrap .common-heading::after {
    margin-inline: auto;
  }
  .testimonial-section .container {
    display: flex;
    flex-direction: column;
  }
  .testimonial-head .heading-wrap {
    order: 1;
  }
  .testimonial-layout {
    order: 2;
  }
  .testimonial-note {
    order: 3;
    width: 100%;
    text-align: center;
  }
  .testimonial-more {
    order: 4;
    align-self: center;
    margin-top: clamp(20px, 3vw, 28px);
  }
  .testimonial-score {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 24px 16px;
  }
  .testimonial-avatars {
    gap: 8px;
    padding: 5px 10px 5px 8px;
  }
  .testimonial-avatars .testimonial-avatar {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }
  .testimonial-avatars .testimonial-avatar--count {
    font-size: 10px;
  }
  .testimonial-score-value {
    font-size: 2.6rem;
  }
  .testimonial-score .testimonial-stars svg {
    width: 16px;
    height: 16px;
  }
  .testimonial-track {
    --slider-per-view: 1;
  }
}
.slider-nav.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.starter-section {
  padding: clamp(50px, 7vw, 100px) 0;
  background: #ffffff;
}

.ch-block {
  margin-bottom: clamp(36px, 5vw, 60px);
}

.ch-row1 {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 13fr);
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
  margin-bottom: 20px;
}

.ch-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ch-card {
  border-radius: 16px;
  padding: clamp(16px, 1.5vw, 22px);
}

.ch-card--highlight {
  background: linear-gradient(158deg, #ffffff 0%, #ffffff 22%, #f5f2ea 100%);
  border: 1px solid #e6e3da;
}

.ch-card-title {
  font-family: var(--heading-font-family);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #152124;
  background: none;
  padding: 0;
  margin: 0;
}
.ch-card-title::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 14px;
  margin-bottom: 16px;
  background: linear-gradient(to right, transparent, rgba(47, 85, 93, 0.32) 18%, rgba(47, 85, 93, 0.32) 82%, transparent);
}

.ch-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch-table-row {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 13px 12px;
  border: 1px solid rgba(47, 85, 93, 0.13);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(21, 33, 36, 0.05), 0 1px 1px rgba(21, 33, 36, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.ch-table-row:hover {
  border-color: rgba(47, 85, 93, 0.45);
  box-shadow: 0 6px 18px rgba(36, 67, 73, 0.11);
  transform: translateY(-2px);
}
.ch-table-row:hover .ch-label {
  color: #244349;
}

@media (prefers-reduced-motion: reduce) {
  .ch-table-row {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .ch-table-row:hover {
    transform: none;
  }
}
.ch-label {
  margin-bottom: clamp(5px, 0.8vw, 8px);
  padding: 0;
  border: none;
  background: none;
  font-family: var(--heading-font-family);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2f555d;
}

.ch-value {
  padding: 0;
  background: none;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  white-space: nowrap;
  color: #152124;
}

.ch-card--fee {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: none;
  padding: clamp(18px, 2vw, 24px);
  background: #244349;
  color: #ffffff;
}
.ch-card--fee::after {
  content: "100 Hour";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  font-family: var(--font-family-style3);
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.ch-fee-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ch-fee-title {
  font-family: var(--heading-font-family);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #ffffff;
  margin: 0;
}

.ch-fee-badge {
  flex-shrink: 0;
  font-family: var(--heading-font-family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #e2c07a;
}

.ch-fee-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.ch-fee-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ch-fee-row + .ch-fee-row {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.ch-fee-name {
  font-family: var(--heading-font-family);
  font-weight: 600;
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  color: #ffffff;
}

.ch-fee-note {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.6);
}

.ch-fee-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.ch-fee-now {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  line-height: 1.1;
  color: #e2c07a;
}

.ch-fee-old {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.ch-fee-cta {
  --btn-hover-bg: rgba(255, 255, 255, 0.18);
  display: flex;
  width: 100%;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 20px;
}

.ch-main-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(36, 67, 73, 0.12);
  height: 100%;
  min-height: clamp(260px, 30vw, 420px);
}

.ch-main-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ch-main-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  z-index: 0;
}
.ch-main-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.ch-main-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.ch-thumbs {
  position: relative;
  width: 100%;
}

.ch-thumb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #244349;
  border: 1px solid #e6e3da;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 14px rgba(36, 67, 73, 0.18);
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.ch-thumb-nav:hover {
  background: #2f555d;
  color: #ffffff;
  border-color: #2f555d;
}
.ch-thumb-nav svg {
  flex-shrink: 0;
}

.ch-thumbs.is-scrollable .ch-thumb-nav {
  opacity: 1;
  visibility: visible;
}

.ch-thumb-nav--prev {
  left: 8px;
}

.ch-thumb-nav--next {
  right: 8px;
}

.ch-thumb-track {
  display: flex;
  gap: 8px;
  width: 100%;
  padding: 8px 0;
  margin: -8px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ch-thumb-track::-webkit-scrollbar {
  display: none;
}

.ch-thumb {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 6);
  scroll-snap-align: start;
  padding: 6px;
  border: none;
  border-radius: 14px;
  background: none;
  cursor: pointer;
  transition: translate 0.3s ease;
}
.ch-thumb .ch-thumb-frame {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.ch-thumb img {
  width: 100%;
  height: 116px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ch-thumb:hover .ch-thumb-frame img {
  transform: scale(1.05);
}
.ch-thumb::before, .ch-thumb::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  z-index: 2;
  pointer-events: none;
  transition: width 0.2s ease, height 0.2s ease 0.2s;
}
.ch-thumb::before {
  top: 0;
  right: 0;
}
.ch-thumb::after {
  bottom: 0;
  left: 0;
}
.ch-thumb:hover {
  translate: 0 -4px;
}

.ch-thumb:hover::before,
.ch-thumb:hover::after,
.ch-thumb.is-active::before,
.ch-thumb.is-active::after {
  width: 100%;
  height: 100%;
}

.ch-thumb:hover::before,
.ch-thumb.is-active::before {
  border-top-color: #2f555d;
  border-right-color: #2f555d;
}

.ch-thumb:hover::after,
.ch-thumb.is-active::after {
  border-bottom-color: #2f555d;
  border-left-color: #2f555d;
}

@media (prefers-reduced-motion: reduce) {
  .ch-thumb {
    transition: none;
  }
  .ch-thumb:hover {
    translate: none;
  }
  .ch-thumb::before, .ch-thumb::after {
    transition: none;
  }
}
.ch-body-content {
  margin: 0 auto;
}
.ch-body-content .para:last-child {
  margin-bottom: 0;
}
.ch-body-content .para a {
  font-size: inherit;
  color: #2f555d;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ch-body-content .para a:hover {
  color: #244349;
}

@media (max-width: 1199.98px) {
  .ch-row1 {
    grid-template-columns: 1fr;
  }
  .ch-main-slider {
    height: auto;
    min-height: 0;
    aspect-ratio: 3/2;
  }
  .ch-thumb {
    flex: 0 0 calc((100% - 24px) / 4);
  }
}
@media (max-width: 575px) {
  .ch-value {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 12.5px;
  }
  .ch-table-row {
    padding: 11px 10px;
  }
  .ch-table {
    gap: 8px;
  }
  .ch-fee-row + .ch-fee-row {
    padding-left: 14px;
  }
  .ch-main-slider {
    aspect-ratio: 16/10;
  }
  .ch-thumb {
    flex: 0 0 calc((100% - 12px) / 3);
    padding: 4px;
  }
  .ch-thumb img {
    height: 68px;
  }
  .ch-thumb-track {
    gap: 6px;
  }
  .ch-thumb-nav {
    width: 32px;
    height: 32px;
  }
}
.why-ryk {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 auto;
  border-radius: clamp(24px, 3vw, 48px);
  padding: clamp(50px, 7vw, 100px) 0;
}

.why-ryk-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 26px;
  margin-bottom: clamp(26px, 3.5vw, 44px);
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, transparent, #c9a227 20%, #c9a227 80%, transparent) 1;
     border-image: linear-gradient(to right, transparent, #c9a227 20%, #c9a227 80%, transparent) 1;
}

.why-ryk-head .heading-wrap {
  max-width: 600px;
  margin-bottom: 0;
}

.why-ryk-head-art {
  display: none;
}

@media (min-width: 1200px) {
  .why-ryk-head-art {
    display: block;
    flex: 0 1 auto;
    align-self: flex-end;
    width: auto;
    height: clamp(140px, 13vw, 200px);
    margin-bottom: -26px;
  }
}
.why-ryk-note {
  max-width: 280px;
  padding-bottom: 6px;
  margin: 0;
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  line-height: 1.6;
  color: #212529;
}

.why-ryk-collage {
  position: relative;
  display: flex;
  gap: clamp(16px, 2vw, 26px);
  padding: 20px 10px 46px;
  margin-bottom: clamp(30px, 4vw, 50px);
  overflow-x: auto;
  scrollbar-width: none;
}
.why-ryk-collage::-webkit-scrollbar {
  display: none;
}

.why-ryk-photo {
  flex: 0 0 auto;
  width: clamp(170px, 18vw, 230px);
  aspect-ratio: 0.92/1;
  margin: 0;
  padding: 20px 8px 20px 8px;
  background: #ffffff;
  box-shadow: 0 18px 34px -18px rgba(21, 33, 36, 0.35);
  transition: transform 0.3s ease;
}
.why-ryk-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.why-ryk-photo:nth-child(1) {
  transform: rotate(-4deg);
  margin-top: 18px;
}

.why-ryk-photo:nth-child(2) {
  transform: rotate(3deg);
}

.why-ryk-photo:nth-child(3) {
  transform: rotate(-2deg);
  margin-top: 30px;
}

.why-ryk-photo:nth-child(4) {
  transform: rotate(4deg);
  margin-top: 6px;
}

.why-ryk-photo:nth-child(5) {
  transform: rotate(-3deg);
  margin-top: 24px;
}

.why-ryk-photo:hover {
  position: relative;
  z-index: 5;
  transform: rotate(0deg) scale(1.03);
}

.why-ryk-since {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(#2f555d, #244349);
  transform: rotate(-2deg);
  margin-bottom: 6px;
}
.why-ryk-since strong {
  font-family: var(--heading-font-family);
  font-size: 26px;
  font-weight: 700;
  color: #e2c07a;
}
.why-ryk-since span {
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 992px) {
  .why-ryk-collage {
    align-items: flex-start;
    overflow: visible;
  }
  .why-ryk-photo {
    flex: 1 1 0;
    width: auto;
  }
}
.why-ryk-lower {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

.why-ryk-intro p {
  margin: 0 0 20px;
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  line-height: 1.85;
  color: #212529;
}
.why-ryk-intro p:last-child {
  margin-bottom: 0;
}

.why-ryk-intro a {
  font-weight: 600;
  color: #152124;
  text-decoration: underline;
  text-decoration-color: #2f555d;
  text-underline-offset: 3px;
}
.why-ryk-intro a:hover {
  color: #2f555d;
}

.why-ryk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-ryk--track .why-ryk-lead {
  max-width: 900px;
  margin: clamp(26px, 3.2vw, 42px) auto 0;
  text-align: center;
}
.why-ryk--track .why-ryk-lead + .why-ryk-lead {
  margin-top: clamp(12px, 1.4vw, 18px);
}
.why-ryk--track .why-ryk-close {
  max-width: 900px;
  margin: clamp(30px, 3.6vw, 50px) auto 0;
}

.why-track {
  position: relative;
  display: grid;
  counter-reset: whyStep;
  gap: clamp(34px, 4.5vw, 68px);
  margin: clamp(34px, 4.5vw, 62px) 0 0;
  padding: 0;
  list-style: none;
}
.why-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0) 0%, rgba(201, 162, 39, 0.45) 7%, rgba(201, 162, 39, 0.45) 93%, rgba(201, 162, 39, 0) 100%);
}
@media (max-width: 767.98px) {
  .why-track::before {
    left: 7px;
    transform: none;
  }
}

.why-step {
  position: relative;
  display: grid;
  counter-increment: whyStep;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  -moz-column-gap: clamp(38px, 6vw, 96px);
       column-gap: clamp(38px, 6vw, 96px);
}
.why-step::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 13px;
  height: 13px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #2f555d;
  box-shadow: 0 0 0 5px #f5f2ea;
}
.why-step:nth-child(even) .why-step-media {
  grid-column: 2;
  grid-row: 1;
}
.why-step:nth-child(even) .why-step-text {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}
.why-step:nth-child(even) .why-step-title::after {
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .why-step {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 16px;
    padding-left: 34px;
  }
  .why-step::before {
    left: 7px;
    top: 22px;
    transform: translate(-50%, 0);
    box-shadow: 0 0 0 4px #f5f2ea;
  }
  .why-step:nth-child(even) .why-step-media,
  .why-step:nth-child(even) .why-step-text {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
  }
  .why-step:nth-child(even) .why-step-title::after {
    margin-left: 0;
  }
}

.why-step-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(10px, 1.2vw, 16px);
  margin: 0;
}
.why-step-media .why-step-frame {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 44px -22px rgba(21, 33, 36, 0.45);
}
.why-step-media .why-step-frame:nth-child(2) {
  margin-top: clamp(14px, 2vw, 30px);
}
.why-step-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.why-step-media .why-step-frame:hover img,
.why-step-media .why-step-frame:focus-within img {
  transform: scale(1.07);
}
@media (max-width: 575.98px) {
  .why-step-media {
    gap: 8px;
  }
  .why-step-media .why-step-frame {
    border-radius: 14px;
  }
  .why-step-media .why-step-frame:nth-child(2) {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-step-media img {
    transition: none;
  }
  .why-step-media .why-step-frame:hover img {
    transform: none;
  }
}
.why-step-text::before {
  content: counter(whyStep, decimal-leading-zero);
  display: block;
  margin-bottom: clamp(4px, 0.8vw, 10px);
  font-family: var(--font-family-style3);
  font-size: clamp(2.3rem, 1.7rem + 2.2vw, 3.9rem);
  line-height: 0.75;
  color: rgba(201, 162, 39, 0.72);
}

.why-step-title {
  font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.85rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: clamp(12px, 1.4vw, 18px);
}
.why-step-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: clamp(10px, 1.2vw, 15px);
  border-radius: 2px;
  background: linear-gradient(90deg, #ffa64d, #c9a227);
}

.why-step-text p {
  margin: 0;
}

.why-ryk-card {
  position: relative;
  padding: 30px 24px;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(21, 33, 36, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-ryk-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 32px;
  background-image: radial-gradient(circle, rgba(226, 192, 122, 0.6) 1.5px, transparent 1.5px);
  background-size: 6px 6px;
  pointer-events: none;
}
.why-ryk-card:nth-child(1) {
  transform: rotate(-1.5deg);
  border-bottom: 4px solid #e2c07a;
}
.why-ryk-card:nth-child(2) {
  transform: rotate(1deg);
  border-bottom: 4px solid #2f555d;
}
.why-ryk-card:nth-child(2)::before {
  background-image: radial-gradient(circle, rgba(47, 85, 93, 0.4) 1.5px, transparent 1.5px);
}
.why-ryk-card:nth-child(3) {
  transform: rotate(-1.2deg);
  border-bottom: 4px solid #2f555d;
}
.why-ryk-card:nth-child(3)::before {
  background-image: radial-gradient(circle, rgba(47, 85, 93, 0.4) 1.5px, transparent 1.5px);
}
.why-ryk-card:nth-child(4) {
  transform: rotate(1.5deg);
  border-bottom: 4px solid #e2c07a;
}
.why-ryk-card:nth-child(5) {
  transform: rotate(-1deg);
  border-bottom: 4px solid #2f555d;
}
.why-ryk-card:nth-child(5)::before {
  background-image: radial-gradient(circle, rgba(47, 85, 93, 0.4) 1.5px, transparent 1.5px);
}
.why-ryk-card:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  z-index: 5;
  border-color: rgba(47, 85, 93, 0.25);
  box-shadow: 0 14px 34px rgba(36, 67, 73, 0.12);
}
.why-ryk-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #212529;
}

.why-ryk-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(45px, 5vw, 65px);
  height: clamp(45px, 5vw, 65px);
  background: linear-gradient(to left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.99));
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(47, 93, 80, 0.12);
}
.why-ryk-card-img img {
  display: block;
  width: 55%;
  height: 55%;
  -o-object-fit: cover;
     object-fit: cover;
  align-self: center;
  aspect-ratio: 4/3;
  filter: brightness(0) saturate(100%) invert(19%) sepia(38%) saturate(565%) hue-rotate(142deg) brightness(96%) contrast(88%);
}

.why-ryk-card-title {
  margin: 0 0 14px;
  font-family: var(--heading-font-family);
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 700;
  color: #152124;
  display: inline-block;
}
.why-ryk-card-title::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 8px;
  border-radius: 2px;
}
.why-ryk-card:nth-child(1) .why-ryk-card-title::after, .why-ryk-card:nth-child(4) .why-ryk-card-title::after {
  background: #e2c07a;
}
.why-ryk-card:nth-child(2) .why-ryk-card-title::after, .why-ryk-card:nth-child(3) .why-ryk-card-title::after, .why-ryk-card:nth-child(5) .why-ryk-card-title::after {
  background: #2f555d;
}

@media (max-width: 991.98px) {
  .why-ryk-lower {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .why-ryk-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    border-bottom: none;
  }
  .why-ryk-since {
    display: none;
  }
  .why-ryk-note {
    max-width: none;
  }
  .why-ryk-grid {
    grid-template-columns: 1fr;
  }
  .why-ryk-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 0;
    overflow: visible;
  }
  .why-ryk-photo {
    width: auto;
    aspect-ratio: 4/3;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  .why-ryk-photo:nth-child(n) {
    transform: none;
    margin-top: 0;
  }
  .why-ryk-photo:hover {
    transform: none;
  }
  .why-ryk-photo:nth-child(5) {
    display: none;
  }
  .why-ryk-card {
    padding: 20px 18px;
  }
  .why-ryk-card p {
    font-size: 12.5px;
    line-height: 1.65;
  }
  .why-ryk-card-img {
    width: 40px;
    height: 40px;
  }
  .why-ryk-card-title {
    margin-bottom: 10px;
  }
  .why-ryk-card-title::after {
    margin-top: 6px;
  }
  .why-ryk-grid {
    gap: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .why-ryk-photo,
  .why-ryk-card {
    transition: border-color 0.3s ease;
    transform: none;
  }
  .why-ryk-photo:hover {
    transform: none;
  }
  .why-ryk-card:hover {
    transform: none;
  }
}
.header {
  --topbar-height: 36px;
  position: sticky;
  top: calc(-1 * var(--topbar-height));
  z-index: 100;
  width: 100%;
}
@media (max-width: 991.98px) {
  .header {
    --topbar-height: 36px;
  }
}
.header .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  height: var(--topbar-height);
  padding: 0 clamp(15px, 3vw, 45px);
  background: linear-gradient(to left, #244349, #2f555d);
}
.header .topbar .icon {
  filter: brightness(0) invert(1);
}
.header .topbar a,
.header .topbar span {
  line-height: 1.5;
}
.header .topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
.header .topbar a:hover {
  color: #c9a227;
}
.header .topbar a:hover .icon {
  opacity: 1;
}
.header .topbar .icon {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
@media (max-width: 991.98px) {
  .header .topbar {
    gap: 10px;
  }
  .header .topbar span {
    font-size: 12px;
  }
}
.header .topbar .contact-info {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
}
@media (max-width: 991.98px) {
  .header .topbar .contact-info li:first-child {
    display: none;
  }
}
.header .topbar .social-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
}
.header .navbar {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 30px);
  padding: clamp(10px, 1.3vw, 17px) clamp(15px, 3vw, 45px);
  background: #ffffff;
  border-bottom: 1px solid #e6e3da;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.header .navbar.is-stuck {
  border-bottom-color: transparent;
  box-shadow: 0 4px 24px rgba(20, 32, 27, 0.1);
}
@media (max-width: 991.98px) {
  body.nav-open .header .navbar {
    z-index: 300;
  }
}
.header .navbar .logo {
  display: flex;
  align-items: center;
  position: relative;
}
.header .navbar .logo::before {
  content: "";
  width: calc(100% + 40px);
  height: calc(100% + 30px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .navbar .logo img {
  width: clamp(112px, 10.5vw, 160px);
  height: auto;
}
.header .navbar .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  margin-left: auto;
}
.header .navbar .menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #152124;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header .navbar .menu-toggle.is-active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header .navbar .menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}
.header .navbar .menu-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 991.98px) {
  .header .navbar .menu-toggle,
  .header .navbar .nav-close {
    display: flex;
  }
}
.header .navbar .nav-wrapper {
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 300;
    display: flex;
    flex-direction: column;
    width: min(390px, 100vw - 30px);
    min-width: 0;
    max-width: 390px;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
    overscroll-behavior: contain;
    box-shadow: 16px 0 42px rgba(20, 32, 27, 0.18);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
  }
  .header .navbar .nav-wrapper.is-open {
    transform: translateX(0);
  }
}
@media (max-width: 991.98px) {
  body.nav-open .header .navbar .nav-wrapper.is-open {
    left: 0;
    width: min(390px, 100vw - 30px);
    min-width: 0;
  }
}
.header .navbar .nav-wrapper .mobile-nav-head,
.header .navbar .nav-wrapper .mobile-nav-connect {
  display: none;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .mobile-nav-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 16px 14px;
    background: #ffffff;
    border-bottom: 1px solid #e6e3da;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .mobile-nav-head .mobile-nav-logo {
    display: inline-flex;
    align-items: center;
  }
  .header .navbar .nav-wrapper .mobile-nav-head .mobile-nav-logo img {
    width: clamp(105px, 28vw, 130px);
    height: auto;
  }
}
.header .navbar .nav-wrapper .mobile-nav-head .nav-close {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
}
.header .navbar .nav-wrapper .mobile-nav-head .nav-close::before, .header .navbar .nav-wrapper .mobile-nav-head .nav-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 22px;
  height: 2px;
  background: #152124;
  border-radius: 2px;
}
.header .navbar .nav-wrapper .mobile-nav-head .nav-close::before {
  transform: rotate(45deg);
}
.header .navbar .nav-wrapper .mobile-nav-head .nav-close::after {
  transform: rotate(-45deg);
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .mobile-nav-head .nav-close {
    position: relative;
    top: auto;
    right: auto;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    margin-left: auto;
    background: transparent;
  }
  .header .navbar .nav-wrapper .mobile-nav-head .nav-close::before, .header .navbar .nav-wrapper .mobile-nav-head .nav-close::after {
    left: 8px;
    width: 22px;
    background: #2f555d;
  }
}
.header .navbar .nav-wrapper .nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.3vw, 24px);
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .nav-menu {
    flex: 0 1 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
.header .navbar .nav-wrapper .nav-menu .nav-item .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-family: var(--heading-font-family);
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #152124;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header .navbar .nav-wrapper .nav-menu .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: #c9a227;
  transition: width 0.3s ease;
}
.header .navbar .nav-wrapper .nav-menu .nav-item .nav-link:hover {
  color: #2f555d;
}
.header .navbar .nav-wrapper .nav-menu .nav-item .nav-link:hover::before {
  width: 100%;
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .nav-menu .nav-item .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 12px 2px;
    border-bottom: 1px solid #e6e3da;
  }
  .header .navbar .nav-wrapper .nav-menu .nav-item .nav-link::before {
    display: none;
  }
  .header .navbar .nav-wrapper .nav-menu .nav-item .nav-link:focus, .header .navbar .nav-wrapper .nav-menu .nav-item .nav-link:focus-visible {
    outline: 0;
    box-shadow: none;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .nav-menu .nav-item:last-child .nav-link {
    border-bottom: 0;
  }
}
.header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown {
  position: relative;
}
.header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown > .nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown:hover > .nav-link {
    color: #2f555d;
  }
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
  }
}
@media (min-width: 992px) {
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown:nth-last-child(-n+3) .dropdown {
    left: auto;
    right: 0;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown.is-open > .nav-link {
    color: #2f555d;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown.is-open > .nav-link::after {
    transform: rotate(180deg);
  }
}
.header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown {
  width: -moz-max-content;
  width: max-content;
  min-width: 260px;
  max-width: calc(100vw - 30px);
  padding: 10px 0;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 32, 27, 0.13);
}
.header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown .dropdown-divider {
  height: 1px;
  margin: 8px 20px;
  background: linear-gradient(90deg, transparent, #e6e3da, transparent);
  list-style: none;
}
.header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown .dropdown-heading {
  padding: 4px 22px 2px;
  font-family: var(--heading-font-family);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f555d;
  white-space: nowrap;
}
.header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown .dropdown-heading span {
  display: block;
}
.header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  color: #212529;
  line-height: 1.5;
  white-space: nowrap;
  border-left: 2px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown a:hover {
  background: #f5f2ea;
  border-left-color: #c9a227;
  color: #2f555d;
}
@media (min-width: 992px) {
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown {
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgb(248.2903225806, 246.2774193548, 240.9096774194);
    box-shadow: none;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown .dropdown-divider {
    margin: 8px 16px;
    background: #e6e3da;
  }
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown .dropdown-heading {
    padding: 10px 18px 4px;
    font-size: 10px;
    color: #2f555d;
  }
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown a {
    padding: 8px 18px;
    font-size: 13px;
    color: #212529;
    white-space: normal;
    border-left: 0;
  }
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown .dropdown a:hover {
    background: transparent;
    color: #2f555d;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .nav-menu .nav-item.has-dropdown.is-open > .dropdown {
    max-height: 620px;
    margin: 0 0 4px;
    padding: 8px 0;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .mobile-nav-connect {
    display: block;
    margin: auto 16px 40px;
    padding: 18px 14px 16px;
    text-align: center;
    background: radial-gradient(circle at 8px 8px, rgba(47, 85, 93, 0.08) 1px, transparent 1px), linear-gradient(135deg, rgba(245, 242, 234, 0.92), rgba(255, 255, 255, 0.98));
    background-size: 16px 16px, auto;
    border: 1px solid #e6e3da;
    border-radius: 18px;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-title {
    display: block;
    font-family: var(--heading-font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #2f555d;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect p {
    margin: 4px 0 10px;
    font-size: 11px;
    line-height: 1.4;
    color: #8a968f;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-divider {
    position: relative;
    width: min(230px, 80%);
    height: 28px;
    margin: 0 auto 10px;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-divider::before, .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 28px);
    height: 1px;
    background: #e6e3da;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-divider::before {
    left: 0;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-divider::after {
    right: 0;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-divider {
    background: radial-gradient(ellipse at center, transparent 0 8px, #2f555d 8px 9px, transparent 9px) center 13px/28px 18px no-repeat, radial-gradient(ellipse at 50% 100%, transparent 0 7px, #2f555d 7px 8px, transparent 8px) center 2px/16px 18px no-repeat;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-links {
    display: grid;
    gap: 12px;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-links a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 58px;
    padding: 8px 12px;
    text-align: left;
    color: #152124;
    background: #ffffff;
    border: 1px solid #e6e3da;
    border-radius: 18px;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-links a img {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-links a .mobile-connect-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #2f555d;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-links a .mobile-connect-text {
    display: block;
    min-width: 0;
    flex: 1;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-links a .mobile-connect-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: #2f555d;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-links a .mobile-connect-text small {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.3;
    color: #212529;
    white-space: nowrap;
  }
}
@media (max-width: 991.98px) {
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e6e3da;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-social a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #2f555d;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-social a + a {
    margin-left: 22px;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-social a + a::before {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: -12px;
    width: 1px;
    background: #e6e3da;
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-social a:hover {
    background: #244349;
    transform: translateY(-2px);
  }
  .header .navbar .nav-wrapper .mobile-nav-connect .mobile-connect-social img {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
  }
}
@media (max-width: 991.98px) {
  .header .navbar .theme-btn {
    padding: 9px 16px;
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .header .navbar .theme-btn {
    display: none;
  }
}
.header .nav-overlay {
  display: none;
}
@media (max-width: 991.98px) {
  .header .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 250;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media (max-width: 991.98px) {
  body.nav-open .header .nav-overlay {
    background: rgba(20, 32, 27, 0.78);
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 991.98px) {
  body.nav-open {
    overflow: hidden;
  }
}

.page-breadcrumb {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(100px, 12vw, 180px) 0;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}
.page-breadcrumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 32, 27, 0.15);
  z-index: 1;
  pointer-events: none;
}
.page-breadcrumb .container {
  position: relative;
  z-index: 2;
}
.page-breadcrumb .breadcrumb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.page-breadcrumb .breadcrumb-title {
  font-family: var(--heading-font-family) !important;
  font-size: clamp(20px, 8px + 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.page-breadcrumb .breadcrumb-nav {
  display: inline-flex;
  align-items: center;
}
.page-breadcrumb .breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 0.7vw, 10px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-breadcrumb .breadcrumb-list li {
  font-family: var(--body-font-family);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.page-breadcrumb .breadcrumb-list li a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}
.page-breadcrumb .breadcrumb-list li a:hover {
  color: #c9a227;
}
.page-breadcrumb .breadcrumb-list li.active {
  color: white;
  font-weight: 600;
}
.page-breadcrumb .breadcrumb-list .breadcrumb-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.page-breadcrumb .breadcrumb-list .breadcrumb-separator svg {
  width: 12px;
  height: 12px;
}
.page-breadcrumb .breadcrumb-sub {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}
.page-breadcrumb .breadcrumb-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.page-breadcrumb .theme-btn--outline {
  --btn-hover-bg: #ffffff;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.page-breadcrumb .theme-btn--outline:hover {
  color: #152124;
  border-color: #ffffff;
}
.page-breadcrumb .breadcrumb-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px clamp(18px, 3vw, 40px);
  width: 100%;
  margin: clamp(34px, 5vw, 64px) 0 0;
  padding: clamp(14px, 1.6vw, 20px) 20px 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.page-breadcrumb .breadcrumb-stats li {
  position: relative;
  font-family: var(--body-font-family);
  font-size: clamp(12px, 11px + 0.25vw, 14px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.page-breadcrumb .breadcrumb-stats li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(clamp(18px, 3vw, 40px) / -2);
  width: 1px;
  height: 12px;
  translate: 0 -50%;
  background: rgba(255, 255, 255, 0.28);
}
.page-breadcrumb--course {
  padding-bottom: clamp(12px, 1.2vw, 18px);
}
@media (max-width: 575.98px) {
  .page-breadcrumb .breadcrumb-actions {
    width: 100%;
  }
  .page-breadcrumb .breadcrumb-actions .theme-btn {
    flex: 1 1 calc(100% - 7px);
    justify-content: center;
  }
  .page-breadcrumb .breadcrumb-stats {
    gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-breadcrumb .breadcrumb-stats li {
    padding: 6px 6px;
    font-size: 10px;
    letter-spacing: 0.02em;
    line-height: 1.35;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .page-breadcrumb .breadcrumb-stats li + li::before {
    display: none;
  }
}

.surya-namaskar-section {
  position: relative;
  overflow: hidden;
  background: #f5f2ea;
  padding: 0;
}
.surya-namaskar-section .bg-center {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  background: url("../img/mask-pattern/yoga-meditation-bg.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: 1;
}
.surya-namaskar-section .bg-center img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.surya-namaskar-section .surya-mandala {
  --x-position: -50%;
  position: absolute;
  top: 50%;
  width: clamp(320px, 35vw, 550px);
  height: clamp(320px, 35vw, 550px);
  aspect-ratio: 1/1;
  background: url("../img/mask-pattern/surya-chakara.webp") no-repeat center;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  filter: brightness(0) saturate(100%) invert(61%) sepia(66%) saturate(478%) hue-rotate(8deg) brightness(93%) contrast(91%);
  transform: translate(var(--x-position), -50%);
  animation: chakra-spin 30s linear infinite;
}
.surya-namaskar-section .surya-mandala-left {
  left: 0;
}
.surya-namaskar-section .surya-mandala-right {
  --x-position: 50%;
  right: 0;
  animation-direction: reverse;
}
@keyframes chakra-spin {
  from {
    transform: translate(var(--x-position), -50%) rotate(0deg);
  }
  to {
    transform: translate(var(--x-position), -50%) rotate(360deg);
  }
}
.surya-namaskar-section .surya-wave-top,
.surya-namaskar-section .surya-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  background: #ffffff;
  pointer-events: none;
}
.surya-namaskar-section .surya-wave-top img,
.surya-namaskar-section .surya-wave-bottom img {
  display: block;
  width: 100%;
  height: auto;
}
.surya-namaskar-section .surya-wave-top {
  top: -40px;
}
.surya-namaskar-section .surya-wave-bottom {
  bottom: -40px;
  transform: rotate(180deg);
}
.surya-namaskar-section .grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.surya-namaskar-section .surya-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(70px, 7vw, 95px) 24px clamp(70px, 8vw, 95px);
}
.surya-namaskar-section .orbit-stage-wrap {
  --s: 1;
  position: relative;
  width: 100%;
  height: calc(clamp(580px, 63vw, 660px) * var(--s, 1));
  margin-top: clamp(16px, 3vw, 36px);
  transition: height 0.2s ease;
}
.surya-namaskar-section .orbit-stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1100px;
  height: clamp(580px, 63vw, 660px);
  margin-left: -550px;
  transform: scale(var(--s, 1));
  transform-origin: top center;
}
.surya-namaskar-section .orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 524px;
  height: 524px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(184, 148, 31, 0.45);
  border-radius: 50%;
  z-index: 0;
}
.surya-namaskar-section .orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 5;
}
.surya-namaskar-section .orbit-center .sun-rays {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: sun-rays-spin 60s linear infinite;
}
.surya-namaskar-section .orbit-center .sun-rays .ray {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 50%;
  transform-origin: bottom center;
  background: linear-gradient(to top, rgb(255, 202, 99), transparent 85%);
}
@keyframes sun-rays-spin {
  to {
    transform: rotate(360deg);
  }
}
.surya-namaskar-section .orbit-center .sun-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 64, 0.38) 0%, transparent 70%);
  animation: sun-pulse 5s ease-in-out infinite;
}
@keyframes sun-pulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}
.surya-namaskar-section .orbit-center .sun-disc {
  position: relative;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(circle at 50% 42%, #fff8d4 0%, #ffe497 22%, #ffcb54 52%, #f9ae2c 82%, #f0991f 100%);
  box-shadow: inset 0 -8px 18px rgba(150, 90, 15, 0.25), 0 12px 34px rgba(240, 165, 40, 0.28);
}
.surya-namaskar-section .orbit-center .sun-disc img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.surya-namaskar-section .orbit-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 6;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.35s ease;
}
.surya-namaskar-section .orbit-node:focus, .surya-namaskar-section .orbit-node:focus-visible, .surya-namaskar-section .orbit-node:active {
  outline: none !important;
  box-shadow: none !important;
}
.surya-namaskar-section .orbit-node img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(21, 33, 36, 0.16));
}
.surya-namaskar-section .orbit-node:hover, .surya-namaskar-section .orbit-node.is-active, .surya-namaskar-section .orbit-node.active {
  transform: translate(-50%, -50%) scale(1.09);
}
.surya-namaskar-section .node-badge {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(184, 148, 31, 0.65);
  background: rgba(255, 255, 255, 0.95);
  color: #b8941f;
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  z-index: 7;
  box-shadow: 0 6px 16px rgba(21, 33, 36, 0.07);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.surya-namaskar-section .node-badge.is-active {
  background: #b8941f;
  color: #ffffff;
}
.surya-namaskar-section .orbit-node:hover + .node-badge {
  background: #b8941f;
  color: #ffffff;
}
.surya-namaskar-section .orbit-label {
  position: absolute;
  width: 168px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 7;
  pointer-events: none;
}
.surya-namaskar-section .orbit-label.is-top {
  transform: translate(-50%, -100%);
  text-align: center;
  align-items: center;
}
.surya-namaskar-section .orbit-label.is-top small {
  align-self: center;
}
.surya-namaskar-section .orbit-label.is-left {
  transform: translate(-100%, -50%);
  text-align: right;
  align-items: flex-end;
}
.surya-namaskar-section .orbit-label.is-bottom {
  transform: translate(-50%, 0);
  text-align: center;
  align-items: center;
}
.surya-namaskar-section .orbit-label.is-bottom small {
  align-self: center;
}
.surya-namaskar-section .orbit-label strong {
  font-family: var(--heading-font-family);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.15;
  color: #152124;
  transition: color 0.3s ease;
}
.surya-namaskar-section .orbit-label small {
  display: inline-block;
  font-size: 12px;
  padding-bottom: 4px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.surya-namaskar-section .orbit-label small::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168, 135, 28, 0.55) 20%, rgba(168, 135, 28, 0.55) 80%, transparent);
}
.surya-namaskar-section .orbit-label.is-active strong {
  color: #b8941f;
}
.surya-namaskar-section .pose-caption {
  display: none;
  margin: 16px auto 0;
  max-width: 480px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 24px;
  box-shadow: 0 12px 34px rgba(21, 33, 36, 0.07);
  border: 1px solid rgba(230, 227, 218, 0.6);
}
.surya-namaskar-section .pose-caption .step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8941f;
}
.surya-namaskar-section .pose-caption h3,
.surya-namaskar-section .pose-caption h2 {
  margin-top: 6px;
  margin-bottom: 2px;
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: 700;
  color: #152124;
}
.surya-namaskar-section .pose-caption .sanskrit {
  display: block;
  font-size: 13.5px;
  color: #2f555d;
  font-style: italic;
}
.surya-namaskar-section .pose-caption p {
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.6;
  color: #212529;
}
.surya-namaskar-section .pose-caption.fader {
  animation: caption-fade 0.4s ease;
}
@keyframes caption-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.surya-namaskar-section .surya-benefits {
  position: relative;
  z-index: 3;
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.3803921569);
  padding: 22px 14px;
  box-shadow: 0 18px 50px rgba(21, 33, 36, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}
.surya-namaskar-section .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 16px;
  border-right: 1px solid rgba(230, 227, 218, 0.75);
}
.surya-namaskar-section .benefit-item:last-child {
  border-right: none;
}
.surya-namaskar-section .benefit-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(184, 148, 31, 0.4);
  color: #b8941f;
  background: rgba(201, 162, 39, 0.08);
}
.surya-namaskar-section .benefit-icon img {
  width: 60%;
  height: 60%;
  filter: brightness(0) saturate(100%) invert(61%) sepia(66%) saturate(478%) hue-rotate(8deg) brightness(93%) contrast(91%);
}
.surya-namaskar-section .benefit-text strong {
  display: block;
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 700;
  color: #152124;
}
.surya-namaskar-section .benefit-text small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.45;
}
@media (max-width: 1440px) {
  .surya-namaskar-section .orbit-stage-wrap {
    --s: 0.92;
  }
}
@media (max-width: 1280px) {
  .surya-namaskar-section .orbit-stage-wrap {
    --s: 0.82;
  }
}
@media (max-width: 1024px) {
  .surya-namaskar-section .orbit-stage-wrap {
    --s: 0.72;
  }
  .surya-namaskar-section .surya-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
    padding: 20px 16px;
  }
  .surya-namaskar-section .surya-benefits .benefit-item:nth-child(even) {
    border-right: none;
  }
  .surya-namaskar-section .surya-benefits .benefit-item:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 820px) {
  .surya-namaskar-section .surya-mandala {
    display: none !important;
  }
  .surya-namaskar-section .orbit-stage-wrap {
    --s: 0.88;
  }
  .surya-namaskar-section .orbit-label {
    display: none !important;
  }
  .surya-namaskar-section .pose-caption {
    display: block !important;
    position: relative;
    z-index: 10;
    margin: 20px auto 0;
    background: #ffffff;
    border: 1px solid rgba(184, 148, 31, 0.25);
    box-shadow: 0 10px 30px rgba(21, 33, 36, 0.09);
  }
  .surya-namaskar-section .node-badge {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .surya-namaskar-section .orbit-stage-wrap {
    --s: 0.78;
  }
  .surya-namaskar-section .surya-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .surya-namaskar-section .surya-benefits {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .surya-namaskar-section .surya-benefits .benefit-item {
    border-right: none;
    border-bottom: 1px solid rgba(230, 227, 218, 0.7);
    padding: 10px 4px;
  }
  .surya-namaskar-section .surya-benefits .benefit-item:last-child {
    border-bottom: none;
    grid-column: span 1;
  }
}
@media (max-width: 425px) {
  .surya-namaskar-section .orbit-stage-wrap {
    --s: 0.68;
  }
}
@media (max-width: 375px) {
  .surya-namaskar-section .orbit-stage-wrap {
    --s: 0.60;
  }
}
@media (prefers-reduced-motion: reduce) {
  .surya-namaskar-section .surya-mandala,
  .surya-namaskar-section .sun-rays,
  .surya-namaskar-section .sun-glow {
    animation: none;
  }
  .surya-namaskar-section .orbit-node,
  .surya-namaskar-section .node-badge,
  .surya-namaskar-section .orbit-label {
    transition: none;
  }
}

.blog-wrapper {
  background: #ffffff;
  padding: clamp(50px, 7vw, 100px) 0;
}

.blog-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (min-width: 992px) {
  .blog-grid-2.two-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card,
.blog-card:hover,
.blog-card:focus,
.blog-card * {
  text-decoration: none !important;
}
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(20, 32, 27, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(20, 32, 27, 0.15);
}
.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}
.blog-card:hover .blog-card__btn .blog-card__arrow {
  transform: translateX(4px);
}
.blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
  flex-shrink: 0;
  z-index: 1;
}
.blog-card__img-wrap::before {
  content: "";
  background: url("../img/mask-pattern/blog-top-right.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  z-index: 2;
}
.blog-card__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgb(0, 0, 0) 0%, rgba(35, 45, 42, 0.35) 20%, rgba(35, 45, 42, 0.08) 42%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}
.blog-card__img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card__img--placeholder {
  background: #f5f2ea;
  height: 230px;
}
.blog-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(20, 32, 27, 0.7) 0%, transparent 100%);
  pointer-events: none;
}
.blog-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  background: rgba(36, 67, 73, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 6px 4px;
  z-index: 2;
}
.blog-card__date-day {
  font-family: var(--heading-font-family);
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.blog-card__date-month {
  font-size: 0.6875rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 2px;
}
.blog-card__content {
  padding: 22px 22px 20px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
  background: white;
}
.blog-card__content::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 14px);
  left: 0;
  height: 50px;
  width: 100%;
  background: url("../img/mask-pattern/blog-curve.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  z-index: -1;
}
.blog-card__content::after {
  content: "";
  width: 40%;
  height: 40%;
  background: url("../img/mask-pattern/blog-bottom-right.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0px;
  right: -20px;
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
}
.blog-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2f555d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--heading-font-family);
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  font-weight: 600;
  color: #152124;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card__title {
  color: #2f555d;
}
.blog-card__excerpt {
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 600;
  color: #2f555d;
  transition: color 0.3s ease;
}
.blog-card__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.blog-load-more-wrap {
  text-align: center;
  margin-top: clamp(30px, 4vw, 50px);
}
.blog-load-more-wrap .blog-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 600;
  color: #ffffff;
  background: #2f555d;
  padding: 13px 34px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.blog-load-more-wrap .blog-load-more:hover {
  background: #244349;
  transform: translateY(-2px);
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .blog-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .blog-grid-2 {
    grid-template-columns: 1fr;
  }
}
.footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(26px, 3vw, 48px);
  background: linear-gradient(180deg, #152124 0%, #244349 38%, #2f555d 62%, #244349 86%, #152124 100%);
  color: rgba(245, 242, 234, 0.78);
}
.footer .container {
  position: relative;
  z-index: 2;
}
.footer .footer-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.footer .footer-scene {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 340px;
  opacity: 0.09;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 20%, transparent 72%);
  mask-image: linear-gradient(to top, #000 0%, #000 20%, transparent 72%);
}
.footer .footer-scene svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer .footer-scene path {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.footer .footer-scene .footer-scene-hills {
  stroke: #f5f2ea;
  stroke-width: 1.2;
}
.footer .footer-scene .footer-scene-ridge {
  stroke: #c9a227;
  stroke-width: 1.2;
}
.footer .footer-scene .footer-scene-spire {
  stroke: #c9a227;
  stroke-width: 1.4;
}
.footer .footer-scene .footer-scene-steps {
  stroke: #f5f2ea;
  stroke-width: 1.1;
}
.footer .footer-word {
  position: absolute;
  top: clamp(24px, 2.6vw, 48px);
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  font-family: var(--heading-font-family);
  font-size: 17vw;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: rgba(245, 242, 234, 0.012);
  -webkit-text-stroke: 1px rgba(245, 242, 234, 0.055);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.footer .footer-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 13px 0;
  background: rgba(245, 242, 234, 0.025);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.footer .footer-ticker .footer-ticker-track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: footer-ticker-scroll 40s linear infinite;
}
.footer .footer-ticker .footer-ticker-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 20px;
  font-family: var(--heading-font-family);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
}
.footer .footer-ticker .footer-ticker-item::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 20px;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
}
.footer .footer-ticker:hover .footer-ticker-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .footer .footer-ticker .footer-ticker-track {
    animation: none;
  }
}
@keyframes footer-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.footer .footer-river {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(76px, 8vw, 110px);
}
.footer .footer-river svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.footer .footer-river .footer-river-line {
  fill: none;
  stroke: url(#rykRiverGrad);
  stroke-width: 1.4;
  stroke-dasharray: 4 7;
  vector-effect: non-scaling-stroke;
  opacity: 0.55;
}
.footer .footer-river .footer-diya {
  fill: url(#rykDiyaGlow);
}
@media (prefers-reduced-motion: reduce) {
  .footer .footer-river .footer-diyas {
    display: none;
  }
}
.footer .footer-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
  padding-bottom: clamp(36px, 4vw, 56px);
}
.footer .footer-cell {
  position: relative;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 22px;
  background: rgba(245, 242, 234, 0.025);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.footer .footer-cell:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.55);
  background: rgba(201, 162, 39, 0.05);
}
.footer .footer-cell-brand {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}
.footer .footer-cell-courses {
  grid-column: span 4;
}
.footer .footer-cell-menu {
  grid-column: span 3;
}
.footer .footer-cell-contact {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
}
.footer .footer-cell-contact .footer-place {
  padding-right: clamp(16px, 2vw, 32px);
}
.footer .footer-cell-contact {
  background: linear-gradient(120deg, rgba(201, 162, 39, 0.12), rgba(47, 85, 93, 0.35));
}
.footer .footer-cell-contact:hover {
  background: linear-gradient(120deg, rgba(201, 162, 39, 0.18), rgba(47, 85, 93, 0.4));
}
.footer .footer-brand .footer-logo {
  display: inline-block;
}
.footer .footer-brand .footer-logo img {
  width: 168px;
  height: auto;
}
.footer .footer-brand .footer-tagline {
  font-family: var(--heading-font-family);
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  color: #c9a227;
  margin-top: 16px;
}
.footer .footer-brand .footer-about {
  max-width: 460px;
  margin-top: 14px;
}
.footer .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--heading-font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(to right, #ffa64d, #c9a227);
  transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease, transform 0.3s ease;
}
.footer .footer-cta .footer-cta-arrow {
  width: 15px;
  height: 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.footer .footer-cta:hover, .footer .footer-cta:focus-visible {
  gap: 16px;
  color: #152124;
  background: #f5f2ea;
  transform: translateY(-2px);
}
.footer .footer-om {
  display: block;
  font-family: var(--font-family-style4);
  font-size: 1.05rem;
  line-height: 1;
  color: #c9a227;
  margin-bottom: 12px;
}
.footer .footer-heading {
  font-family: var(--heading-font-family);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f2ea;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(201, 162, 39, 0.28);
}
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer .footer-links a {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.9375rem;
  color: rgba(245, 242, 234, 0.78);
  transition: color 0.3s ease;
}
.footer .footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: #c9a227;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer .footer-links a:hover, .footer .footer-links a:focus-visible {
  color: #c9a227;
}
.footer .footer-links a:hover::after, .footer .footer-links a:focus-visible::after {
  transform: scaleX(1);
}
.footer .footer-label {
  font-family: var(--font-family-style4);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a227;
  margin-bottom: 8px;
}
.footer .footer-place {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer .footer-place .footer-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(to right, #ffa64d, #c9a227);
}
.footer .footer-place .footer-pin svg {
  width: 24px;
  height: 24px;
}
.footer .footer-place .footer-address {
  font-family: var(--heading-font-family);
  font-size: 1.0625rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  color: #f5f2ea;
  margin: 0;
  text-wrap: pretty;
}
.footer .footer-reach {
  display: contents;
}
.footer .footer-reach .footer-reach-item {
  padding-inline: clamp(16px, 2vw, 32px);
  border-left: 1px solid rgba(201, 162, 39, 0.18);
}
.footer .footer-reach .footer-reach-item a {
  font-size: 0.9375rem;
  color: #f5f2ea;
  transition: color 0.3s ease;
}
.footer .footer-reach .footer-reach-item a:hover {
  color: #c9a227;
}
.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: rgba(245, 242, 234, 0.85);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.footer .footer-social a svg {
  width: 15px;
  height: 15px;
}
.footer .footer-social a:hover, .footer .footer-social a:focus-visible {
  color: #152124;
  background: linear-gradient(to right, #ffa64d, #c9a227);
  border-color: transparent;
  transform: translateY(-3px);
}
.footer .footer-accred {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.footer .footer-accred .footer-accred-copy {
  max-width: 380px;
}
.footer .footer-accred .footer-accred-title {
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 17px + 0.7vw, 28px);
  line-height: 1.25;
  color: #f5f2ea;
}
.footer .footer-seals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 28px);
}
.footer .footer-seals .footer-seal {
  flex-shrink: 0;
  width: 94px;
  height: 94px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.footer .footer-seals .footer-seal img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 0.3s ease;
}
.footer .footer-seals .footer-seal:hover {
  transform: translateY(-6px);
}
.footer .footer-seals .footer-seal:hover img {
  opacity: 1;
}
.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(245, 242, 234, 0.1);
}
.footer .footer-bottom p {
  font-size: 0.8125rem;
}
.footer .footer-bottom p a {
  font-size: inherit;
  color: #f5f2ea;
  transition: color 0.3s ease;
}
.footer .footer-bottom p a:hover {
  color: #c9a227;
}
.footer .footer-bottom .footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.footer .footer-bottom .footer-legal a {
  font-size: 0.8125rem;
  color: rgba(245, 242, 234, 0.78);
  transition: color 0.3s ease;
}
.footer .footer-bottom .footer-legal a:hover {
  color: #c9a227;
}
@media (max-width: 991.98px) {
  .footer .footer-cell-brand,
  .footer .footer-cell-courses,
  .footer .footer-cell-menu {
    grid-column: span 12;
  }
  .footer .footer-cell-contact {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }
  .footer .footer-cell-contact .footer-place {
    padding-right: 0;
  }
  .footer .footer-reach {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: clamp(24px, 3vw, 44px);
  }
  .footer .footer-reach .footer-reach-item {
    padding-left: 0;
    border-left: 0;
  }
  .footer .footer-brand .footer-about {
    max-width: none;
  }
}
@media (max-width: 575.98px) {
  .footer .footer-place {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer .footer-place .footer-pin {
    width: 42px;
    height: 42px;
  }
  .footer .footer-place .footer-pin svg {
    width: 20px;
    height: 20px;
  }
  .footer .footer-reach {
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer-accred {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-seals {
    justify-content: center;
  }
  .footer .footer-seals .footer-seal {
    width: 76px;
    height: 76px;
  }
  .footer .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-legal {
    justify-content: center;
  }
}

.fees-section {
  position: relative;
  padding: clamp(54px, 7vw, 100px) 0;
  scroll-margin-top: clamp(90px, 11vh, 120px);
}
.fees-section > .container > .heading-wrap .fees-intro {
  max-width: 920px;
  margin: 18px auto 0;
  text-align: center;
}
.fees-section > .container > .fees-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(20px, 2.8vw, 28px);
  align-items: start;
}
.fees-section > .container > .fees-grid > .fees-dates-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(21, 33, 36, 0.08);
  box-shadow: 0 4px 34px rgba(21, 33, 36, 0.09), 0 12px 24px -14px rgba(21, 33, 36, 0.14);
  padding: clamp(24px, 2.8vw, 32px);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fees-section > .container > .fees-grid > .fees-dates-card > .fees-dates-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e6e3da;
}
.fees-section > .container > .fees-grid > .fees-dates-card > .fees-dates-top > .fees-dates-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fees-section > .container > .fees-grid > .fees-dates-card > .fees-dates-top > .fees-dates-heading > .fees-dates-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(47, 85, 93, 0.1);
  color: #2f555d;
}
.fees-section > .container > .fees-grid > .fees-dates-card > .fees-dates-top > .fees-dates-heading > .fees-dates-icon svg {
  width: 20px;
  height: 20px;
}
.fees-section > .container > .fees-grid > .fees-dates-card > .fees-dates-top > .fees-dates-heading > .fees-dates-title {
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: #152124;
  margin: 0;
}
.fees-section > .container > .fees-grid > .fees-dates-card > .fees-date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fees-section > .container > .fees-grid > .fees-dates-card > .fees-date-grid > .fees-date-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 13px 18px;
  border: 1px solid #e6e3da;
  border-radius: 16px;
  background: #f5f2ea;
  text-align: left;
}
.fees-section > .container > .fees-grid > .fees-dates-card > .fees-date-grid > .fees-date-card > .fees-date-month {
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
  color: #152124;
}
.fees-section > .container > .fees-grid > .fees-dates-card > .fees-date-grid > .fees-date-card > .fees-date-range {
  font-family: var(--body-font-family);
  font-size: 12.5px;
  font-weight: 500;
  color: #212529;
}
.fees-section > .container > .fees-grid > .fees-panel {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(21, 33, 36, 0.08);
  box-shadow: 0 4px 34px rgba(21, 33, 36, 0.1), 0 12px 24px -14px rgba(21, 33, 36, 0.16);
  padding: clamp(24px, 2.8vw, 32px);
  position: relative;
  overflow: hidden;
}
.fees-section > .container > .fees-grid > .fees-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(47, 85, 93, 0.06), transparent 70%);
  pointer-events: none;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content {
  position: relative;
  z-index: 1;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-panel-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e6e3da;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-panel-heading > .fees-panel-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(47, 85, 93, 0.1);
  color: #2f555d;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-panel-heading > .fees-panel-icon svg {
  width: 20px;
  height: 20px;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-panel-heading > .fees-panel-title {
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  color: #152124;
  margin: 0;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: #f5f2ea;
  border: 1px solid #e6e3da;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(21, 33, 36, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(21, 33, 36, 0.1);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card.is-featured {
  background: linear-gradient(135deg, #2f555d, #244349);
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(36, 67, 73, 0.24);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card.is-featured .fees-price-icon {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card.is-featured .fees-price-icon img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(18%) hue-rotate(171deg) brightness(106%) contrast(100%);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card.is-featured .fees-price-label {
  color: rgba(255, 255, 255, 0.82);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card.is-featured .fees-price-value {
  color: #ffffff;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card.is-featured .fees-price-per {
  color: rgba(255, 255, 255, 0.65);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card.is-featured .fees-price-avail {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card.is-featured .fees-price-avail i {
  background: #c9a227;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-family: var(--body-font-family);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-badge svg {
  width: 10px;
  height: 10px;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(47, 85, 93, 0.16);
  margin-bottom: 12px;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-label {
  font-family: var(--heading-font-family);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  color: #212529;
  margin-bottom: 8px;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--heading-font-family);
  font-size: 34px;
  font-weight: 700;
  line-height: 0.95;
  color: #152124;
  margin-bottom: 12px;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-value .fees-currency {
  font-family: var(--body-font-family);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.8;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-per {
  font-family: var(--body-font-family);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;
  color: #8a968f;
  margin: 0;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-avail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(201, 162, 39, 0.14);
  color: #b8941f;
  font-family: var(--body-font-family);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-avail span {
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-avail i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8941f;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-included-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 600;
  color: #152124;
  margin-bottom: 14px;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-included-label img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-inclusions li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(47, 85, 93, 0.07);
  border: 1px solid rgba(47, 85, 93, 0.16);
  border-radius: 50px;
  font-family: var(--body-font-family);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #244349;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-inclusions img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
  flex-shrink: 0;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-cta {
  --btn-bg: linear-gradient(135deg, #244349, #2f555d);
  --btn-hover-bg: linear-gradient(135deg, #2f555d, #244349);
  width: 100%;
  min-height: 58px;
  padding: 12px 64px 12px 24px;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(36, 67, 73, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(36, 67, 73, 0.25);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-cta .btn-arrow {
  position: absolute;
  right: 10px;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 16px 0 0;
  font-family: var(--body-font-family);
  font-size: 12.5px;
  font-weight: 500;
  color: #8a968f;
  text-align: center;
}
.fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-guarantee svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .fees-section > .container > .fees-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .fees-section > .container > .fees-grid {
    gap: 20px;
  }
  .fees-section > .container > .fees-grid > .fees-dates-card {
    border-radius: 20px;
    padding: 22px 18px;
  }
  .fees-section > .container > .fees-grid > .fees-panel {
    border-radius: 20px;
    padding: 20px 16px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 575.98px) {
  .fees-section > .container > .fees-grid > .fees-dates-card > .fees-date-grid {
    gap: 8px;
  }
  .fees-section > .container > .fees-grid > .fees-dates-card > .fees-date-grid > .fees-date-card {
    gap: 0;
    padding: 11px 12px;
  }
  .fees-section > .container > .fees-grid > .fees-dates-card > .fees-date-grid > .fees-date-card > .fees-date-month {
    font-size: 13.5px;
  }
  .fees-section > .container > .fees-grid > .fees-dates-card > .fees-dates-top > .fees-dates-heading {
    gap: 11px;
  }
  .fees-section > .container > .fees-grid > .fees-dates-card > .fees-dates-top > .fees-dates-heading > .fees-dates-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
  .fees-section > .container > .fees-grid > .fees-dates-card > .fees-dates-top > .fees-dates-heading > .fees-dates-icon svg {
    width: 17px;
    height: 17px;
  }
  .fees-section > .container > .fees-grid > .fees-dates-card > .fees-dates-top > .fees-dates-heading > .fees-dates-title {
    font-size: 17px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-panel-heading {
    gap: 11px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-panel-heading > .fees-panel-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-panel-heading > .fees-panel-icon svg {
    width: 17px;
    height: 17px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-panel-heading > .fees-panel-title {
    font-size: 17px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-panel-heading {
    padding-bottom: 16px;
    margin-bottom: 18px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card {
    padding: 16px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    margin-bottom: 0;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-icon svg {
    width: 16px;
    height: 16px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-badge {
    top: auto;
    bottom: 16px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-label {
    margin-bottom: 6px;
    padding-right: 44px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-price-row > .fees-price-card .fees-price-value {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-inclusions {
    gap: 5px;
    margin-bottom: 20px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-inclusions li {
    padding: 6px 7px;
    gap: 5px;
    font-size: 12px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-cta {
    min-height: 50px;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-guarantee {
    margin-top: 12px;
    font-size: 11.5px;
    line-height: 1.5;
  }
  .fees-section > .container > .fees-grid > .fees-panel > .fees-panel-content > .fees-guarantee svg {
    display: none;
  }
}

.indian-price-row {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: rgba(47, 85, 93, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
}
.indian-price-row .price-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: 50%;
}
.indian-price-row .price-icon::before {
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  background: url("../img/icons/rupee.svg") center/contain no-repeat;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.indian-price-row .right-box {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.indian-price-row .right-box .indian-price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.indian-price-row .right-box .indian-price-value .indian-price-amount {
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: #152124;
  white-space: nowrap;
}
.indian-price-row .right-box .indian-price-value .indian-price-per {
  font-family: var(--body-font-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  color: #8a968f;
}
.indian-price-row .right-box .bottom-text {
  font-family: var(--body-font-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #8a968f;
}
.indian-price-row.alt-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.indian-price-row.alt-box .price-icon {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.35);
}
.indian-price-row.alt-box .right-box .indian-price-value .indian-price-amount {
  color: #ffffff;
}
.indian-price-row.alt-box .right-box .indian-price-value .indian-price-per {
  color: rgba(255, 255, 255, 0.7);
}
.indian-price-row.alt-box .right-box .bottom-text {
  color: rgba(255, 255, 255, 0.62);
}

.schedule-section .heading-wrap {
  max-width: 920px;
  margin-inline: auto;
}

.schedule-quote {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: clamp(14px, 15px + 0.4vw, 21px);
  font-style: italic;
  color: #212529;
  text-align: center;
}

.prog-card {
  max-width: 1060px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  border: 1px solid #e6e3da;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px -30px rgba(21, 33, 36, 0.18);
  background: linear-gradient(180deg, #fffefc 0%, #fff 16%, #fff 68%, #fffefa 92%);
}

.prog-chapters {
  list-style: none;
  margin: 0;
  padding: 0;
}

.prog-chapter {
  display: grid;
  grid-template-columns: clamp(150px, 17vw, 205px) 1fr;
  -moz-column-gap: clamp(18px, 2.5vw, 30px);
       column-gap: clamp(18px, 2.5vw, 30px);
  align-items: center;
  padding: clamp(18px, 2vw, 25px);
}
.prog-chapter + .prog-chapter {
  border-top: 1px solid #e6e3da;
}

.prog-rail {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 2px;
}

.prog-sky {
  --sky: #fdf3d8;
  --ground: #e7e2d2;
  --sun-x: 50%;
  --sun-y: 40%;
  position: relative;
  grid-row: 1/3;
  width: 48px;
  height: 48px;
  border: 1px solid #e6e3da;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky) 0 62%, var(--ground) 62% 100%);
}
.prog-sky::before {
  content: "";
  position: absolute;
  left: var(--sun-x);
  top: var(--sun-y);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8c65a, #c9a227);
  transform: translate(-50%, -50%);
}
.prog-sky::after {
  content: "";
  position: absolute;
  inset: 62% 0 0;
  background: var(--ground);
}

.prog-chapter--dawn .prog-sky {
  --sun-x: 28%;
  --sun-y: 62%;
}

.prog-chapter--morning .prog-sky {
  --sun-x: 38%;
  --sun-y: 44%;
}

.prog-chapter--midday .prog-sky {
  --sun-x: 50%;
  --sun-y: 26%;
}

.prog-chapter--afternoon .prog-sky {
  --sun-x: 62%;
  --sun-y: 40%;
}

.prog-chapter--evening .prog-sky {
  --sky: #f6e3c8;
  --sun-x: 74%;
  --sun-y: 60%;
}

.prog-chapter--night .prog-sky {
  --sky: #16302a;
  --ground: #0f231e;
  --sun-x: 56%;
  --sun-y: 34%;
  border-color: rgba(255, 255, 255, 0.14);
}
.prog-chapter--night .prog-sky::before {
  background: transparent;
  box-shadow: inset -5px 3px 0 0 #e3c862;
}

.prog-chapter-name {
  margin: 0;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  line-height: 1.1;
  color: #152124;
}

.prog-chapter-span {
  font-family: var(--body-font-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #8a968f;
}

.prog-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prog-row {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.prog-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  border-radius: 10px;
  background: rgba(47, 85, 93, 0.09);
}
.prog-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}

.prog-label {
  flex: 0 1 auto;
  min-width: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: #152124;
}

.prog-leader {
  flex: 1 1 16px;
  min-width: 16px;
  position: relative;
  top: 4px;
  margin: 0 12px;
  border-bottom: 2px dotted rgba(47, 85, 93, 0.4);
}

.prog-time {
  font-family: var(--body-font-family);
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
  color: #2f555d;
}

.prog-chapter--night {
  background: #244349;
}
.prog-chapter--night .prog-chapter-name {
  color: #ffffff;
}
.prog-chapter--night .prog-chapter-span {
  color: rgba(255, 255, 255, 0.55);
}
.prog-chapter--night .prog-icon {
  background: rgba(255, 255, 255, 0.12);
}
.prog-chapter--night .prog-icon img {
  filter: brightness(0) invert(1);
}
.prog-chapter--night .prog-label {
  color: #ffffff;
}
.prog-chapter--night .prog-leader {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}
.prog-chapter--night .prog-time {
  color: #a8cfbf;
}

.prog-chapter + .prog-chapter--night {
  border-top-color: rgba(201, 162, 39, 0.35);
}

.schedule-footnote {
  margin: clamp(16px, 2vw, 24px) 0 0;
  font-family: var(--body-font-family);
  font-size: 13px;
  font-style: italic;
  color: #8a968f;
  text-align: center;
}

@media (max-width: 991.98px) {
  .prog-chapter {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .prog-sky {
    width: 40px;
    height: 40px;
  }
  .prog-chapter-name {
    font-size: 19px;
  }
}
@media (max-width: 575.98px) {
  .prog-card {
    border-radius: 20px;
  }
  .prog-chapter {
    padding: 20px 18px;
    row-gap: 12px;
  }
  .prog-row {
    min-height: 34px;
  }
  .prog-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
  .prog-icon svg {
    width: 14px;
    height: 14px;
  }
  .prog-label {
    font-size: 14px;
  }
  .prog-time {
    font-size: 12px;
  }
  .prog-leader {
    margin: 0 10px;
  }
}
.vedic-schedule-section .schedule {
  max-width: 920px;
  margin: 0 auto;
}
.vedic-schedule-section .day-rail {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #e6e3da transparent;
}
.vedic-schedule-section .day-rail::-webkit-scrollbar {
  height: 5px;
}
.vedic-schedule-section .day-rail::-webkit-scrollbar-thumb {
  background: #e6e3da;
  border-radius: 10px;
}
.vedic-schedule-section .day-tab {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px 2px;
  border: none;
  background: none;
  color: #8a968f;
  cursor: pointer;
  font-family: var(--body-font-family);
}
.vedic-schedule-section .day-tab__disc {
  width: 44px;
  height: 44px;
  border: 1.5px solid #e6e3da;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #2f555d;
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.vedic-schedule-section .day-tab__label {
  font-family: var(--font-family-style4);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.vedic-schedule-section .day-tab:hover .day-tab__disc {
  border-color: #c9a227;
  color: #244349;
}
.vedic-schedule-section .day-tab.is-active .day-tab__disc {
  background: #c9a227;
  border-color: #c9a227;
  color: #244349;
  transform: translateY(-2px);
}
.vedic-schedule-section .day-tab.is-active .day-tab__label {
  color: #244349;
  opacity: 1;
}
.vedic-schedule-section .day-panel {
  margin-top: 28px;
  padding: 40px clamp(20px, 4vw, 48px) 12px;
  border: 1px solid #e6e3da;
  border-radius: 6px;
  background: #ffffff;
}
.vedic-schedule-section .day-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e6e3da;
}
.vedic-schedule-section .day-panel__number {
  color: #b8941f;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.vedic-schedule-section .day-panel__title {
  margin: 2px 0 0;
  color: #152124;
  font-family: var(--heading-font-family);
  font-size: 24px;
  font-weight: 600;
}
.vedic-schedule-section .period {
  padding: 26px 0 4px;
}
.vedic-schedule-section .period + .vedic-schedule-section .period {
  border-top: 1px dashed #e6e3da;
}
.vedic-schedule-section .period__label {
  margin: 0 0 18px;
  color: #2f555d;
  font-family: var(--font-family-style4);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.vedic-schedule-section .timeline {
  position: relative;
  margin: 0;
  padding-left: 26px;
}
.vedic-schedule-section .timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #e6e3da;
}
.vedic-schedule-section .event {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 18px;
  padding: 9px 0;
}
.vedic-schedule-section .event::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 16px;
  width: 9px;
  height: 9px;
  border: 2px solid #c9a227;
  border-radius: 50%;
  background: #ffffff;
}
.vedic-schedule-section .event__time {
  flex: 0 0 auto;
  width: 132px;
  color: #8a968f;
  font-family: var(--font-family-style4);
  font-size: 12.5px;
  letter-spacing: 0.03em;
}
.vedic-schedule-section .event__title {
  flex: 1 1 220px;
  color: #212529;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.45;
}
.vedic-schedule-section .event--quiet .event__title {
  color: #8a968f;
  font-style: italic;
  font-weight: 400;
}
.vedic-schedule-section .event--quiet::before {
  border-color: #e6e3da;
}
.vedic-schedule-section .event--rest::before {
  border-color: #2f555d;
  background: #2f555d;
}
.vedic-schedule-section .event--rest .event__title {
  color: #2f555d;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .vedic-schedule-section .day-panel {
    padding-top: 34px;
  }
}
@media (max-width: 575.98px) {
  .vedic-schedule-section .day-panel {
    padding: 28px 18px 8px;
  }
  .vedic-schedule-section .event {
    gap: 4px;
  }
  .vedic-schedule-section .event__time {
    width: 100%;
  }
}

.course-overview .heading-wrap {
  margin-left: auto;
  margin-right: auto;
}
.course-overview .course-overview-copy {
  max-width: 900px;
  margin: clamp(26px, 3vw, 42px) auto 0;
  text-align: left;
}
.course-overview .course-overview-copy .para + .para {
  margin-top: 15px;
}
.course-overview .overview-alt {
  display: grid;
  gap: clamp(52px, 7vw, 104px);
  margin-top: clamp(34px, 4vw, 60px);
  text-align: left;
}
.course-overview .overview-alt-row {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.course-overview .overview-alt-row--flip {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}
.course-overview .overview-alt-row--flip .overview-alt-media {
  grid-column: 2;
  grid-row: 1;
}
.course-overview .overview-alt-row--flip .overview-alt-text {
  grid-column: 1;
  grid-row: 1;
}
.course-overview .overview-alt-row .overview-alt-subjects {
  grid-column: 1/-1;
}
.course-overview .overview-alt-row .overview-alt-subjects .para {
  margin-bottom: clamp(16px, 2vw, 22px);
}
@media (max-width: 767.98px) {
  .course-overview .overview-alt-row {
    gap: 22px;
  }
  .course-overview .overview-alt-row, .course-overview .overview-alt-row--flip {
    grid-template-columns: minmax(0, 1fr);
  }
  .course-overview .overview-alt-row--flip .overview-alt-media, .course-overview .overview-alt-row--flip .overview-alt-text {
    grid-column: 1;
    grid-row: auto;
  }
  .course-overview .overview-alt-row .overview-alt-media {
    order: -1;
  }
}
.course-overview .overview-alt-media {
  position: relative;
  padding: 13px;
}
.course-overview .overview-alt-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 150px 150px 24px 24px;
}
.course-overview .overview-alt-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 162px 162px 30px 30px;
}
.course-overview .overview-alt-media::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 2;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  background: linear-gradient(135deg, #ffa64d, #c9a227);
}
@media (max-width: 575.98px) {
  .course-overview .overview-alt-media {
    padding: 9px;
  }
  .course-overview .overview-alt-media img {
    border-radius: 96px 96px 18px 18px;
  }
  .course-overview .overview-alt-media::before {
    border-radius: 105px 105px 22px 22px;
  }
}
.course-overview .overview-alt-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(12px, 1.4vw, 18px);
}
.course-overview .overview-alt-step {
  font-family: var(--font-family-style3);
  font-size: clamp(2.2rem, 3.4vw, 3.1rem);
  line-height: 0.9;
  color: rgba(201, 162, 39, 0.38);
}
.course-overview .overview-alt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2f555d;
}
.course-overview .overview-alt-kicker::before {
  content: "";
  width: clamp(20px, 2.4vw, 34px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffa64d, #c9a227);
}
.course-overview .overview-alt-text .para + .para {
  margin-top: 15px;
}
.course-overview .overview-alt-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991.98px) {
  .course-overview .overview-alt-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .course-overview .overview-alt-list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.course-overview .overview-alt-list li {
  position: relative;
  padding: 13px 15px 13px 32px;
  line-height: 1.5;
  color: #212529;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(230, 227, 218, 0.9);
  border-radius: 14px;
}
.course-overview .overview-alt-list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa64d, #c9a227);
}
.course-overview .overview-alt-list strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--heading-font-family);
  font-weight: 600;
  color: #152124;
}

.learn-section .learn-head {
  display: grid;
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
}
@media (min-width: 860px) {
  .learn-section .learn-head {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  }
}
.learn-section .heading-wrap {
  margin-bottom: 0;
}
@media (min-width: 860px) {
  .learn-section .learn-head-note {
    padding-left: clamp(22px, 2.4vw, 34px);
    border-left: 1px solid #e6e3da;
  }
}
@media (max-width: 859.98px) {
  .learn-section .learn-head-note {
    padding-top: 20px;
    border-top: 1px solid #e6e3da;
  }
}
.learn-section .learn-intro {
  max-width: 900px;
  margin-top: clamp(26px, 3vw, 40px);
}
.learn-section .learn-part {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 18px);
  margin-top: clamp(40px, 5vw, 70px);
  padding-bottom: clamp(18px, 2.4vw, 30px);
}
@media (max-width: 575.98px) {
  .learn-section .learn-part {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
.learn-section .learn-part-num {
  flex: none;
  font-style: italic;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  color: #2f555d;
}
.learn-section .learn-part-txt {
  flex: none;
  font-size: clamp(10px, 9px + 0.2vw, 12px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #152124;
}
@media (max-width: 575.98px) {
  .learn-section .learn-part-txt {
    flex: 1 1 auto;
    min-width: 0;
    letter-spacing: 0.14em;
    white-space: normal;
  }
}
.learn-section .learn-part-rule {
  flex: 1 1 auto;
  height: 1px;
  background: #e6e3da;
}
@media (max-width: 575.98px) {
  .learn-section .learn-part-rule {
    flex-basis: 100%;
  }
}
.learn-section .learn-pillars {
  margin: 0;
  padding: 0;
  list-style: none;
}
.learn-section .learn-pillar {
  display: grid;
  grid-template-columns: clamp(70px, 8vw, 118px) minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(30px, 3.6vw, 52px) 0;
  border-bottom: 1px solid #e6e3da;
}
.learn-section .learn-pillar:last-child {
  border-bottom: 0;
}
@media (max-width: 859.98px) {
  .learn-section .learn-pillar {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
}
.learn-section .learn-pillar-index {
  font-family: var(--font-family-style3);
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.2rem);
  line-height: 1;
  color: rgba(201, 162, 39, 0.55);
}
.learn-section .learn-pillar:nth-child(even) .learn-pillar-index {
  color: rgba(47, 85, 93, 0.42);
}
.learn-section .learn-pillar-title {
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.7rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #152124;
}
.learn-section .learn-pillar-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f555d;
  background: #f5f2ea;
  border: 1px solid #e6e3da;
  border-radius: 50px;
}
.learn-section .learn-pillar-body p {
  margin: 0;
}
.learn-section .learn-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(14px, 4vw, 56px) clamp(14px, 3.4vw, 50px);
  background: #f5f3ef;
  border: 1px solid #e6e3da;
  border-radius: clamp(20px, 2.4vw, 28px);
}
.learn-section .learn-panel::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid #e6e3da;
  border-radius: 50%;
  pointer-events: none;
}
.learn-section .learn-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 40px);
  margin-bottom: clamp(26px, 3.4vw, 48px);
}
.learn-section .learn-panel-head .learn-panel-title {
  max-width: 520px;
  font-size: clamp(1.25rem, 1.1rem + 1.1vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  color: #244349;
}
.learn-section .learn-panel-head p {
  max-width: 380px;
  margin: 0;
}
.learn-section .learn-teach {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767.98px) {
  .learn-section .learn-teach {
    grid-template-columns: minmax(0, 1fr);
  }
}
.learn-section .learn-teach-card {
  --learn-pattern: clamp(190px, 38vw, 300px);
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2.6vw, 34px) clamp(16px, 2.2vw, 30px);
  background: linear-gradient(170deg, #ffffff 0%, #ffffff 62%, #fdfaf3 100%);
  border: 1px solid #e6e3da;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.learn-section .learn-teach-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, #2f555d, #244349);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.learn-section .learn-teach-card::after {
  content: "";
  position: absolute;
  top: calc(var(--learn-pattern) / -2);
  right: calc(var(--learn-pattern) / -2);
  width: var(--learn-pattern);
  aspect-ratio: 1;
  background: url("../img/mask-pattern/surya-chakara.webp") center/contain no-repeat;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.learn-section .learn-teach-card > * {
  position: relative;
  z-index: 1;
}
.learn-section .learn-teach-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 85, 93, 0.45);
  box-shadow: 0 26px 50px -28px rgba(21, 33, 36, 0.42);
}
.learn-section .learn-teach-card:hover::before {
  transform: scaleY(1);
}
.learn-section .learn-teach-card:hover::after {
  opacity: 0.18;
}
.learn-section .learn-teach-card:hover .learn-teach-icon {
  background: linear-gradient(135deg, #2f555d, #244349);
}
.learn-section .learn-teach-card:hover .learn-teach-icon img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(18%) hue-rotate(171deg) brightness(106%) contrast(100%);
}
.learn-section .learn-teach-top {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 16px);
  margin-bottom: clamp(16px, 2vw, 22px);
}
.learn-section .learn-teach-num {
  font-family: var(--font-family-style3);
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.8rem);
  line-height: 1;
  color: rgba(201, 162, 39, 0.62);
}
.learn-section .learn-teach-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(48px, 4.4vw, 58px);
  height: clamp(48px, 4.4vw, 58px);
  background: rgba(47, 85, 93, 0.12);
  border-radius: 50%;
  transition: background 0.3s ease;
}
.learn-section .learn-teach-icon img {
  width: clamp(24px, 2.2vw, 29px);
  height: clamp(24px, 2.2vw, 29px);
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
  transition: filter 0.3s ease;
}
.learn-section .learn-teach-title {
  margin-bottom: clamp(12px, 1.4vw, 16px);
  font-family: var(--heading-font-family);
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  color: #152124;
}
.learn-section .learn-teach-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: clamp(10px, 1.2vw, 14px);
  border-radius: 2px;
  background: linear-gradient(90deg, #2f555d, rgba(47, 85, 93, 0.35));
}
.learn-section .learn-teach-card p {
  margin: 0;
}
.learn-section .learn-points {
  margin-top: clamp(12px, 1.4vw, 16px);
}
.learn-section .learn-points li {
  position: relative;
  padding-left: 22px;
}
.learn-section .learn-points li + li {
  margin-top: 6px;
}
.learn-section .learn-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa64d, #c9a227);
}

.course-fit {
  background: radial-gradient(ellipse 72% 62% at 50% 52%, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.055) 44%, rgba(201, 162, 39, 0) 78%);
}
.course-fit .heading-wrap {
  margin-left: auto;
  margin-right: auto;
}
.course-fit .course-fit-orbit {
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  margin: clamp(30px, 4vw, 48px) 0 0;
  padding: 0;
  list-style: none;
}
.course-fit .course-fit-orbit::before {
  content: "";
  display: block;
  order: 1;
  width: min(100%, 320px);
  margin-inline: auto;
  aspect-ratio: 576/568;
  background: url("../img/perference-circle.webp") center/contain no-repeat;
  animation: fitOrbitSpin 60s linear infinite;
}
.course-fit .course-fit-orbit .course-fit-node:nth-child(n+3) {
  order: 2;
}
@media (min-width: 992px) {
  .course-fit .course-fit-orbit {
    grid-template-columns: minmax(0, 1fr) clamp(250px, 27vw, 400px) minmax(0, 1fr);
    align-items: center;
    -moz-column-gap: clamp(18px, 2.6vw, 44px);
         column-gap: clamp(18px, 2.6vw, 44px);
    row-gap: clamp(34px, 4vw, 60px);
  }
  .course-fit .course-fit-orbit::before {
    grid-column: 2;
    grid-row: 1/3;
    justify-self: center;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .course-fit .course-fit-orbit .course-fit-node:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .course-fit .course-fit-orbit .course-fit-node:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
  .course-fit .course-fit-orbit .course-fit-node:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .course-fit .course-fit-orbit .course-fit-node:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }
  .course-fit .course-fit-orbit .course-fit-node:nth-child(5) {
    grid-column: 1/-1;
    grid-row: 3;
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }
  .course-fit .course-fit-orbit .course-fit-node:nth-child(odd):not(:nth-child(5)) {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .course-fit .course-fit-orbit.course-fit-orbit--seven::before {
    grid-row: 1/4;
  }
  .course-fit .course-fit-orbit.course-fit-orbit--seven .course-fit-node:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
    max-width: none;
    margin-inline: 0;
    text-align: right;
  }
  .course-fit .course-fit-orbit.course-fit-orbit--seven .course-fit-node:nth-child(6) {
    grid-column: 3;
    grid-row: 3;
  }
  .course-fit .course-fit-orbit.course-fit-orbit--seven .course-fit-node:nth-child(7) {
    grid-column: 1/-1;
    grid-row: 4;
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }
}
.course-fit .course-fit-node p {
  margin: 0;
}
.course-fit .course-fit-title {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: #152124;
  margin-bottom: 10px;
}
@keyframes fitOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .course-fit .course-fit-orbit::before {
    animation: none;
  }
}
.course-fit .course-fit-lead {
  max-width: 760px;
  margin: clamp(22px, 2.6vw, 32px) auto 0;
  font-weight: 500;
  text-align: center;
  color: #152124;
}
.course-fit .course-fit-lead + .course-fit-grid {
  margin-top: clamp(20px, 2.4vw, 30px);
}
.course-fit .course-fit-intro {
  max-width: 900px;
  margin: clamp(24px, 3vw, 38px) auto 0;
  text-align: left;
}
@media (min-width: 992px) {
  .course-fit .course-fit-intro {
    text-align: center;
  }
}
.course-fit .course-fit-points {
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(100%, 760px);
  margin: clamp(12px, 1.4vw, 16px) 0 0;
  text-align: left;
}
@media (min-width: 992px) {
  .course-fit .course-fit-points {
    margin-inline: auto;
  }
}
.course-fit .course-fit-points li {
  position: relative;
  padding-left: 22px;
}
.course-fit .course-fit-points li + li {
  margin-top: 6px;
}
.course-fit .course-fit-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa64d, #c9a227);
}
.course-fit .course-fit-points + .para {
  margin-top: clamp(18px, 2.2vw, 26px);
}
.course-fit .course-fit-note {
  max-width: 900px;
  margin: clamp(28px, 3.5vw, 46px) auto 0;
  text-align: left;
}
.course-fit .course-fit-note .para + .para {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .course-fit .course-fit-note {
    text-align: center;
  }
}
.course-fit .course-fit-close {
  font-family: var(--heading-font-family);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  font-weight: 600;
  color: #2f555d;
}

.why-split .why-split-grid {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
}
@media (min-width: 992px) {
  .why-split .why-split-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(40px, 5vw, 88px);
    align-items: start;
  }
}
@media (min-width: 992px) {
  .why-split .why-split-aside-inner {
    position: sticky;
    top: clamp(96px, 12vh, 130px);
  }
}
.why-split .heading-sub-title {
  display: inline-block;
  margin-bottom: clamp(10px, 1.6vw, 16px);
}
.why-split .common-heading {
  margin-bottom: clamp(14px, 1.8vw, 20px);
}
.why-split .common-heading::after {
  display: none;
}
.why-split .why-split-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  margin: clamp(22px, 2.6vw, 32px) 0 0;
  padding: clamp(18px, 2vw, 24px) 0 0;
  border-top: 1px solid #e6e3da;
}
@media (max-width: 575.98px) {
  .why-split .why-split-stats {
    gap: 14px;
  }
}
.why-split .why-split-stat dt {
  font-family: var(--heading-font-family);
  font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.85rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2f555d;
}
.why-split .why-split-stat dd {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #8a968f;
}
.why-split .why-split-list {
  counter-reset: whyItem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-split .why-split-item {
  position: relative;
  padding: clamp(22px, 2.4vw, 30px) 0 clamp(22px, 2.4vw, 30px) clamp(44px, 4.4vw, 66px);
  border-bottom: 1px solid #e6e3da;
}
.why-split .why-split-item:first-child {
  padding-top: 0;
}
.why-split .why-split-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.why-split .why-split-item::before {
  counter-increment: whyItem;
  content: counter(whyItem, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: clamp(22px, 2.4vw, 30px);
  font-family: var(--font-family-style3);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  line-height: 1;
  color: rgba(201, 162, 39, 0.55);
}
.why-split .why-split-item:first-child::before {
  top: 0;
}
.why-split .why-split-item p {
  margin: 0;
  color: #8a968f;
  line-height: 1.75;
}
.why-split .why-split-title {
  font-family: var(--heading-font-family);
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #152124;
}
.why-split .why-split-note {
  max-width: 900px;
  margin: clamp(34px, 4vw, 56px) auto 0;
  text-align: center;
}

.why-ryk-simple .heading-wrap {
  margin-left: auto;
  margin-right: auto;
}
.why-ryk-simple .why-ryk-grid {
  margin-top: clamp(34px, 4vw, 56px);
  padding: 0;
  list-style: none;
}
.why-ryk-simple .why-ryk-card-title {
  margin-bottom: 10px;
}
.why-ryk-simple .why-ryk-card:nth-child(6) {
  transform: rotate(1.2deg);
  border-bottom: 4px solid #e2c07a;
}
.why-ryk-simple .why-ryk-card p {
  margin: 0;
  color: #8a968f;
  line-height: 1.7;
}
.why-ryk-simple .course-fit-note {
  max-width: 900px;
  margin: clamp(28px, 3.5vw, 46px) auto 0;
  text-align: center;
}

.campus-section {
  position: relative;
  overflow: clip;
  padding: clamp(54px, 7vw, 100px) 0;
  background: #244349;
  color: #f5f2ea;
}
.campus-section .container {
  position: relative;
  z-index: 1;
}
.campus-section .campus-glow {
  position: absolute;
  top: -16%;
  right: -8%;
  z-index: 0;
  width: clamp(300px, 42vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(47, 85, 93, 0.6);
  filter: blur(90px);
  pointer-events: none;
}
.campus-section .campus-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(20px, 2.6vw, 34px);
  padding: 6px 14px;
  font-family: var(--font-family-style4);
  font-size: clamp(11px, 10px + 0.2vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a227;
  border: 1px solid #b8941f;
  border-radius: 2px;
}
.campus-section .campus-tag::before {
  content: "✦";
  font-size: 0.85em;
  line-height: 1;
}
.campus-section .campus-title {
  margin-bottom: clamp(30px, 3.6vw, 44px);
  font-size: clamp(30px, 5.4vw, 80px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.campus-section .campus-title em {
  font-style: italic;
  color: #c9a227;
}
@media (max-width: 575.98px) {
  .campus-section .campus-title br {
    display: none;
  }
}
.campus-section .campus-note {
  display: grid;
  gap: clamp(8px, 1.4vw, 24px);
  margin-bottom: clamp(46px, 6vw, 80px);
  padding-top: clamp(20px, 2.4vw, 26px);
  border-top: 1px solid rgba(245, 242, 234, 0.14);
}
@media (min-width: 768px) {
  .campus-section .campus-note {
    grid-template-columns: 90px minmax(0, 1fr);
  }
}
.campus-section .campus-note .para {
  max-width: 62ch;
}
.campus-section .campus-note-idx {
  font-family: var(--font-family-style4);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a968f;
}
.campus-section .campus-split {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 992px) {
  .campus-section .campus-split {
    grid-template-columns: clamp(210px, 20vw, 260px) minmax(0, 1fr);
  }
}
@media (min-width: 992px) {
  .campus-section .campus-facts {
    padding-left: clamp(18px, 2vw, 26px);
    border-left: 1px solid rgba(245, 242, 234, 0.14);
  }
}
@media (max-width: 991.98px) {
  .campus-section .campus-facts {
    padding-top: clamp(18px, 2.2vw, 24px);
    border-top: 1px solid rgba(245, 242, 234, 0.14);
  }
}
.campus-section .campus-facts-title {
  margin-bottom: clamp(16px, 2vw, 26px);
  font-family: var(--font-family-style4);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a968f;
}
.campus-section .campus-facts-list {
  margin: 0;
}
@media (max-width: 991.98px) {
  .campus-section .campus-facts-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: clamp(18px, 3vw, 32px);
         column-gap: clamp(18px, 3vw, 32px);
  }
}
@media (max-width: 479.98px) {
  .campus-section .campus-facts-list {
    grid-template-columns: minmax(0, 1fr);
  }
}
.campus-section .campus-fact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: clamp(13px, 1.6vw, 17px) 0;
  border-bottom: 1px solid rgba(245, 242, 234, 0.12);
}
.campus-section .campus-fact-val {
  font-family: var(--heading-font-family);
  font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: #c9a227;
}
.campus-section .campus-fact-label {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  text-align: right;
  color: rgba(245, 242, 234, 0.72);
}
.campus-section .campus-strip-wrap {
  position: relative;
  min-width: 0;
}
.campus-section .campus-sprockets {
  display: block;
  height: 10px;
  background-image: repeating-linear-gradient(90deg, #2f555d 0 10px, transparent 10px 24px);
  border-radius: 2px;
  opacity: 0.38;
}
.campus-section .campus-strip {
  --frame-h: clamp(230px, 26vw, 350px);
  --frame-gap: clamp(10px, 1.1vw, 18px);
  display: flex;
  gap: var(--frame-gap);
  margin: 12px 0;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.campus-section .campus-strip::-webkit-scrollbar {
  display: none;
}
.campus-section .campus-frame {
  flex: none;
  height: var(--frame-h);
  aspect-ratio: 4/3;
  border: 1px solid rgba(47, 85, 93, 0.65);
  background: #244349;
}
.campus-section .campus-frame--tall {
  aspect-ratio: 3/4;
}
.campus-section .campus-frame-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  background: none;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
}
.campus-section .campus-frame-btn img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: sepia(0.12) saturate(0.9) contrast(1.03) brightness(0.94);
  transition: filter 0.5s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.campus-section .campus-frame-btn:focus-visible {
  outline: 2px solid #c9a227;
  outline-offset: -4px;
}
.campus-section .campus-frame-btn:hover img, .campus-section .campus-frame-btn:focus-visible img {
  filter: none;
  transform: scale(1.04);
}
.campus-section .campus-frame-btn:hover .campus-frame-zoom, .campus-section .campus-frame-btn:focus-visible .campus-frame-zoom {
  opacity: 1;
  transform: none;
}
.campus-section .campus-frame-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #244349;
  background: rgba(245, 242, 234, 0.92);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.campus-section .campus-frame-zoom svg {
  width: 15px;
  height: 15px;
}
.campus-section .campus-frame-num {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  font-family: var(--font-family-style4);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: rgba(36, 67, 73, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.5);
}
.campus-section .campus-frame-cap {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 14px 10px;
  font-family: var(--heading-font-family);
  font-size: 12.5px;
  line-height: 1.4;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(36, 67, 73, 0) 0%, rgba(21, 33, 36, 0.88) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .campus-section .campus-frame:hover img {
    transform: none;
  }
}

.cta-section {
  position: relative;
  overflow: clip;
  padding: clamp(60px, 8vw, 110px) 0 clamp(54px, 7vw, 100px);
  background: radial-gradient(1100px 500px at 50% -10%, rgba(201, 162, 39, 0.16), transparent 60%), #244349;
  color: rgba(245, 242, 234, 0.78);
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 50% 120%, transparent 0 60px, rgba(245, 242, 234, 0.035) 61px 62px);
  pointer-events: none;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section .cta-media {
  display: none;
}
@media (min-width: 1400px) {
  .cta-section .cta-media {
    position: absolute;
    inset: 0;
    display: block;
    width: min(100%, 1600px);
    margin-inline: auto;
    pointer-events: none;
    z-index: 0;
  }
}
.cta-section .cta-media-col {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(280px, 23vw, 400px);
}
.cta-section .cta-media-col--left {
  left: 0;
}
.cta-section .cta-media-col--right {
  right: 0;
}
.cta-section .cta-media-card {
  --film-band: clamp(12px, 1.1vw, 17px);
  position: absolute;
  margin: 0;
  aspect-ratio: 4/3;
  padding: var(--film-band) 0;
  overflow: hidden;
  background: #f5f2ea;
  border-radius: clamp(4px, 0.5vw, 7px);
  box-shadow: 0 30px 55px -26px rgba(0, 0, 0, 0.7);
}
.cta-section .cta-media-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-section .cta-media-card::before, .cta-section .cta-media-card::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  z-index: 1;
  height: 5px;
  background-image: repeating-linear-gradient(90deg, rgba(36, 67, 73, 0.5) 0 7px, transparent 7px 15px);
  border-radius: 1px;
}
.cta-section .cta-media-card::before {
  top: calc((var(--film-band) - 5px) / 2);
}
.cta-section .cta-media-card::after {
  bottom: calc((var(--film-band) - 5px) / 2);
}
.cta-section .cta-media-card {
  width: auto;
}
.cta-section .cta-media-card:nth-child(1) {
  top: 3%;
  height: 30%;
  transform: rotate(-5deg);
}
.cta-section .cta-media-card:nth-child(2) {
  top: 31%;
  height: 34%;
  transform: rotate(3deg);
}
.cta-section .cta-media-card:nth-child(3) {
  top: 62%;
  height: 31%;
  transform: rotate(-2.5deg);
}
.cta-section .cta-media-col--left .cta-media-card:nth-child(1) {
  left: -18%;
}
.cta-section .cta-media-col--left .cta-media-card:nth-child(2) {
  left: 26%;
}
.cta-section .cta-media-col--left .cta-media-card:nth-child(3) {
  left: -4%;
}
.cta-section .cta-media-col--right .cta-media-card:nth-child(1) {
  right: -18%;
  transform: rotate(5deg);
}
.cta-section .cta-media-col--right .cta-media-card:nth-child(2) {
  right: 26%;
  transform: rotate(-3deg);
}
.cta-section .cta-media-col--right .cta-media-card:nth-child(3) {
  right: -4%;
  transform: rotate(2.5deg);
}
.cta-section .cta-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.cta-section .cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 14px);
  margin-bottom: clamp(20px, 2.6vw, 32px);
  font-family: var(--font-family-style4);
  font-size: clamp(11px, 10px + 0.2vw, 12.5px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.82);
}
.cta-section .cta-kicker::before, .cta-section .cta-kicker::after {
  content: "";
  width: clamp(18px, 2.2vw, 30px);
  height: 1px;
  background: rgba(201, 162, 39, 0.7);
}
.cta-section .cta-title {
  margin-bottom: clamp(12px, 1.6vw, 18px);
  font-family: var(--heading-font-family);
  font-size: clamp(1.85rem, 1.3rem + 2.4vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.cta-section .cta-title span {
  color: #c9a227;
}
.cta-section .cta-sub {
  max-width: 56ch;
  color: rgba(245, 242, 234, 0.92);
  margin: 0 auto clamp(28px, 3.4vw, 42px);
}
.cta-section .cta-wa {
  display: inline-flex;
  align-items: center;
  gap: clamp(13px, 1.4vw, 17px);
  min-width: min(100%, 360px);
  padding: 11px 13px 11px 11px;
  text-align: left;
  background: linear-gradient(135deg, #2be08f 0%, #1da362 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  box-shadow: 0 18px 38px -14px rgba(29, 163, 98, 0.75), 0 0 0 4px rgba(43, 224, 143, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.cta-section .cta-wa:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #33ea98 0%, #1fae69 100%);
  box-shadow: 0 22px 44px -14px rgba(29, 163, 98, 0.85), 0 0 0 4px rgba(43, 224, 143, 0.18);
}
.cta-section .cta-wa:focus-visible {
  outline: 2px solid #c9a227;
  outline-offset: 3px;
}
.cta-section .cta-wa-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #1da362;
  background: #ffffff;
  border-radius: 50%;
}
.cta-section .cta-wa-icon::after {
  content: "";
  width: 36px;
  height: 36px;
  background: currentColor;
  -webkit-mask: url("../img/icons/whatsapp.svg") center/contain no-repeat;
  mask: url("../img/icons/whatsapp.svg") center/contain no-repeat;
}
.cta-section .cta-wa-label {
  display: block;
  font-family: var(--body-font-family);
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
.cta-section .cta-wa-sub {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}
.cta-section .cta-wa-text {
  flex: 1 1 auto;
}
.cta-section .cta-wa-arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: rgba(245, 242, 234, 0.1);
  border: 1px solid rgba(245, 242, 234, 0.16);
  border-radius: 50%;
  transition: translate 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.cta-section .cta-wa-arrow::after {
  content: "";
  width: 15px;
  height: 15px;
  background: rgba(245, 242, 234, 0.8);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E") center/contain no-repeat;
}
.cta-section .cta-wa:hover .cta-wa-arrow {
  translate: 2px -2px;
  background: rgba(245, 242, 234, 0.18);
  border-color: rgba(245, 242, 234, 0.3);
}
.cta-section .cta-promise {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: clamp(22px, 2.8vw, 32px);
  padding-bottom: 9px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.4px;
  color: rgba(245, 242, 234, 0.95);
}
.cta-section .cta-promise svg {
  flex: none;
  width: 15px;
  height: 15px;
  color: #fff;
}
@media (max-width: 575.98px) {
  .cta-section .cta-wa {
    min-width: 0;
    max-width: 100%;
    padding-right: 14px;
    gap: 12px;
  }
  .cta-section .cta-wa-text {
    flex: 0 1 auto;
  }
  .cta-section .cta-promise {
    align-items: flex-start;
    font-size: 12px;
  }
  .cta-section .cta-promise svg {
    margin-top: 2px;
  }
}

.reach-section .heading-wrap {
  margin-left: auto;
  margin-right: auto;
}
.reach-section .common-heading em {
  font-style: normal;
  color: #2f555d;
}
.reach-section .reach-sub {
  max-width: 56ch;
  margin: clamp(12px, 1.6vw, 18px) auto 0;
}
.reach-section .reach-route {
  position: relative;
  overflow: hidden;
  margin-top: clamp(34px, 4vw, 56px);
  padding: clamp(26px, 3.4vw, 46px) clamp(18px, 2.6vw, 40px) clamp(22px, 2.6vw, 34px);
  background-color: #244349;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(18px, 2vw, 24px);
}
.reach-section .reach-route::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(21, 33, 36, 0.84) 0%, rgba(21, 33, 36, 0.6) 42%, rgba(21, 33, 36, 0.54) 70%, rgba(21, 33, 36, 0.68) 100%), url("../img/how-to-reach.webp") center bottom/cover no-repeat;
  pointer-events: none;
}
.reach-section .reach-canvas {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(30px, 3.4vw, 46px);
}
.reach-section .reach-svg {
  display: block;
  width: 100%;
  height: auto;
}
.reach-section .reach-nodes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.reach-section .reach-node {
  --badge: clamp(46px, 4.8vw, 62px);
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, calc(var(--badge) / -2));
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
.reach-section .reach-node--pin {
  --badge: clamp(66px, 6.8vw, 88px);
}
.reach-section .reach-node-badge {
  display: grid;
  place-items: center;
  width: var(--badge);
  height: var(--badge);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.reach-section .reach-node-badge img {
  width: 62%;
  height: 62%;
  -o-object-fit: contain;
     object-fit: contain;
}
.reach-section .reach-lane {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-dasharray: 1 9;
  stroke-linecap: round;
  opacity: 0.8;
}
.reach-section .reach-node-name {
  margin-top: clamp(7px, 0.9vw, 10px);
  font-family: var(--heading-font-family);
  font-size: clamp(12px, 1.05vw, 14.5px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
.reach-section .reach-node-tag {
  margin-top: 2px;
  font-family: var(--font-family-style4);
  font-size: clamp(9.5px, 0.78vw, 11px);
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: rgba(245, 242, 234, 0.92);
}
.reach-section .reach-node--pin .reach-node-badge {
  animation: reachPinBob 2.6s ease-in-out infinite;
}
.reach-section .reach-mover {
  offset-rotate: auto;
  filter: drop-shadow(0 3px 6px rgba(21, 33, 36, 0.45));
}
.reach-section .reach-mover--air {
  offset-path: path("M 60 55 C 320 15, 640 15, 1020 118");
  animation: reachRun 7s linear infinite;
}
.reach-section .reach-mover--rail {
  offset-path: path("M 60 168 C 320 168, 640 150, 1020 118");
  animation: reachRun 9s linear infinite 0.8s;
}
.reach-section .reach-mover--road {
  offset-path: path("M 60 278 C 320 258, 640 200, 1020 118");
  animation: reachRun 10s linear infinite;
}
.reach-section .reach-mover--road-late {
  offset-path: path("M 60 278 C 320 258, 640 200, 1020 118");
  animation: reachRun 10s linear infinite 5.2s;
}
@keyframes reachRun {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  93% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
@keyframes reachPinBob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reach-section .reach-mover {
    display: none;
  }
  .reach-section .reach-node--pin .reach-node-badge {
    animation: none;
  }
}
.reach-section .reach-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: clamp(14px, 1.8vw, 20px);
}
.reach-section .reach-modes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
  margin: clamp(46px, 5vw, 70px) 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1199.98px) {
  .reach-section .reach-modes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(30px, 4vw, 44px) clamp(16px, 2vw, 24px);
  }
}
@media (max-width: 575.98px) {
  .reach-section .reach-modes {
    grid-template-columns: minmax(0, 1fr);
  }
}
.reach-section .reach-ticket {
  --badge: clamp(64px, 5.6vw, 78px);
  position: relative;
  padding: calc(var(--badge) / 2 + clamp(20px, 2.2vw, 28px)) clamp(20px, 2vw, 26px) clamp(24px, 2.4vw, 30px);
  background: linear-gradient(170deg, #ffffff 0%, #ffffff 46%, #f5f2ea 100%);
  border: 1px solid #e6e3da;
  border-radius: clamp(12px, 1.2vw, 16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.reach-section .reach-ticket::after {
  --pat: clamp(120px, 11vw, 168px);
  --pat-out: calc(var(--pat) * 0.46);
  content: "";
  position: absolute;
  top: calc(var(--pat-out) * -1);
  right: calc(var(--pat-out) * -1);
  width: var(--pat);
  aspect-ratio: 1;
  clip-path: inset(var(--pat-out) var(--pat-out) 0 0);
  background: url("../img/mask-pattern/surya-chakara.webp") center/contain no-repeat;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
  opacity: 0.1;
  pointer-events: none;
}
.reach-section .reach-ticket:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 85, 93, 0.4);
  box-shadow: 0 22px 40px -22px rgba(21, 33, 36, 0.32);
}
.reach-section .reach-ticket-badge {
  position: absolute;
  top: calc(var(--badge) / -2);
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--badge);
  height: var(--badge);
  background: linear-gradient(160deg, #ffffff 0%, #ffffff 42%, #f5f2ea 100%);
  border: 1px solid #e6e3da;
  border-radius: 50%;
  box-shadow: 0 0 0 clamp(8px, 0.9vw, 11px) #ffffff;
  transform: translateX(-50%);
}
.reach-section .reach-ticket-icon {
  width: 44%;
  height: 44%;
  background: #2f555d;
  -webkit-mask: var(--reach-icon) center/contain no-repeat;
  mask: var(--reach-icon) center/contain no-repeat;
}
.reach-section .reach-ticket-name {
  position: relative;
  display: block;
  margin-bottom: clamp(10px, 1.2vw, 14px);
  font-family: var(--heading-font-family);
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #152124;
}
.reach-section .reach-ticket .para {
  position: relative;
  margin: 0;
}
.reach-section .reach-map {
  margin-top: clamp(30px, 3.6vw, 52px);
  overflow: hidden;
  border: 1px solid #e6e3da;
  border-radius: clamp(18px, 2vw, 24px);
}
.reach-section .reach-map iframe {
  display: block;
  width: 100%;
  border: 0;
}
@media (max-width: 575.98px) {
  .reach-section .reach-map iframe {
    height: 280px;
  }
}
@media (max-width: 575.98px) {
  .reach-section .reach-route {
    display: none;
  }
}

.contact-section .heading-wrap {
  margin-left: auto;
  margin-right: auto;
}
.contact-section .contact-intro {
  max-width: 760px;
  margin: clamp(12px, 1.6vw, 18px) auto 0;
}
.contact-section .contact-grid {
  margin-top: clamp(30px, 4vw, 54px);
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 992px) {
  .contact-section .contact-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    gap: clamp(40px, 5vw, 80px);
  }
}
.contact-section .contact-form-wrap {
  padding: clamp(22px, 3vw, 40px);
  background: #f5f2ea;
  border: 1px solid #e6e3da;
  border-radius: clamp(16px, 2vw, 24px);
  background-image: url("../img/mask-pattern/bg-pattern.webp");
  background-repeat: repeat;
  background-size: 1866px auto;
  background-blend-mode: multiply;
}
.contact-section .contact-row {
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
}
@media (min-width: 576px) {
  .contact-section .contact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-section .contact-field {
  display: block;
  margin-bottom: clamp(14px, 1.6vw, 20px);
}
.contact-section .contact-field label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--body-font-family);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #152124;
}
.contact-section .contact-field label span {
  color: #2f555d;
}
.contact-section .contact-field input,
.contact-section .contact-field textarea {
  display: block;
  width: 100%;
  padding: clamp(11px, 1.2vw, 14px) clamp(13px, 1.4vw, 16px);
  font-family: var(--body-font-family);
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  color: #152124;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .contact-field input::-moz-placeholder, .contact-section .contact-field textarea::-moz-placeholder {
  color: #8a968f;
}
.contact-section .contact-field input::placeholder,
.contact-section .contact-field textarea::placeholder {
  color: #8a968f;
}
.contact-section .contact-field input:focus,
.contact-section .contact-field textarea:focus {
  outline: none;
  border-color: #2f555d;
  box-shadow: 0 0 0 3px rgba(47, 85, 93, 0.16);
}
.contact-section .contact-field textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-section .contact-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #c0452c;
}
.contact-section .contact-note {
  margin-bottom: clamp(16px, 2vw, 22px);
  padding: clamp(12px, 1.4vw, 16px) clamp(14px, 1.6vw, 18px);
  font-size: 13.5px;
  line-height: 1.5;
  border-radius: 10px;
}
.contact-section .contact-note--ok {
  color: rgb(33.3028571429, 60.2285714286, 65.8971428571);
  background: rgba(47, 85, 93, 0.1);
  border: 1px solid rgba(47, 85, 93, 0.28);
}
.contact-section .contact-note--bad {
  color: #a3381f;
  background: rgba(192, 69, 44, 0.08);
  border: 1px solid rgba(192, 69, 44, 0.3);
}
.contact-section .contact-pot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-section .contact-aside .mid-heading {
  margin-bottom: clamp(10px, 1.2vw, 14px);
}
.contact-section .contact-list {
  margin: clamp(22px, 2.6vw, 32px) 0 0;
  padding: 0;
  list-style: none;
}
.contact-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.4vw, 16px);
  padding: clamp(14px, 1.6vw, 18px) 0;
  border-bottom: 1px dashed #e6e3da;
}
.contact-section .contact-item:first-child {
  padding-top: 0;
}
.contact-section .contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-section .contact-item-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(38px, 3.6vw, 44px);
  height: clamp(38px, 3.6vw, 44px);
  color: #2f555d;
  background: rgba(47, 85, 93, 0.09);
  border-radius: 50%;
}
.contact-section .contact-item-icon svg {
  width: 18px;
  height: 18px;
}
.contact-section .contact-item-label {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-family-style4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a968f;
}
.contact-section .contact-item-value {
  display: block;
  line-height: 1.6;
  color: #152124;
  transition: color 0.3s ease;
}
.contact-section a.contact-item-value:hover {
  color: #2f555d;
}

.apply-section .container--narrow {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.apply-section .apply-card {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(145deg, rgba(249, 247, 242, 0.95) 0%, rgba(242, 244, 246, 0.75) 50%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(230, 227, 218, 0.85);
  border-radius: clamp(14px, 1.6vw, 18px);
  box-shadow: 0 30px 60px -20px rgba(21, 33, 36, 0.08), 0 2px 8px rgba(21, 33, 36, 0.03);
  overflow: hidden;
}
.apply-section .apply-card-leaf {
  position: absolute;
  width: clamp(90px, 12vw, 150px);
  height: clamp(90px, 12vw, 150px);
  opacity: 0.06;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
  z-index: 0;
}
.apply-section .apply-card-leaf--left {
  top: -15px;
  right: -20px;
  transform: rotate(15deg);
  background-image: url("../img/icons/leaf-left.svg");
}
.apply-section .apply-card-leaf--right {
  bottom: -20px;
  right: -15px;
  transform: rotate(-25deg);
  background-image: url("../img/icons/leaf-right.svg");
}
.apply-section .apply-fieldset {
  position: relative;
  z-index: 1;
}
.apply-section .apply-fieldset + .apply-fieldset {
  margin-top: clamp(26px, 3vw, 36px);
  padding-top: clamp(24px, 2.8vw, 32px);
  border-top: 1px solid #e6e3da;
}
.apply-section .apply-fieldset-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(16px, 2vw, 22px);
}
.apply-section .apply-fieldset-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  color: #2f555d;
  background: rgba(47, 85, 93, 0.1);
  border-radius: 50%;
}
.apply-section .apply-fieldset-icon svg {
  width: 18px;
  height: 18px;
}
.apply-section .apply-fieldset-title {
  display: block;
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #152124;
}
.apply-section .apply-fieldset-sub {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: #8a968f;
}
.apply-section .apply-grid {
  display: grid;
  align-items: start;
  gap: clamp(16px, 2vw, 22px) clamp(18px, 2.4vw, 28px);
}
.apply-section .apply-grid + .apply-grid {
  margin-top: clamp(16px, 2vw, 22px);
}
@media (min-width: 640px) {
  .apply-section .apply-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 640px) {
  .apply-section .apply-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .apply-section .apply-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 640px) {
  .apply-section .apply-field--wide {
    grid-column: 1/-1;
  }
}
.apply-section .apply-field > label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading-font-family);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #2f555d;
}
.apply-section .apply-input {
  position: relative;
}
.apply-section .apply-input input,
.apply-section .apply-input select,
.apply-section .apply-input textarea {
  display: block;
  width: 100%;
  padding: clamp(11px, 1.2vw, 13px) 14px;
  font-family: var(--body-font-family);
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  color: #152124;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.apply-section .apply-input input::-moz-placeholder, .apply-section .apply-input select::-moz-placeholder, .apply-section .apply-input textarea::-moz-placeholder {
  color: #8a968f;
}
.apply-section .apply-input input::placeholder,
.apply-section .apply-input select::placeholder,
.apply-section .apply-input textarea::placeholder {
  color: #8a968f;
}
.apply-section .apply-input input:focus,
.apply-section .apply-input select:focus,
.apply-section .apply-input textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #2f555d;
  box-shadow: 0 0 0 3px rgba(47, 85, 93, 0.12);
}
.apply-section .apply-input textarea {
  resize: vertical;
  min-height: 90px;
  padding-top: 12px;
}
.apply-section .apply-input--select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238a968f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.apply-section .apply-input .iti__flag-container,
.apply-section .apply-input .iti__selected-flag,
.apply-section .apply-input .iti__flag {
  max-width: none;
  max-height: none;
}
.apply-section .apply-input img {
  max-width: 22px;
  max-height: 16px;
}
.apply-section .apply-gender {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.apply-section .apply-gender-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(11px, 1.2vw, 13px) 10px;
  font-family: var(--body-font-family);
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  color: #152124;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.apply-section .apply-gender-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.apply-section .apply-gender-pill svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.apply-section .apply-gender-pill--male svg {
  color: #4a7fc9;
}
.apply-section .apply-gender-pill--female svg {
  color: #d9738a;
}
.apply-section .apply-gender-pill input:checked + svg,
.apply-section .apply-gender-pill input:focus-visible + svg {
  color: inherit;
}
.apply-section .apply-gender-pill:has(input:checked) {
  background: #ffffff;
  border-color: #2f555d;
  box-shadow: 0 0 0 3px rgba(47, 85, 93, 0.12);
}
.apply-section .apply-gender-pill:has(input:focus-visible) {
  outline: 2px solid #2f555d;
  outline-offset: 2px;
}
.apply-section .apply-safety {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(22px, 2.6vw, 30px);
  padding: 13px 16px;
  font-size: 13px;
  color: #8a968f;
  background: rgba(47, 85, 93, 0.04);
  border: 1px solid #e6e3da;
  border-radius: 10px;
}
.apply-section .apply-safety svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #2f555d;
}
.apply-section .apply-req {
  color: #b8941f;
}
.apply-section .apply-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #c0452c;
}
.apply-section .apply-note {
  max-width: 940px;
  margin: 0 auto clamp(18px, 2vw, 24px);
  padding: clamp(12px, 1.4vw, 16px) clamp(14px, 1.6vw, 18px);
  font-size: 13.5px;
  line-height: 1.5;
  border-radius: 10px;
}
.apply-section .apply-note--ok {
  color: rgb(33.3028571429, 60.2285714286, 65.8971428571);
  background: rgba(47, 85, 93, 0.1);
  border: 1px solid rgba(47, 85, 93, 0.28);
}
.apply-section .apply-note--bad {
  color: #a3381f;
  background: rgba(192, 69, 44, 0.08);
  border: 1px solid rgba(192, 69, 44, 0.3);
}
.apply-section .apply-pot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.apply-section .apply-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(22px, 2.6vw, 30px);
}
@media (max-width: 639.98px) {
  .apply-section .apply-foot {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .apply-section .apply-foot .theme-btn {
    justify-content: center;
  }
}
.apply-section .apply-required {
  margin: 0;
  font-size: 12.5px;
  color: #8a968f;
}
.apply-section .apply-disclaimer {
  margin-top: clamp(16px, 2vw, 22px);
  padding: clamp(14px, 1.6vw, 18px) clamp(16px, 2vw, 22px);
  font-size: 13px;
  line-height: 1.6;
  color: #8a968f;
  background: rgba(47, 85, 93, 0.05);
  border: 1px solid rgba(47, 85, 93, 0.18);
  border-left: 4px solid #2f555d;
  border-radius: 10px;
  text-align: left;
}
.apply-section .apply-disclaimer b {
  font-size: inherit;
  color: #152124;
}

.legal-page .heading-wrap {
  max-width: 1320px;
}
.legal-page .legal-content {
  max-width: 1320px;
  margin: clamp(26px, 3vw, 42px) auto 0;
  text-align: left;
}
.legal-page .legal-intro {
  margin-bottom: clamp(24px, 3vw, 36px);
}
.legal-page .legal-intro .para + .para {
  margin-top: 15px;
}
.legal-page .legal-item {
  margin-top: clamp(26px, 3.2vw, 38px);
}
.legal-page .legal-item:first-of-type {
  margin-top: 0;
}
.legal-page .legal-item .para + .para {
  margin-top: 12px;
}
.legal-page .legal-item-title {
  font-family: var(--heading-font-family);
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #152124;
}
.legal-page .legal-callout {
  margin: clamp(28px, 3.2vw, 40px) 0;
  padding: clamp(20px, 2.4vw, 28px);
  background: #f5f2ea;
  border: 1px solid #e6e3da;
  border-radius: 14px;
}
.legal-page .legal-callout .para {
  margin: 0;
}
.legal-page .legal-callout .para + .para {
  margin-top: 10px;
}
.legal-page .legal-callout-title {
  font-family: var(--heading-font-family);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: #2f555d;
}
.legal-page .legal-contact {
  margin-top: clamp(30px, 3.4vw, 42px);
  padding-top: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid #e6e3da;
}
.legal-page .legal-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 0.9vw, 10px);
  margin-top: 4px;
  margin-bottom: 18px;
}
.legal-page .legal-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0.6vw, 7px);
  padding: 7px clamp(9px, 1.2vw, 14px);
  font-size: clamp(11px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2f555d;
  background: #f5f2ea;
  border: 1px solid #e6e3da;
  border-radius: 50px;
}
.legal-page .legal-meta-chip svg {
  flex: none;
  width: 13px;
  height: 13px;
}
.legal-page .legal-part {
  margin-top: clamp(46px, 5vw, 64px);
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 2px solid #e6e3da;
}
.legal-page .legal-part:first-of-type {
  margin-top: clamp(30px, 3.4vw, 42px);
}
.legal-page .legal-part-title {
  font-family: var(--font-family-style4);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f555d;
}
.legal-page .legal-subitem {
  margin-top: clamp(18px, 2vw, 26px);
}
.legal-page .legal-subitem-title {
  font-family: var(--heading-font-family);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #152124;
}
.legal-page .legal-transport-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.legal-page .legal-transport-head .legal-subitem-title {
  margin-bottom: 0;
}
.legal-page .legal-transport-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f2ea;
  border: 1px solid #e6e3da;
}
.legal-page .legal-transport-icon::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: #2f555d;
  mask: var(--icon) center/contain no-repeat;
  -webkit-mask: var(--icon) center/contain no-repeat;
}
.legal-page .legal-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.legal-page .legal-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 8px;
  line-height: 1.65;
  color: #212529;
}
.legal-page .legal-list li:first-child {
  margin-top: 0;
}
.legal-page .legal-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa64d, #c9a227);
}
.legal-page .legal-info-table {
  margin: 14px 0;
  border: 1px solid #e6e3da;
  border-radius: 14px;
  overflow: hidden;
}
.legal-page .legal-info-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) 1fr;
  gap: clamp(12px, 2vw, 24px);
  padding: 12px clamp(16px, 2vw, 20px);
}
.legal-page .legal-info-row:not(:last-child) {
  border-bottom: 1px solid #e6e3da;
}
.legal-page .legal-info-row:nth-child(odd) {
  background: rgba(245, 242, 234, 0.6);
}
.legal-page .legal-info-row dt {
  font-weight: 600;
  color: #152124;
}
.legal-page .legal-info-row dd {
  margin: 0;
  color: #212529;
}
@media (max-width: 575.98px) {
  .legal-page .legal-info-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
  .legal-page .legal-info-row dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a968f;
  }
}
.legal-page .legal-table-wrap {
  margin: 14px 0 0;
}
.legal-page .legal-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e3da;
  border-radius: 14px;
  overflow: hidden;
}
.legal-page .legal-table th,
.legal-page .legal-table td {
  padding: 12px clamp(14px, 1.6vw, 18px);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.legal-page .legal-table th {
  font-family: var(--heading-font-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: #2f555d;
}
.legal-page .legal-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #e6e3da;
}
.legal-page .legal-table tbody tr:nth-child(even) {
  background: rgba(245, 242, 234, 0.6);
}
@media (max-width: 699.98px) {
  .legal-page .legal-table {
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  .legal-page .legal-table thead {
    display: none;
  }
  .legal-page .legal-table tbody,
  .legal-page .legal-table tr,
  .legal-page .legal-table td {
    display: block;
    width: 100%;
  }
  .legal-page .legal-table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .legal-page .legal-table tr {
    padding: 14px clamp(14px, 4vw, 18px);
    background: #ffffff;
    border: 1px solid #e6e3da;
    border-radius: 12px;
  }
  .legal-page .legal-table tbody tr:nth-child(even) {
    background: #ffffff;
  }
  .legal-page .legal-table td {
    padding: 8px 0;
  }
  .legal-page .legal-table td:first-child {
    padding-top: 0;
  }
  .legal-page .legal-table td:last-child {
    padding-bottom: 0;
  }
  .legal-page .legal-table td:not(:last-child) {
    border-bottom: 1px dashed #e6e3da;
  }
  .legal-page .legal-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2f555d;
    margin-bottom: 3px;
  }
}

.acc-gallery .slider-track {
  --slider-per-view: 3;
}
@media (max-width: 1199.98px) {
  .acc-gallery .slider-track {
    --slider-per-view: 2;
  }
}
@media (max-width: 767.98px) {
  .acc-gallery .slider-track {
    --slider-per-view: 1;
  }
}

.acc-gallery-media {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 14px;
}
.acc-gallery-media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.acc-gallery-cap {
  position: relative;
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  font-size: 13px;
  color: #212529;
}
.acc-gallery-cap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #ffa64d, #c9a227);
}

.acc-rooms {
  background: #ffffff;
}

.acc-room-cards {
  display: grid;
  gap: clamp(20px, 2.4vw, 30px);
  margin: clamp(40px, 4.4vw, 60px) 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .acc-room-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.acc-room-card {
  padding: clamp(20px, 2.2vw, 26px);
  background: #f5f2ea;
  border: 1px solid #e6e3da;
  border-radius: 16px;
}

.acc-room-card-title {
  position: relative;
  margin: 0 0 10px;
  padding-top: 12px;
  font-family: var(--heading-font-family);
  font-size: 1.05rem;
  font-weight: 700;
  color: #152124;
}
.acc-room-card-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #ffa64d, #c9a227);
}

.acc-room-card-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #212529;
}

.acc-amenities {
  display: grid;
  gap: clamp(20px, 2.2vw, 28px);
  margin: clamp(40px, 4.4vw, 60px) 0 0;
  padding: clamp(28px, 3vw, 38px) 0 0;
  border-top: 1px solid #e6e3da;
  list-style: none;
}
@media (min-width: 640px) {
  .acc-amenities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .acc-amenities {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.acc-amenity {
  display: flex;
  gap: 14px;
}

.acc-amenity-icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #2f555d;
  background: #f5f2ea;
  border: 1px solid #e6e3da;
}
.acc-amenity-icon svg {
  width: 18px;
  height: 18px;
}

.acc-amenity-title {
  margin: 0 0 2px;
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 700;
  color: #152124;
}

.acc-amenity-text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: #8a968f;
}

.acc-food {
  background: #ffffff;
}

.acc-food-callout {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.acc-cta {
  background: #ffffff;
  padding-top: 0;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.acc-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.6vw, 30px);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
  text-align: center;
  background: linear-gradient(rgba(36, 67, 73, 0.72), rgba(36, 67, 73, 0.72)), url("../img/how-to-reach.webp") center/cover no-repeat;
  border-radius: 24px;
}
.acc-cta-inner .theme-btn {
  --btn-hover-bg: #244349;
}

.acc-cta-text {
  max-width: 46ch;
  margin: 0;
  font-family: var(--heading-font-family);
  font-size: clamp(1.15rem, 1rem + 0.9vw, 1.6rem);
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
}

.quick-links .quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #e6e3da;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 991.98px) {
  .quick-links .quick-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .quick-links .quick-links-grid {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 18px;
  }
}
.quick-links .quick-links-grid li {
  display: flex;
}
.quick-links .quick-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.5vw, 18px);
  flex: 1;
  padding: clamp(18px, 2vw, 26px) clamp(18px, 2.2vw, 28px);
  background: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease;
}
.quick-links .quick-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #ffa64d, #c9a227);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.quick-links .quick-link:hover, .quick-links .quick-link:focus-visible {
  background: linear-gradient(120deg, rgba(201, 162, 39, 0.11), rgba(201, 162, 39, 0.03) 60%, #ffffff);
}
.quick-links .quick-link:hover::before, .quick-links .quick-link:focus-visible::before {
  transform: scaleY(1);
}
.quick-links .quick-link:hover .quick-link-icon, .quick-links .quick-link:focus-visible .quick-link-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #2f555d, #244349);
  box-shadow: 0 10px 22px -12px rgba(47, 85, 93, 0.9);
  border-radius: 50%;
}
.quick-links .quick-link:hover .quick-link-icon img, .quick-links .quick-link:focus-visible .quick-link-icon img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(18%) hue-rotate(171deg) brightness(106%) contrast(100%);
}
.quick-links .quick-link:hover .quick-link-arrow, .quick-links .quick-link:focus-visible .quick-link-arrow {
  transform: translateX(4px);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .quick-links .quick-link {
    transition: none;
  }
  .quick-links .quick-link::before,
  .quick-links .quick-link .quick-link-icon,
  .quick-links .quick-link .quick-link-arrow {
    transition: none;
  }
  .quick-links .quick-link:hover .quick-link-arrow {
    transform: none;
  }
}
.quick-links .quick-link-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(44px, 4.2vw, 54px);
  aspect-ratio: 1;
  color: #c9a227;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 16px;
  transition: background 0.3s ease, color 0.3s ease, border-radius 0.45s ease, box-shadow 0.3s ease;
}
.quick-links .quick-link-icon img {
  width: 64%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.quick-links .quick-link-body {
  min-width: 0;
}
.quick-links .quick-link-title {
  display: block;
  font-family: var(--heading-font-family);
  font-size: clamp(0.95rem, 0.9rem + 0.28vw, 1.1rem);
  font-weight: 600;
  line-height: 1.3;
  color: #152124;
}
.quick-links .quick-link-arrow {
  flex: none;
  font-size: 1.2rem;
  line-height: 1;
  color: #2f555d;
  opacity: 0.55;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.quick-links .quick-link-meta {
  display: block;
  margin-top: 5px;
  font-size: clamp(11.5px, 11px + 0.15vw, 13px);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #212529;
}
.quick-links .quick-link-sep {
  margin: 0 7px;
  color: rgba(201, 162, 39, 0.7);
}

.intro-section {
  position: relative;
}
.intro-section .intro-prose {
  display: grid;
  gap: clamp(14px, 2.4vw, 40px);
  margin-top: clamp(10px, 1.6vw, 24px);
  text-align: center;
}
.intro-section .intro-prose .para {
  margin: 0;
}
.intro-section .intro-bridge {
  max-width: 860px;
  margin: clamp(16px, 2.2vw, 28px) auto 0;
  text-align: center;
}
.intro-section .intro-part {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 18px);
  margin-top: clamp(38px, 5vw, 68px);
  padding-bottom: clamp(16px, 2.2vw, 26px);
}
@media (max-width: 575.98px) {
  .intro-section .intro-part {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
.intro-section .intro-part-txt {
  flex: none;
  font-size: clamp(10px, 9px + 0.2vw, 12px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #152124;
}
@media (max-width: 575.98px) {
  .intro-section .intro-part-txt {
    flex: 1 1 auto;
    min-width: 0;
    letter-spacing: 0.14em;
  }
}
.intro-section .intro-part-rule {
  flex: 1 1 auto;
  height: 1px;
  background: #e6e3da;
}
@media (max-width: 575.98px) {
  .intro-section .intro-part-rule {
    flex-basis: 100%;
  }
}
.intro-section .intro-tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: intro-tier;
}
@media (max-width: 767.98px) {
  .intro-section .intro-tiers {
    grid-template-columns: minmax(0, 1fr);
  }
}
.intro-section .intro-tier {
  position: relative;
  padding: clamp(22px, 2.6vw, 32px);
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.intro-section .intro-tier:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 18px 40px -28px rgba(21, 33, 36, 0.35);
}
.intro-section .intro-tier::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffa64d, #c9a227);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.intro-section .intro-tier:hover::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .intro-section .intro-tier {
    transition: none;
  }
  .intro-section .intro-tier::after {
    transition: none;
  }
}
.intro-section .intro-tier-num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--heading-font-family);
  font-style: italic;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem);
  line-height: 1;
  color: rgba(201, 162, 39, 0.75);
  counter-increment: intro-tier;
}
.intro-section .intro-tier-num::before {
  content: "0" counter(intro-tier);
}
.intro-section .intro-tier:nth-child(even) .intro-tier-num {
  color: rgba(47, 85, 93, 0.45);
}
.intro-section .intro-tier-title {
  display: block;
  margin-bottom: 8px;
  font-family: var(--heading-font-family);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  font-weight: 500;
  line-height: 1.3;
  color: #152124;
}
.intro-section .intro-tier .para {
  margin: 0;
}
.intro-section .intro-note {
  max-width: 820px;
  margin: clamp(32px, 4vw, 56px) auto 0;
  text-align: center;
}

.course-nav {
  --course-nav-top: clamp(64px, 5.8vw, 81px);
  position: sticky;
  top: var(--course-nav-top);
  z-index: 90;
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf5 55%, #f5f2ea 100%);
  box-shadow: 0 6px 18px rgba(20, 32, 27, 0.05);
}
.course-nav.is-float {
  position: fixed;
  right: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.35s;
}
.course-nav.is-float.is-revealed {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.course-nav::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 227, 218, 0) 0%, #e6e3da 12%, #e6e3da 88%, rgba(230, 227, 218, 0) 100%);
}
.course-nav .course-nav-track {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 44px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.course-nav .course-nav-track::-webkit-scrollbar {
  display: none;
}
.course-nav .course-nav-link {
  position: relative;
  flex: 0 0 auto;
  display: block;
  padding: clamp(7px, 0.85vw, 10px) 0;
  color: #212529;
  font-family: var(--heading-font-family);
  font-size: clamp(14px, 13px + 0.22vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.course-nav .course-nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #c9a227 0%, #ffa64d 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.course-nav .course-nav-link:hover, .course-nav .course-nav-link:focus-visible {
  color: #2f555d;
}
.course-nav .course-nav-link.is-active {
  color: #2f555d;
}
.course-nav .course-nav-link.is-active::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .course-nav .course-nav-link,
  .course-nav .course-nav-link::after {
    transition: none;
  }
  .course-nav.is-float {
    transition: none;
    transform: none;
  }
}

.compare-section {
  padding: clamp(54px, 7vw, 100px) 0;
}
.compare-section .compare-lead {
  max-width: 760px;
  margin: clamp(22px, 2.6vw, 32px) auto 0;
  font-weight: 500;
  text-align: center;
  color: #152124;
}
.compare-section .compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 38px);
  margin: clamp(28px, 3.4vw, 46px) 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767.98px) {
  .compare-section .compare-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}
.compare-section .compare-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(14px, 1.6vw, 20px);
  padding-top: 18px;
  border-top: 1px solid #e6e3da;
}
.compare-section .compare-point-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(46px, 4.2vw, 58px);
  height: clamp(46px, 4.2vw, 58px);
  background: linear-gradient(to left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.99));
  border: 1px solid rgba(47, 85, 93, 0.12);
  border-radius: 50%;
  overflow: hidden;
}
.compare-section .compare-point-icon img {
  display: block;
  width: 55%;
  height: 55%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.compare-section .compare-point-title {
  font-family: var(--heading-font-family);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  font-weight: 500;
  line-height: 1.3;
  color: #152124;
  margin-bottom: 8px;
}
.compare-section .compare-point p {
  margin: 0;
}
.compare-section .compare-close {
  margin: clamp(30px, 3.6vw, 50px) 0 0;
}
.compare-section .compare-close .para + .para {
  margin-top: 15px;
}

.course-structure {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-block: clamp(80px, 11vw, 150px);
  background: radial-gradient(120% 90% at 50% -10%, #33606a 0%, #244349 55%, #16292c 100%);
}
.course-structure .cs-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.course-structure .cs-ridge {
  position: absolute;
  left: -5%;
  width: 110%;
}
.course-structure .cs-ridge svg {
  display: block;
  width: 100%;
  height: auto;
}
.course-structure .cs-ridge--back {
  bottom: 18%;
  opacity: 0.35;
}
.course-structure .cs-ridge--mid {
  bottom: 8%;
  opacity: 0.55;
}
.course-structure .cs-ridge--front {
  bottom: -2%;
  opacity: 0.9;
}
.course-structure .cs-river {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(21, 33, 36, 0) 0%, rgba(21, 33, 36, 0.55) 60%, #244349 100%);
}
.course-structure .cs-grain {
  position: absolute;
  inset: 0;
  background-image: url("../img/mask-pattern/bg-pattern.webp");
  background-repeat: repeat;
  background-size: 1866px auto;
  mix-blend-mode: overlay;
  opacity: 0.35;
}
.course-structure .cs-motes {
  position: absolute;
  inset: 0;
}
.course-structure .cs-mote {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c9a227;
  opacity: 0.5;
  filter: blur(0.3px);
  animation: csMoteRise linear infinite;
}
@keyframes csMoteRise {
  from {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.35;
  }
  to {
    transform: translate(24px, -620px);
    opacity: 0;
  }
}
.course-structure .cs-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1199.98px) {
  .course-structure .cs-elements {
    display: none;
  }
}
.course-structure .cs-element {
  position: absolute;
  width: clamp(110px, 11vw, 178px);
  height: auto;
  opacity: 0.72;
  filter: saturate(0.9) brightness(0.95) drop-shadow(0 20px 28px rgba(11, 22, 24, 0.6));
}
.course-structure .cs-element--swing {
  transform-origin: 50% 0;
  animation: csSwing 7s ease-in-out infinite alternate;
}
.course-structure .cs-element--drift {
  animation: csDrift 9s ease-in-out infinite alternate;
}
@keyframes csSwing {
  from {
    rotate: -3.5deg;
  }
  to {
    rotate: 3.5deg;
  }
}
@keyframes csDrift {
  from {
    translate: 0 -9px;
  }
  to {
    translate: 0 9px;
  }
}
.course-structure .cs-element--tingsha {
  top: 4%;
  right: 2%;
  width: clamp(150px, 15vw, 236px);
  animation-duration: 6.5s;
  animation-delay: -2.1s;
}
.course-structure .cs-element--bowl-tibet {
  bottom: 9%;
  left: 2%;
  animation-duration: 10.5s;
  animation-delay: -3.6s;
}
.course-structure .cs-element--bowl-duel {
  bottom: 5%;
  right: 2%;
  width: clamp(130px, 13vw, 205px);
  animation-duration: 8.8s;
  animation-delay: -6s;
}
.course-structure .cs-play {
  position: absolute;
  top: 6%;
  left: 1%;
  width: clamp(210px, 21vw, 330px);
  aspect-ratio: 1;
  opacity: 0.72;
  filter: saturate(0.9) brightness(0.95) drop-shadow(0 20px 28px rgba(11, 22, 24, 0.6));
}
.course-structure .cs-play-bowl {
  position: absolute;
  bottom: 6%;
  left: 0;
  width: 62%;
  height: auto;
}
.course-structure .cs-play-ring {
  position: absolute;
  bottom: 14%;
  left: 31%;
  width: 54%;
  aspect-ratio: 1;
  translate: -50% 0;
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 50%;
  animation: csPlayRing 1.6s ease-out infinite;
}
.course-structure .cs-play-stick {
  position: absolute;
  height: auto;
  transform-origin: 82% 82%;
}
.course-structure .cs-play-stick--bended {
  right: -2%;
  bottom: 34%;
  width: 62%;
  animation: csPlayTapBended 1.6s ease-in-out infinite;
}
.course-structure .cs-play-stick--straight {
  right: 6%;
  bottom: 46%;
  width: 17%;
  animation: csPlayTapStraight 1.6s ease-in-out infinite;
  animation-delay: -0.8s;
}
@keyframes csPlayTapBended {
  0%, 100% {
    rotate: 0deg;
  }
  45% {
    rotate: -9deg;
  }
}
@keyframes csPlayTapStraight {
  0%, 100% {
    rotate: -52deg;
  }
  45% {
    rotate: -61deg;
  }
}
@keyframes csPlayRing {
  0% {
    scale: 0.4;
    opacity: 0;
  }
  18% {
    opacity: 0.6;
  }
  100% {
    scale: 1.45;
    opacity: 0;
  }
}
.course-structure .container {
  position: relative;
  z-index: 2;
}
.course-structure .heading-wrap {
  margin-left: auto;
  margin-right: auto;
}
.course-structure .common-heading {
  color: #ffffff;
}
.course-structure .heading-sub-title {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}
.course-structure .heading-wrap .para {
  color: rgba(245, 242, 234, 0.72);
}
.course-structure .cs-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 700px;
  margin: clamp(30px, 3.6vw, 44px) auto 0;
  padding: 0;
  list-style: none;
}
.course-structure .cs-stat {
  padding-inline: clamp(8px, 1.6vw, 20px);
  text-align: center;
}
.course-structure .cs-stat + .course-structure .cs-stat {
  border-left: 1px solid rgba(245, 242, 234, 0.14);
}
.course-structure .cs-stat-icon {
  display: grid;
  place-items: center;
  width: clamp(38px, 4vw, 46px);
  height: clamp(38px, 4vw, 46px);
  margin: 0 auto clamp(10px, 1.2vw, 14px);
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
}
.course-structure .cs-stat-icon img {
  width: clamp(18px, 1.9vw, 22px);
  height: clamp(18px, 1.9vw, 22px);
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.course-structure .cs-stat-num {
  display: block;
  font-family: var(--font-family-style3);
  font-size: clamp(2.1rem, 1.5rem + 2.2vw, 3.4rem);
  line-height: 1;
  color: #c9a227;
}
.course-structure .cs-stat-label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-family-style4);
  font-size: clamp(10px, 0.5rem + 0.3vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.6);
}
.course-structure .cs-flow {
  position: relative;
  margin-top: clamp(44px, 6vw, 80px);
}
.course-structure .cs-thread {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 27px;
  width: 2px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.05), rgba(201, 162, 39, 0.55) 12%, rgba(201, 162, 39, 0.55) 88%, rgba(201, 162, 39, 0.05));
}
.course-structure .cs-pulse {
  position: absolute;
  top: 0;
  left: 28px;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #c9a227;
  box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.18), 0 0 18px 2px rgba(201, 162, 39, 0.65);
}
.course-structure .cs-level {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 26px;
  margin-bottom: clamp(22px, 3vw, 36px);
}
.course-structure .cs-level-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 50%;
  background: #244349;
  font-family: var(--font-family-style4);
  font-size: 10.5px;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-align: center;
  color: #c9a227;
}
.course-structure .cs-level-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
  gap: clamp(20px, 2.4vw, 26px);
  align-items: center;
  padding: clamp(20px, 2.6vw, 28px) clamp(20px, 3vw, 34px);
  background: rgba(245, 242, 234, 0.04);
  border: 1px solid rgba(245, 242, 234, 0.12);
  border-radius: 8px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.course-structure .cs-level-card:hover {
  transform: translateX(4px);
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(245, 242, 234, 0.065);
}
.course-structure .cs-level-meta {
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #c9a227;
}
.course-structure .cs-level-note {
  margin-left: 4px;
  font-size: 0.46em;
  font-weight: 600;
  color: rgba(201, 162, 39, 0.75);
}
.course-structure .cs-level-title {
  margin: 6px 0 8px;
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 17px + 0.7vw, 28px);
  font-weight: 600;
  color: #f5f2ea;
}
.course-structure .cs-level-desc {
  color: rgba(245, 242, 234, 0.65);
}
.course-structure .cs-media {
  display: grid;
}
.course-structure .cs-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 234, 0.14);
  border-radius: 8px;
}
.course-structure .cs-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.92) brightness(0.88);
  transition: filter 0.3s ease, scale 0.3s ease;
}
.course-structure .cs-level-card:hover .cs-photo img {
  scale: 1.04;
  filter: saturate(1) brightness(1);
}
.course-structure .cs-wave {
  position: relative;
  width: clamp(120px, 13vw, 168px);
  height: 26px;
  margin-bottom: 6px;
  overflow: hidden;
}
.course-structure .cs-wave svg {
  position: absolute;
  inset: 0;
  width: 200%;
  height: 100%;
}
.course-structure .cs-wave path {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.course-structure .cs-wave-amp {
  transform-origin: 0 30px;
  transform: scaleY(1);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.course-structure .cs-level-card:hover .cs-wave-amp,
.course-structure .cs-level-card:focus-within .cs-wave-amp {
  transform: scaleY(1.85);
}
.course-structure .cs-level-card:hover .cs-wave-a,
.course-structure .cs-level-card:focus-within .cs-wave-a {
  opacity: 1;
}
.course-structure .cs-level-card:hover .cs-wave-b,
.course-structure .cs-level-card:focus-within .cs-wave-b {
  opacity: 0.7;
}
.course-structure .cs-wave-a {
  stroke: #c9a227;
  stroke-width: 2;
  opacity: 0.9;
  animation: csWaveDrift 5.5s linear infinite;
  transition: opacity 0.3s ease;
}
.course-structure .cs-wave-b {
  stroke: #ffa64d;
  stroke-width: 1.4;
  opacity: 0.45;
  animation: csWaveDrift 4s linear infinite reverse;
  transition: opacity 0.3s ease;
}
@keyframes csWaveDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.course-structure .cs-level--full {
  margin-top: 8px;
}
.course-structure .cs-level--full .cs-level-node {
  background: #c9a227;
  border-color: #c9a227;
  font-weight: 700;
  color: #244349;
}
.course-structure .cs-level--full .cs-level-card {
  grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.14), rgba(245, 242, 234, 0.05));
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 30px 70px -40px rgba(201, 162, 39, 0.5);
}
.course-structure .cs-level--full .cs-level-meta {
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: 0.06em;
}
.course-structure .cs-level--full .cs-wave-a {
  stroke-width: 2.6;
}
.course-structure .cs-level--full .cs-wave-b {
  stroke-width: 2;
  opacity: 0.65;
}
.course-structure .cs-booking-lead {
  max-width: 760px;
  margin: clamp(34px, 4vw, 50px) auto clamp(16px, 2vw, 22px);
  text-align: center;
  color: rgba(245, 242, 234, 0.72);
}
.course-structure .cs-booking {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (max-width: 575.98px) {
  .course-structure .cs-booking {
    grid-template-columns: minmax(0, 1fr);
  }
}
.course-structure .cs-booking-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(12px, 1.6vw, 16px);
  align-items: start;
  padding: clamp(16px, 2vw, 22px) clamp(16px, 2.2vw, 24px);
  background: rgba(245, 242, 234, 0.04);
  border: 1px solid rgba(245, 242, 234, 0.12);
  border-radius: 8px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.course-structure .cs-booking-item:hover {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(245, 242, 234, 0.065);
}
.course-structure .cs-booking-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
}
.course-structure .cs-booking-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.course-structure .cs-booking-name {
  display: block;
  margin-bottom: 4px;
  font-family: var(--heading-font-family);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  font-weight: 600;
  color: #f5f2ea;
}
.course-structure .cs-booking-note {
  display: block;
  color: rgba(245, 242, 234, 0.6);
}
@media (max-width: 767.98px) {
  .course-structure .cs-level {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }
  .course-structure .cs-level-node {
    width: 40px;
    height: 40px;
    font-size: 9px;
  }
  .course-structure .cs-thread {
    left: 19px;
  }
  .course-structure .cs-pulse {
    left: 20px;
  }
  .course-structure .cs-level-card,
  .course-structure .cs-level--full .cs-level-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .course-structure .cs-media {
    order: -1;
  }
  .course-structure .cs-level-card:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .course-structure .cs-mote,
  .course-structure .cs-wave-a,
  .course-structure .cs-wave-b,
  .course-structure .cs-element,
  .course-structure .cs-play-stick {
    animation: none;
  }
  .course-structure .cs-element--swing {
    rotate: -1.5deg;
  }
  .course-structure .cs-play-stick--straight {
    rotate: -52deg;
  }
  .course-structure .cs-play-ring {
    display: none;
  }
  .course-structure .cs-wave-b {
    display: none;
  }
}

.pk-intro {
  position: relative;
  padding: clamp(56px, 8vw, 108px) 0;
  background: radial-gradient(1100px 420px at 88% -10%, rgba(201, 162, 39, 0.08), transparent 60%), #ffffff;
}
.pk-intro .pk-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid #e6e3da;
}
@media (max-width: 900px) {
  .pk-intro .pk-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 28px;
  }
}
.pk-intro .dosha-row {
  display: flex;
  gap: 0.5em;
  margin: 1.1em 0 1.3em;
  padding: 0;
  list-style: none;
}
.pk-intro .dosha-row li {
  font-family: var(--heading-font-family);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #244349;
  background: #f5f2ea;
  border: 1px solid #e6e3da;
  border-radius: 50px;
  padding: 0.45em 1.1em;
}
.pk-intro .pk-intro-approach {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pk-intro .approach-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  -moz-column-gap: 0.9em;
       column-gap: 0.9em;
  border: 1px solid #e6e3da;
  border-left: 3px solid #c9a227;
  border-radius: 8px;
  padding: 1.1em 1.3em;
  background: #ffffff;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pk-intro .approach-card:hover {
  border-color: #c9a227;
  transform: translateX(3px);
}
.pk-intro .approach-card p {
  grid-column: 2;
  margin: 0;
  font-size: 0.95rem;
}
.pk-intro .approach-icon {
  display: grid;
  place-items: center;
  grid-row: 1/3;
  align-self: center;
  width: 72px;
  height: 72px;
  background: #f5f2ea;
  border-radius: 50%;
}
.pk-intro .approach-icon img {
  width: 44px;
  height: 44px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.pk-intro .approach-tag {
  grid-column: 2;
  align-self: center;
  font-family: var(--font-family-style4);
  font-size: 1rem;
  color: #b8941f;
}
.pk-intro .approach-note {
  margin: 0;
  padding-left: 1.3em;
  font-style: italic;
  font-size: 0.9rem;
  color: #212529;
}
@media (max-width: 900px) {
  .pk-intro .approach-note {
    padding-left: 0;
  }
}
.pk-intro .pk-flow {
  position: relative;
  padding-top: clamp(48px, 7vw, 80px);
}
.pk-intro .pk-flow-caption {
  display: block;
  margin-bottom: 1.6em;
  font-family: var(--font-family-style4);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #212529;
}
.pk-intro .pk-flow-line {
  position: absolute;
  top: clamp(78px, 10vw, 118px);
  left: 0;
  z-index: 0;
  width: 100%;
  height: 60px;
  overflow: visible;
}
.pk-intro .pk-flow-line path {
  fill: none;
  stroke: #e6e3da;
  stroke-width: 2;
}
.pk-intro .pk-flow-line .stream {
  stroke: #c9a227;
  stroke-dasharray: 6 10;
  stroke-linecap: round;
}
@media (max-width: 900px) {
  .pk-intro .pk-flow-line {
    display: none;
  }
}
.pk-intro .pk-flow-stops {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 900px) {
  .pk-intro .pk-flow-stops {
    grid-template-columns: 1fr;
    gap: 1.6em;
  }
}
.pk-intro .pk-flow-stop {
  padding-top: 6px;
}
.pk-intro .pk-flow-stop:nth-child(2) {
  margin-top: 38px;
}
.pk-intro .pk-flow-stop:nth-child(3) {
  margin-top: 10px;
}
@media (max-width: 900px) {
  .pk-intro .pk-flow-stop:nth-child(2), .pk-intro .pk-flow-stop:nth-child(3) {
    margin-top: 0;
  }
  .pk-intro .pk-flow-stop {
    padding: 22px 22px 26px;
    background: #ffffff;
    border: 1px solid #e6e3da;
    border-radius: 8px;
    box-shadow: 0 14px 30px -24px rgba(21, 33, 36, 0.28);
  }
}
.pk-intro .pk-flow-dot {
  display: block;
  width: 11px;
  height: 11px;
  margin-bottom: 1em;
  border: 2px solid #c9a227;
  border-radius: 50%;
  background: #ffffff;
}
.pk-intro .pk-flow-mark {
  display: block;
  margin-bottom: 0.5em;
  font-family: var(--font-family-style4);
  font-size: 0.95rem;
  color: #b8941f;
}
@media (max-width: 900px) {
  .pk-intro .pk-flow-mark {
    margin-bottom: 0.15em;
  }
}
.pk-intro .pk-flow-stop h3 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 0;
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 17px + 0.7vw, 28px);
  font-weight: 600;
  color: #152124;
}
.pk-intro .pk-flow-stop h3 small {
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a968f;
}
.pk-intro .pk-flow-stop p {
  margin: 0.6em 0 0;
  font-size: 0.92rem;
  color: #212529;
}
.pk-intro .pk-intro-footnote {
  margin-top: clamp(36px, 5vw, 60px);
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid #e6e3da;
}

.pk-therapies .pk-therapies-note {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  margin: 1.4em 0 0;
  padding: clamp(20px, 2.6vw, 30px) clamp(22px, 3vw, 34px);
  background: linear-gradient(135deg, rgba(47, 85, 93, 0.05), #ffffff 55%);
  border: 1px solid rgba(230, 227, 218, 0.9);
  border-radius: clamp(16px, 2vw, 22px);
  box-shadow: 0 18px 40px -28px rgba(21, 33, 36, 0.35);
}
.pk-therapies .pk-therapies-note p {
  margin: 0;
}
.pk-therapies .pk-therapies-note strong {
  color: #2f555d;
}
@media (max-width: 900px) {
  .pk-therapies .pk-therapies-note {
    flex-direction: column;
    align-items: center;
  }
  .pk-therapies .pk-therapies-note p {
    align-self: stretch;
    text-align: left;
  }
}
.pk-therapies .pk-note-leaf {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.pk-therapies .pk-note-leaf img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
  opacity: 0.08;
}
.pk-therapies .pk-note-leaf--one {
  right: -18px;
  bottom: -28px;
  width: 150px;
}
.pk-therapies .pk-note-leaf--two {
  top: -22px;
  left: -14px;
  width: 110px;
  transform: rotate(200deg);
}
.pk-therapies .pk-note-icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: none;
  place-items: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #2f555d, #244349);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(47, 85, 93, 0.08);
}
.pk-therapies .pk-note-icon img {
  width: 34px;
  height: 34px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(18%) hue-rotate(171deg) brightness(106%) contrast(100%);
}
.pk-therapies .pk-note-divider {
  flex: none;
  align-self: stretch;
  width: 2px;
  margin: 0 clamp(18px, 2.4vw, 28px);
  background: rgba(47, 85, 93, 0.3);
}
@media (max-width: 900px) {
  .pk-therapies .pk-note-divider {
    align-self: center;
    width: 40px;
    height: 2px;
    margin: 16px 0;
  }
}
.pk-therapies .therapy-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin: clamp(36px, 5vw, 56px) 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 900px) {
  .pk-therapies .therapy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .pk-therapies .therapy-grid {
    grid-template-columns: 1fr;
  }
}
.pk-therapies .therapy-card {
  position: relative;
  z-index: 0;
  grid-column: span 2;
  overflow: hidden;
  isolation: isolate;
  padding: 1.6em 1.5em 1.5em;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pk-therapies .therapy-card:hover, .pk-therapies .therapy-card:focus-within {
  transform: translateY(-4px);
  border-color: #c9a227;
  box-shadow: 0 14px 30px -18px rgba(21, 33, 36, 0.35);
}
.pk-therapies .therapy-card:nth-child(4) {
  grid-column: 2/span 2;
}
.pk-therapies .therapy-card:nth-child(5) {
  grid-column: 4/span 2;
}
@media (max-width: 900px) {
  .pk-therapies .therapy-card:nth-child(4), .pk-therapies .therapy-card:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 560px) {
  .pk-therapies .therapy-card {
    grid-column: span 1;
  }
}
.pk-therapies .therapy-card-mark {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  z-index: -1;
  font-family: var(--font-family-style4);
  font-size: 3.6rem;
  line-height: 1;
  color: #2f555d;
  opacity: 0.07;
  pointer-events: none;
}
.pk-therapies .therapy-card-dosha {
  display: inline-block;
  margin-bottom: 0.7em;
  padding: 0.3em 0.8em;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #244349;
  background: #f5f2ea;
  border-radius: 50px;
}
.pk-therapies .therapy-card h3 {
  margin: 0 0 0.4em;
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 17px + 0.7vw, 28px);
  font-weight: 600;
  color: #152124;
}
.pk-therapies .therapy-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #212529;
}
.pk-therapies .supporting-strip {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid #e6e3da;
}

.pk-experience .pk-experience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: start;
  gap: clamp(40px, 6vw, 72px);
}
@media (max-width: 900px) {
  .pk-experience .pk-experience-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.pk-experience .pk-experience-media {
  position: relative;
}
@media (min-width: 900.02px) {
  .pk-experience .pk-experience-media {
    position: sticky;
    top: clamp(96px, 15vh, 185px);
  }
}
.pk-experience .pk-experience-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: clamp(20px, 2.6vw, 28px);
}
.pk-experience .pk-experience-frame img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pk-experience .pk-experience-ring {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: clamp(14px, 2vw, 20px);
  pointer-events: none;
}
.pk-experience .pk-experience-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  max-width: 200px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: clamp(12px, 1.6vw, 16px);
  box-shadow: 0 18px 40px -16px rgba(21, 33, 36, 0.4);
}
@media (max-width: 900px) {
  .pk-experience .pk-experience-badge {
    left: 16px;
    bottom: -24px;
  }
}
@media (max-width: 480px) {
  .pk-experience .pk-experience-badge {
    position: static;
    max-width: none;
    margin-top: -40px;
    margin-inline: 16px;
  }
}
.pk-experience .pk-experience-badge-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 50px;
  height: 50px;
  background: #f5f2ea;
  border-radius: 50%;
}
.pk-experience .pk-experience-badge-icon img {
  width: 60%;
  height: 60%;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
}
.pk-experience .pk-experience-badge-text {
  text-align: center;
  line-height: 1.2;
}
.pk-experience .pk-experience-badge-text strong {
  display: block;
  font-size: 15px;
  line-height: inherit;
  margin-bottom: 5px;
  color: #152124;
}
.pk-experience .pk-experience-badge-text span {
  font-size: 12.5px;
  line-height: inherit;
  color: #244349;
}
.pk-experience .pk-experience-lead {
  max-width: 56ch;
  margin: 0 0 clamp(22px, 2.8vw, 32px);
  font-style: italic;
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  color: #244349;
}
.pk-experience .pk-experience-split {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(15px, 2vw, 20px) 0;
  margin-bottom: 6px;
  border-top: 1px solid #e6e3da;
}
.pk-experience .pk-experience-split-block h3 {
  margin: 0 0 6px;
  font-family: var(--heading-font-family);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  font-weight: 600;
  color: #b8941f;
}
.pk-experience .pk-experience-split-block p {
  margin: 0;
  font-size: 0.92rem;
  color: #212529;
}
.pk-experience .pk-experience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 clamp(28px, 3.4vw, 38px);
  margin-top: 0;
  padding: 0;
  list-style: none;
}
.pk-experience .pk-experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #152124;
}
.pk-experience .pk-experience-list strong {
  font-weight: 600;
}
.pk-experience .pk-experience-check {
  display: grid;
  flex: none;
  place-items: center;
  min-width: 30px;
  height: 22px;
  margin-top: 3px;
  padding: 0 6px;
  font-family: var(--font-family-style4);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  background: #c9a227;
  border-radius: 50px;
}
.pk-experience .pk-experience-closing {
  max-width: 54ch;
  margin: 0;
  padding: 10px;
  padding-left: 16px;
  font-size: 0.96rem;
  color: #212529;
  background: linear-gradient(to right, rgba(201, 162, 39, 0.08), white);
  border-left: 2px solid #c9a227;
}

.open-btn {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 900;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.open-btn:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.open-btn:focus-visible {
  outline: 3px solid #b8941f;
  outline-offset: 3px;
}

.open-btn.hide-near-bottom,
.wa-float-btn.hide-near-bottom,
.mobile-bottom-bar.hide-near-bottom {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(24px) !important;
  pointer-events: none !important;
}

@media (max-width: 560px) {
  .open-btn {
    left: 14px;
    bottom: 14px;
  }
}
.wa-float-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float-btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(18%) hue-rotate(171deg) brightness(106%) contrast(100%);
  -o-object-fit: contain;
     object-fit: contain;
}
.wa-float-btn .wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #152124;
  color: #ffffff;
  font-family: var(--body-font-family);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wa-float-btn .wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #152124;
}
.wa-float-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}
.wa-float-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.wa-float-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 576px) {
  .open-btn,
  .wa-float-btn {
    display: none !important;
  }
  .mobile-bottom-bar {
    display: flex !important;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 950;
    height: 54px;
    background: #2f555d;
    border: 2px solid #2f555d;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease, visibility 0.35s ease;
    align-items: center;
  }
  .mobile-bottom-bar .mobile-bar-btn {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.3s ease, opacity 0.3s ease;
  }
  .mobile-bottom-bar .mobile-bar-btn:active {
    opacity: 0.9;
  }
  .mobile-bottom-bar .enroll-btn {
    background: #2f555d;
    color: #ffffff;
  }
  .mobile-bottom-bar .enroll-btn .bar-icon {
    color: #ffffff;
    flex-shrink: 0;
  }
  .mobile-bottom-bar .enroll-btn .bar-title {
    font-family: var(--heading-font-family);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    margin: 0 6px;
  }
  .mobile-bottom-bar .enroll-btn .bar-arrow {
    color: #ffffff;
    flex-shrink: 0;
  }
  .mobile-bottom-bar .wa-btn {
    background: #ffffff;
    color: #2f555d;
    border-left: 2px solid #2f555d;
  }
  .mobile-bottom-bar .wa-btn .bar-icon.wa-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
    -o-object-fit: contain;
       object-fit: contain;
    flex-shrink: 0;
  }
  .mobile-bottom-bar .wa-btn .bar-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
    margin: 0 4px;
  }
  .mobile-bottom-bar .wa-btn .bar-title {
    font-family: var(--heading-font-family);
    font-size: 0.88rem;
    font-weight: 700;
    color: #2f555d;
    white-space: nowrap;
  }
  .mobile-bottom-bar .wa-btn .bar-sub {
    font-family: var(--body-font-family);
    font-size: 0.7rem;
    font-weight: 600;
    color: #8a968f;
    margin-top: 1px;
    white-space: nowrap;
  }
  .mobile-bottom-bar .wa-btn .bar-arrow {
    color: #2f555d;
    flex-shrink: 0;
  }
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(15, 38, 35, 0.75), rgba(4, 14, 13, 0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.popup-overlay.popup-open {
  opacity: 1;
  visibility: visible;
}

.spark-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  border-radius: 50%;
  background: #c9a227;
  box-shadow: 0 0 6px 1px #c9a227;
  opacity: 0;
}

@keyframes spark-fly {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: var(--travel) scale(1);
  }
}
.pop-modal {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: #f5f2ea;
  border-radius: clamp(16px, 4vw, 8px * 2);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}
.popup-open .pop-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.pop-modal-header {
  background: linear-gradient(135deg, #2f555d, #244349);
  padding: clamp(10px, 2.5vw, 14px) clamp(14px, 4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.pop-modal-header .header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 3vw, 16px);
  margin: 0 auto;
}
.pop-modal-header .logo-link {
  display: flex;
  align-items: center;
}
.pop-modal-header .modal-logo-img {
  height: clamp(28px, 6vw, 38px);
  width: auto;
  max-width: clamp(120px, 30vw, 170px);
  -o-object-fit: contain;
     object-fit: contain;
}
.pop-modal-header .form-tag-pill {
  font-family: var(--heading-font-family);
  color: #c9a227;
  font-size: clamp(0.75rem, 2.2vw, 0.95rem);
  font-style: italic;
  background: transparent;
  border: 1.5px solid #c9a227;
  padding: clamp(3px, 1vw, 5px) clamp(10px, 2.5vw, 18px);
  border-radius: 50px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pop-modal-header .close-btn {
  position: absolute;
  right: clamp(10px, 3vw, 20px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(28px, 7vw, 32px);
  height: clamp(28px, 7vw, 32px);
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2f555d;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.pop-modal-header .close-btn:hover {
  transform: translateY(-50%) rotate(90deg);
}
.pop-modal-header .close-btn:focus-visible {
  outline: 3px solid #b8941f;
  outline-offset: 2px;
}

.pop-modal-body {
  padding: clamp(14px, 3vw, 18px) clamp(14px, 4vw, 28px) clamp(14px, 3.5vw, 20px);
  overflow-y: auto;
}

.ornament-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 12px);
  margin-bottom: clamp(4px, 1.5vw, 8px);
}
.ornament-row .ornament-line {
  flex: 1;
  height: 1px;
  background: #c9a227;
  position: relative;
  max-width: clamp(60px, 20vw, 130px);
}
.ornament-row .ornament-line::before, .ornament-row .ornament-line::after {
  content: "◆";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a227;
  font-size: 0.55rem;
}
.ornament-row .ornament-line::before {
  left: -6px;
}
.ornament-row .ornament-line::after {
  right: -6px;
}
.ornament-row .om-badge {
  width: clamp(38px, 9vw, 54px);
  height: clamp(38px, 9vw, 54px);
  flex-shrink: 0;
}

.heading {
  display: block;
  text-align: center;
  font-family: var(--heading-font-family);
  font-weight: 700;
  color: #2f555d;
  font-size: clamp(1.15rem, 3.8vw, 1.5rem);
  line-height: 1.25;
}
.heading .script {
  display: inline-block;
  font-style: italic;
  color: #b8941f;
  font-weight: 600;
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  margin: 0 4px;
}
@media (max-width: 576px) {
  .heading br {
    display: none;
  }
}

.subtext {
  text-align: center;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  color: #212529;
  margin: clamp(4px, 1.5vw, 8px) 0 clamp(8px, 2.5vw, 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 10px);
}
.subtext::before, .subtext::after {
  content: "◆";
  color: #c9a227;
  font-size: 0.5rem;
}

.popup-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.8vw, 10px);
}
.popup-enquiry-form .form-row {
  display: flex;
  gap: clamp(6px, 1.8vw, 10px);
}
.popup-enquiry-form .form-row .field {
  flex: 1;
  padding: 0;
}
.popup-enquiry-form .field {
  position: relative;
  width: 100%;
}
.popup-enquiry-form .field input,
.popup-enquiry-form .field select,
.popup-enquiry-form .field textarea {
  width: 100%;
  font-family: var(--body-font-family);
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  color: #152124;
  background: #ffffff;
  border: 1.5px solid #e6e3da;
  border-radius: 8px;
  padding: clamp(9px, 2vw, 12px) 16px clamp(9px, 2vw, 12px) 46px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.popup-enquiry-form .field input:focus,
.popup-enquiry-form .field select:focus,
.popup-enquiry-form .field textarea:focus {
  border-color: #c9a227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.popup-enquiry-form .field textarea {
  padding-left: 46px;
  padding-top: 12px;
  resize: vertical;
  min-height: clamp(55px, 12vh, 70px);
}
.popup-enquiry-form .field .icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: block;
  margin: 0;
  color: #2f555d;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
.popup-enquiry-form .field:has(textarea) .icon,
.popup-enquiry-form .field textarea ~ .icon,
.popup-enquiry-form .field textarea + .icon {
  top: 16px;
  transform: none;
}
.popup-enquiry-form .field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.popup-enquiry-form .field select optgroup {
  font-family: var(--body-font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2f555d;
  background: #f4f1ea;
  padding: 6px 0;
}
.popup-enquiry-form .field select option {
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  color: #152124;
  background: #ffffff;
  padding: 6px 10px;
}
.popup-enquiry-form .field.select-field .chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: block;
  margin: 0;
  color: #2f555d;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
.popup-enquiry-form .phone-field {
  display: flex;
  border: 1.5px solid #e6e3da;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.popup-enquiry-form .phone-field:focus-within {
  border-color: #c9a227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.popup-enquiry-form .phone-field .phone-icon {
  display: flex;
  align-items: center;
  padding: 0 clamp(8px, 2vw, 12px) 0 clamp(10px, 2.5vw, 15px);
  color: #2f555d;
}
.popup-enquiry-form .phone-field .phone-icon svg {
  width: clamp(16px, 4vw, 19px);
  height: clamp(16px, 4vw, 19px);
}
.popup-enquiry-form .phone-field .code {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-left: 1.5px solid #e6e3da;
  border-right: 1.5px solid #e6e3da;
  font-size: clamp(0.88rem, 2.5vw, 1.02rem);
  color: #152124;
  white-space: nowrap;
}
.popup-enquiry-form .phone-field .code .flag {
  font-size: 1rem;
}
.popup-enquiry-form .phone-field input {
  border: none;
  border-radius: 0;
  padding: clamp(8px, 2vw, 10px) clamp(10px, 2.5vw, 16px);
}
.popup-enquiry-form .phone-field input:focus {
  box-shadow: none;
}
.popup-enquiry-form .submit-btn {
  margin-top: 2px;
  background: linear-gradient(135deg, #2f555d, #244349);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: clamp(10px, 2.5vw, 12px) clamp(14px, 3.5vw, 20px);
  font-family: var(--heading-font-family);
  font-size: clamp(0.92rem, 3vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2vw, 12px);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.popup-enquiry-form .submit-btn .btn-text {
  white-space: nowrap;
}
.popup-enquiry-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 85, 93, 0.4);
}
.popup-enquiry-form .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.popup-enquiry-form .submit-btn .leaf {
  width: clamp(24px, 6vw, 40px);
  height: auto;
  aspect-ratio: 40/16;
  opacity: 0.9;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(61%) sepia(66%) saturate(478%) hue-rotate(8deg) brightness(93%) contrast(91%);
}
.popup-enquiry-form .submit-btn .arrow {
  width: clamp(16px, 4vw, 20px);
  height: clamp(16px, 4vw, 20px);
  color: #c9a227;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.popup-enquiry-form .submit-btn:hover .arrow {
  transform: translateX(5px);
}

.form-alert {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.form-alert.success {
  display: block;
  background: #e6f4ea;
  color: #137333;
  border: 1px solid #ceead6;
}
.form-alert.error {
  display: block;
  background: #fce8e6;
  color: #c5221f;
  border: 1px solid #fad2cf;
}

.info-bar,
.note-bar {
  margin-top: clamp(5px, 1.5vw, 8px);
  border-radius: 8px;
  padding: clamp(6px, 1.8vw, 8px) clamp(8px, 2vw, 12px);
  font-size: clamp(0.72rem, 2.2vw, 0.82rem);
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.8vw, 8px);
  line-height: 1.2;
}
.info-bar span,
.note-bar span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-bar {
  background: #eef0ec;
  color: #212529;
}
.info-bar svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: #2f555d;
  border-radius: 50%;
  padding: 2px;
  color: #ffffff;
}

.note-bar {
  background: #fbe9d6;
  color: #6b4a24;
  border-left: 3px solid #c9a227;
}
.note-bar svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #c9a227;
}
.note-bar b {
  color: #b8941f;
  font-size: inherit;
}

@media (max-width: 560px) {
  .popup-overlay {
    padding: clamp(10px, 2vw, 16px) clamp(8px, 2vw, 12px);
  }
  .popup-enquiry-form .form-row {
    flex-direction: column;
    gap: clamp(6px, 1.8vw, 10px);
  }
}
.iti {
  width: 100%;
}
.iti .iti__selected-flag {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px 0 0 8px;
  padding: 0 8px 0 12px;
  font-family: var(--body-font-family);
  font-size: 0.95rem;
}
.iti .iti__country-list {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: var(--body-font-family);
  z-index: 1100;
}

.ty-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 10vw, 120px) 24px clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 40%), rgba(201, 162, 39, 0.16), transparent 60%), linear-gradient(155deg, rgba(27, 52, 56, 0.88) 0%, rgba(36, 67, 73, 0.91) 45%, rgba(31, 61, 66, 0.88) 100%), url("../img/how-to-reach.webp") center/cover no-repeat;
}
.ty-stage::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 46px);
  pointer-events: none;
}
.ty-stage::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 80;
  opacity: 0.6;
}

.ty-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: #c9a227;
  color: #152124;
  padding: 9px 0;
  z-index: 5;
  white-space: nowrap;
}

.ty-marquee-track {
  display: inline-flex;
  animation: tyScrollLeft 22s linear infinite;
}
.ty-marquee-track span {
  font-family: var(--body-font-family);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.ty-marquee-track span::after {
  content: "✦";
  opacity: 0.7;
}

@keyframes tyScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ty-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.ty-headline-block {
  position: relative;
  padding: 20px 30px 20px 4px;
}

.ty-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-style4);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffa64d;
  margin-bottom: 26px;
  opacity: 0;
  animation: tyFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.ty-kicker .ty-dash {
  width: 34px;
  height: 1.5px;
  background: #ffa64d;
  display: inline-block;
}

.ty-mega {
  font-family: var(--heading-font-family);
  font-weight: 800;
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.ty-mega .ty-line {
  display: block;
  overflow: hidden;
}
.ty-mega .ty-line span {
  display: block;
  transform: translateY(105%);
  animation: tyLineUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ty-mega .ty-line:nth-child(1) span {
  animation-delay: 0.25s;
}
.ty-mega .ty-line:nth-child(2) span {
  animation-delay: 0.38s;
  color: #c9a227;
  font-style: italic;
  font-family: var(--font-family-style3);
  font-weight: 400;
  letter-spacing: 0;
}

@keyframes tyLineUp {
  to {
    transform: translateY(0);
  }
}
.ty-sub {
  margin-top: 28px;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 242, 234, 0.65);
  opacity: 0;
  animation: tyFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.ty-stamp {
  position: absolute;
  top: -6px;
  right: 36px;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-16deg) scale(0);
  animation: tyStampDown 0.55s cubic-bezier(0.2, 1.4, 0.5, 1) 0.95s forwards, tyWobble 5s ease-in-out 1.6s infinite;
}

@keyframes tyStampDown {
  0% {
    transform: rotate(-16deg) scale(2.4);
    opacity: 0;
  }
  55% {
    transform: rotate(-14deg) scale(0.92);
    opacity: 1;
  }
  75% {
    transform: rotate(-15deg) scale(1.06);
  }
  100% {
    transform: rotate(-14deg) scale(1);
    opacity: 1;
  }
}
@keyframes tyWobble {
  0%, 100% {
    transform: rotate(-14deg);
  }
  50% {
    transform: rotate(-11deg);
  }
}
.ty-stamp-ring {
  position: absolute;
  inset: 0;
  border: 2.5px solid #ffa64d;
  border-radius: 50%;
}
.ty-stamp-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 166, 77, 0.6);
  border-radius: 50%;
}

.ty-stamp-text {
  font-family: var(--heading-font-family);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #ffa64d;
  text-align: center;
  line-height: 1.3;
}
.ty-stamp-text small {
  display: block;
  font-family: var(--body-font-family);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-top: 2px;
  opacity: 0.8;
}

.ty-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: tyFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}
.ty-cta-row .ty-btn {
  flex: 1;
  justify-content: center;
  min-width: 140px;
}

.ty-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--body-font-family);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  padding: 15px 26px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.ty-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ty-btn-fill {
  background: #c9a227;
  color: #152124;
}
.ty-btn-fill:hover {
  background: #ffffff;
  box-shadow: 0 14px 30px -10px rgba(201, 162, 39, 0.5);
}

.ty-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.ty-btn-outline:hover {
  border-color: #ffa64d;
  color: #ffa64d;
}

.ty-btn.whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
  border: none;
}
.ty-btn.whatsapp .ty-icon, .ty-btn.whatsapp .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  filter: brightness(0) invert(1);
}
.ty-btn.whatsapp:hover {
  background: #1ebe5d !important;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.55);
  color: #ffffff !important;
}

@keyframes tyFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ty-ticket-wrap {
  perspective: 1400px;
  opacity: 0;
  animation: tyFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.ty-ticket {
  position: relative;
  background: #f5f2ea;
  color: #152124;
  border-radius: 18px;
  transform: rotate(3.5deg);
  box-shadow: 0 40px 70px -25px rgba(0, 0, 0, 0.55);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ty-ticket:hover {
  transform: rotate(0deg) translateY(-4px);
}

.ty-ticket-top {
  padding: 26px 28px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.ty-ticket-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ty-ticket-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #2f555d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-ticket-brand-mark svg {
  width: 17px;
  height: 17px;
  color: #c9a227;
}

.ty-ticket-brand-name {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 14.5px;
  color: #152124;
  line-height: 1.2;
}
.ty-ticket-brand-name small {
  display: block;
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 10.5px;
  color: #8a968f;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.ty-ticket-status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(47, 85, 93, 0.09);
  color: #2f555d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
}

.ty-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f555d;
  position: relative;
  flex-shrink: 0;
}
.ty-pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid #2f555d;
  animation: tyPulseRing 1.8s ease-out infinite;
}

@keyframes tyPulseRing {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.ty-ticket-body {
  padding: 4px 28px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.ty-ticket-field {
  min-width: 0;
}
.ty-ticket-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a968f;
  margin-bottom: 5px;
}
.ty-ticket-field div {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: 16.5px;
  color: #152124;
}
.ty-ticket-field.ty-span2 {
  grid-column: 1/-1;
}
.ty-ticket-field.ty-span2 div {
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.6;
  color: #212529;
}

.ty-perforation {
  position: relative;
  height: 0;
  margin: 6px 0 4px;
}
.ty-perforation::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-top: 2px dashed #e6e3da;
}

.ty-notch {
  position: absolute;
  top: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #244349;
}
.ty-notch.left {
  left: -13px;
}
.ty-notch.right {
  right: -13px;
}

.ty-ticket-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  pointer-events: none;
}
.ty-ticket-scan .ty-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;
  top: -70px;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.22), transparent);
  animation: tyScanMove 4.5s ease-in-out 2.4s infinite;
}

@keyframes tyScanMove {
  0% {
    top: -70px;
  }
  45% {
    top: 105%;
  }
  100% {
    top: 105%;
  }
}
.ty-ticket-actions {
  padding: 18px 28px 26px;
  display: flex;
  gap: 10px;
}

.ty-tag-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body-font-family);
  font-weight: 700;
  font-size: 13px;
  padding: 13px 10px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.ty-tag-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ty-tag-primary {
  background: #2f555d;
  color: #ffffff;
}
.ty-tag-primary:hover {
  background: #244349;
}

.ty-tag-ghost {
  background: transparent;
  border: 1.5px solid #e6e3da;
  color: #152124;
}
.ty-tag-ghost:hover {
  border-color: #c9a227;
  color: #b8941f;
}

.ty-tag-whatsapp {
  background: #25D366;
  color: #ffffff;
  border: none;
}
.ty-tag-whatsapp .ty-icon {
  filter: brightness(0) invert(1);
}
.ty-tag-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.ty-barcode {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 0 28px 22px;
  width: 100%;
  box-sizing: border-box;
}
.ty-barcode i {
  display: block;
  flex: 1;
  min-width: 2px;
  background: #152124;
  opacity: 0.22;
  border-radius: 1px;
}

.ty-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

.ty-ref {
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #8a968f;
  padding-bottom: 20px;
}

.ty-stage ~ * .mobile-bottom-bar,
body:has(.ty-stage) .mobile-bottom-bar,
body:has(.ty-stage) .floating-whatsapp,
body:has(.ty-stage) .whatsapp-float,
body:has(.ty-stage) #mobileBottomBar,
body:has(.ty-stage) .mobile-bar-wrap {
  display: none !important;
}

@media (max-width: 980px) {
  .ty-stage {
    padding: clamp(80px, 10vw, 100px) 20px clamp(50px, 8vw, 80px);
  }
  .ty-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 16px;
  }
  .ty-headline-block {
    padding: 0 4px;
    text-align: left;
  }
  .ty-stamp {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 100px;
    height: 100px;
  }
  .ty-stamp-text {
    font-size: 12px;
  }
  .ty-kicker {
    padding-right: 120px;
  }
  .ty-ticket {
    transform: rotate(0deg);
  }
  .ty-ticket-wrap {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .ty-cta-row {
    gap: 12px;
  }
}
@media (max-width: 576px) {
  .ty-stage {
    padding: 80px 16px 50px;
    align-items: flex-start;
  }
  .ty-wrap {
    gap: 36px;
    margin-top: 10px;
  }
  .ty-headline-block {
    padding: 0;
  }
  .ty-stamp {
    position: relative;
    top: auto;
    right: auto;
    width: 80px;
    height: 80px;
    display: inline-flex;
    margin: 16px 0 0 0;
    transform: rotate(-14deg) scale(1);
    animation: tyWobble 5s ease-in-out 1.6s infinite;
  }
  .ty-kicker {
    padding-right: 0;
  }
  .ty-mega {
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1;
  }
  .ty-sub {
    font-size: 14.5px;
    line-height: 1.7;
    margin-top: 20px;
  }
  .ty-cta-row {
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }
  .ty-cta-row .ty-btn {
    width: 100%;
    justify-content: center;
  }
  .ty-ticket-body {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }
  .ty-ticket-top {
    padding: 20px 20px 16px;
  }
  .ty-ticket-body {
    padding: 4px 20px 16px;
  }
  .ty-ticket-actions {
    padding: 14px 20px 20px;
    flex-direction: column;
    gap: 8px;
  }
  .ty-barcode {
    padding: 0 20px 18px;
  }
}
.nf-section {
  background-image: url("../img/mask-pattern/bg-pattern.webp");
  background-repeat: repeat;
  background-size: 1866px auto;
  background-blend-mode: multiply;
  background-color: #f5f2ea;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 78vh;
  padding: clamp(110px, 13vw, 175px) 0 clamp(65px, 8vw, 110px);
}
.nf-section::before {
  content: "";
  position: absolute;
  top: clamp(60px, 9vw, 130px);
  left: 50%;
  width: min(760px, 92vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 162, 39, 0.16) 0%, rgba(201, 162, 39, 0.05) 42%, transparent 68%);
  pointer-events: none;
}
.nf-section .nf-wrap {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.nf-section .nf-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.4vw, 18px);
  margin-bottom: clamp(18px, 3vw, 34px);
  line-height: 1;
}
.nf-section .nf-digit {
  font-family: var(--heading-font-family);
  font-weight: 700;
  font-size: clamp(88px, 19vw, 210px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: #2f555d;
  background: linear-gradient(150deg, #2f555d 0%, #244349 55%, rgba(184, 148, 31, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nf-section .nf-ring {
  display: block;
  width: clamp(78px, 17vw, 186px);
  aspect-ratio: 1;
  color: #c9a227;
}
.nf-section .nf-ring svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.nf-section .nf-ring .nf-ring-outer {
  transform-origin: 50% 50%;
  animation: nfRingSpin 34s linear infinite;
}
.nf-section .nf-ring .nf-ring-petals {
  color: #2f555d;
  stroke: #2f555d;
  opacity: 0.55;
}
.nf-section .nf-content .heading-wrap {
  margin-bottom: clamp(26px, 3.4vw, 40px);
}
.nf-section .nf-content .para {
  max-width: 620px;
  margin: 0 auto;
}
.nf-section .nf-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.nf-section .nf-links {
  margin-top: clamp(48px, 6vw, 82px);
}
.nf-section .nf-links-label {
  font-family: var(--body-font-family);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a968f;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.nf-section .nf-links-label::before, .nf-section .nf-links-label::after {
  content: "";
  height: 1px;
  width: clamp(28px, 8vw, 90px);
  background: linear-gradient(90deg, transparent, #e6e3da);
}
.nf-section .nf-links-label::after {
  background: linear-gradient(90deg, #e6e3da, transparent);
}
.nf-section .nf-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.nf-section .nf-link a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 18px 20px;
  border: 1px solid #e6e3da;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.nf-section .nf-link a:hover, .nf-section .nf-link a:focus-visible {
  border-color: rgba(47, 85, 93, 0.42);
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(36, 67, 73, 0.1);
}
.nf-section .nf-link a:hover .nf-link-arrow, .nf-section .nf-link a:focus-visible .nf-link-arrow {
  background: #2f555d;
  border-color: #2f555d;
  color: #ffffff;
  transform: translateX(3px);
}
.nf-section .nf-link a:focus-visible {
  outline: 2px solid #2f555d;
  outline-offset: 3px;
}
.nf-section .nf-link-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 1 auto;
  min-width: 0;
}
.nf-section .nf-link-text strong {
  font-family: var(--heading-font-family);
  font-size: clamp(15px, 14px + 0.3vw, 18px);
  font-weight: 600;
  color: #152124;
}
.nf-section .nf-link-text span {
  font-size: 13.5px;
  color: #8a968f;
}
.nf-section .nf-link-arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid #e6e3da;
  border-radius: 50%;
  color: #2f555d;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.nf-section .nf-link-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-1px, 1px);
}
@media (max-width: 575.98px) {
  .nf-section .nf-actions .theme-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nf-section .nf-ring .nf-ring-outer {
    animation: none;
  }
}

@keyframes nfRingSpin {
  to {
    transform: rotate(360deg);
  }
}
.curriculum-video-cards {
  position: relative;
  margin-top: clamp(24px, 3vw, 36px);
}

@keyframes cvFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cv-card {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #F0E2C8;
  padding: 20px;
  cursor: pointer;
  background: radial-gradient(circle at top left, rgba(255, 224, 170, 0.28), transparent 45%), linear-gradient(180deg, #FFFDF8 0%, #FFF9F0 45%, #FFFDF8 100%);
  box-shadow: 0 12px 40px rgba(80, 55, 20, 0.08);
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease, transform 0.35s ease;
}
.cv-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 213, 140, 0.25), transparent 70%);
  filter: blur(60px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}
.cv-card.active {
  display: block;
  animation: cvFadeUp 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.cv-card:hover {
  box-shadow: 0 20px 55px rgba(80, 55, 20, 0.13);
  border-color: #DCC18E;
}
.cv-card:hover .cv-thumb img {
  transform: scale(1.02);
}
.cv-card:hover .cv-play {
  box-shadow: 0 14px 40px rgba(47, 93, 80, 0.38);
  transform: translate(-50%, -50%) scale(1.08);
}
.cv-card:hover .cv-badge {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(187, 145, 67, 0.22);
}

.cv-lotus-mark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 170px;
  height: 170px;
  color: #B8860B;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.cv-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #DCC18E;
  background: linear-gradient(180deg, #FFFDF8, #F7ECD8);
  color: #295646;
  font-family: var(--heading-font-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(187, 145, 67, 0.15);
  margin-bottom: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cv-title {
  position: relative;
  z-index: 1;
  font-family: var(--heading-font-family);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  color: #233A32;
  margin: 0 0 6px;
  line-height: 1.3;
}
.cv-title::after {
  content: "";
  display: block;
  margin-top: 8px;
  margin-bottom: 14px;
  width: 65px;
  height: 4px;
  background: linear-gradient(90deg, #D79C2D, #F5D27A);
  border-radius: 999px;
}

.cv-thumb-wrap {
  position: relative;
  z-index: 1;
  background: #FFF;
  border: 1px solid #F3E4C8;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cv-thumb {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.cv-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cv-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 20, 5, 0.28) 100%);
  border-radius: inherit;
  pointer-events: none;
}

.cv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2F5D50, #4E8B76);
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(47, 93, 80, 0.28);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cv-play svg {
  margin-left: 3px;
}

.cv-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cv-modal.active {
  opacity: 1;
  visibility: visible;
}
.cv-modal.active .cv-modal-inner {
  transform: scale(1);
}

.cv-modal-inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000000;
  border-radius: 14px;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cv-modal-inner iframe,
.cv-modal-inner video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.cv-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: 10;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.cv-modal-close:hover {
  opacity: 1;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 50px);
  align-items: start;
}
@media (min-width: 992px) {
  .curriculum-grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

.curriculum-head {
  padding-top: 10px;
}
@media (min-width: 992px) {
  .curriculum-head {
    position: sticky;
    top: clamp(100px, 12vw, 140px);
  }
}

@media (max-width: 575px) {
  .curriculum-head .heading-wrap {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .curriculum-head .heading-wrap .common-heading::after {
    margin-inline: auto;
  }
  .cv-card {
    padding: 14px;
    border-radius: 18px;
  }
  .cv-badge {
    height: 26px;
    padding: 0 13px;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .cv-lotus-mark {
    width: 120px;
    height: 120px;
  }
}
.accordion-list {
  --acc-dot: 12px;
  --acc-rail-x: 20px;
  --acc-pad-left: 52px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.accordion-list::before {
  content: "";
  position: absolute;
  left: calc(var(--acc-rail-x) - 1px);
  top: var(--acc-rail-top, clamp(26px, 3.4vw, 34px));
  bottom: var(--acc-rail-bottom, 50px);
  width: 2px;
  background: linear-gradient(180deg, #2f555d, rgba(47, 85, 93, 0.18));
  border-radius: 2px;
  pointer-events: none;
}

.accordion-item {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(36, 67, 73, 0.06);
  border: 1px solid rgba(36, 67, 73, 0.08);
  overflow: visible;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin-left: var(--acc-pad-left, 52px);
  margin-bottom: 12px;
}
.accordion-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--acc-pad-left, 52px) + var(--acc-rail-x, 20px) - var(--acc-dot, 12px) / 2);
  top: clamp(20px, 2.8vw, 28px);
  width: var(--acc-dot, 12px);
  height: var(--acc-dot, 12px);
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #2f555d;
  z-index: 2;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.accordion-item::after {
  content: "";
  position: absolute;
  left: calc(-1 * var(--acc-pad-left, 52px) + var(--acc-rail-x, 20px) - var(--acc-dot, 12px) / 2);
  top: clamp(20px, 2.8vw, 28px);
  width: var(--acc-dot, 12px);
  height: var(--acc-dot, 12px);
  border-radius: 50%;
  border: 2px solid #2f555d;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.accordion-item.open {
  background: #244349;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(36, 67, 73, 0.15);
  border-color: #244349;
}
.accordion-item.open::before {
  background: #2f555d;
  box-shadow: 0 0 0 4px rgba(47, 85, 93, 0.18);
}
.accordion-item.open::after {
  animation: accDotPulse 2.2s ease-out infinite;
}
.accordion-item.open .accordion-toggle {
  color: #ffffff;
}
.accordion-item.open .accordion-number {
  color: rgba(255, 255, 255, 0.7);
}
.accordion-item.open .accordion-icon {
  background: #ffffff;
  color: #244349;
}
.accordion-item.open .accordion-icon::after {
  transform: translateY(2px) rotate(225deg);
}
.accordion-item.open .accordion-panel {
  color: rgba(255, 255, 255, 0.9);
}
.accordion-item.open .accordion-panel p,
.accordion-item.open .accordion-panel strong {
  color: inherit;
}
.accordion-item.open .accordion-panel ul li::before {
  background-color: #ffffff;
}

.accordion-panel {
  overflow: hidden;
}

@keyframes accDotPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  padding: clamp(16px, 2.5vw, 24px) clamp(20px, 3vw, 32px);
  background: none;
  border: none;
  color: #152124;
  font-family: var(--heading-font-family);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}
.accordion-toggle:hover .accordion-icon {
  background: #2f555d;
  color: #ffffff;
}

.accordion-title {
  flex: 1;
  margin-left: 16px;
}

.accordion-number {
  font-family: var(--heading-font-family);
  font-weight: 700;
  color: #2f555d;
  font-size: clamp(15px, 1.2vw, 17px);
}
.accordion-number::after {
  content: ".";
}

.accordion-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4f4f4;
  color: #152124;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 0;
}
.accordion-icon::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 clamp(20px, 3vw, 32px);
  font-size: 15px;
  line-height: 1.7;
  color: #212529;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.open .accordion-panel {
  padding-bottom: clamp(20px, 3vw, 32px);
}

.accordion-panel p {
  margin-bottom: 12px;
}
.accordion-panel p:last-child {
  margin-bottom: 0;
}
.accordion-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.accordion-panel ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.accordion-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2f555d;
  transition: background-color 0.3s ease;
}
.accordion-panel ul:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .accordion-list {
    --acc-pad-left: 0px;
  }
  .accordion-list::before {
    display: none;
  }
  .accordion-item::before, .accordion-item::after {
    display: none;
  }
}
.excursion-section .excursion-slider .excursion-track {
  --slider-per-view: 4;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 1199.98px) {
  .excursion-section .excursion-slider .excursion-track {
    --slider-per-view: 3;
  }
}
@media (max-width: 767.98px) {
  .excursion-section .excursion-slider .excursion-track {
    --slider-per-view: 2;
  }
}
@media (max-width: 575.98px) {
  .excursion-section .excursion-slider .excursion-track {
    --slider-per-view: 1;
  }
  .excursion-section .excursion-card {
    --arch: 60px;
    height: 340px;
  }
}
.excursion-section .excursion-card {
  --arch: clamp(70px, 9vw, 130px);
  position: relative;
  display: block;
  height: 440px;
  padding: 11px;
  text-decoration: none;
}
.excursion-section .excursion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: calc(var(--arch) + 11px) calc(var(--arch) + 11px) 22px 22px;
  transition: border-color 0.3s ease;
  pointer-events: none;
}
.excursion-section .excursion-card::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 3;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  background: linear-gradient(135deg, #ffa64d, #c9a227);
}
.excursion-section .excursion-card .excursion-media {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--arch) var(--arch) 12px 12px;
}
.excursion-section .excursion-card .excursion-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background: linear-gradient(to top, rgba(21, 33, 36, 0.9) 0%, rgba(21, 33, 36, 0.42) 48%, rgba(21, 33, 36, 0) 100%);
  pointer-events: none;
}
.excursion-section .excursion-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.excursion-section .excursion-card .excursion-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}
.excursion-section .excursion-card .excursion-caption .excursion-title {
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
}
.excursion-section .excursion-card .excursion-caption .excursion-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  font-family: var(--font-family-style4);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a227;
}
.excursion-section .excursion-card .excursion-caption .excursion-tag::before, .excursion-section .excursion-card .excursion-caption .excursion-tag::after {
  content: "";
  width: clamp(10px, 1.4vw, 18px);
  height: 1px;
  background: rgba(201, 162, 39, 0.55);
}
.excursion-section .excursion-card:hover img {
  transform: scale(1.06);
}
.excursion-section .excursion-card:hover::before {
  border-color: rgba(201, 162, 39, 0.85);
}

.book-section .book-slider .book-track {
  --slider-per-view: 5;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.book-section .slider-nav--prev {
  left: -22px;
}
.book-section .slider-nav--next {
  right: -22px;
}
.book-section .book-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.book-section .book-link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}
.book-section .book-cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  --shelf-pad: clamp(16px, 1.6vw, 22px);
  height: clamp(240px, 23vw, 310px);
  padding: 22px 22px var(--shelf-pad);
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, #f5f2ea 0%, #efe9dc 100%);
  border-radius: 18px;
}
.book-section .book-cover::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: var(--shelf-pad);
  left: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 33, 36, 0) 0%, rgba(21, 33, 36, 0.16) 22%, rgba(21, 33, 36, 0.16) 78%, rgba(21, 33, 36, 0) 100%);
}
.book-section .book-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  display: block;
  filter: drop-shadow(0 14px 18px rgba(21, 33, 36, 0.28));
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s ease;
}
.book-section .book-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 9px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #2f555d;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 50px;
}
.book-section .book-card:hover .book-cover img {
  transform: translateY(-8px) rotate(-1.6deg);
  filter: drop-shadow(0 22px 26px rgba(21, 33, 36, 0.34));
}
.book-section .book-caption {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 14px;
  text-align: center;
}
.book-section .book-title {
  margin-bottom: 12px;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: #152124;
}
.book-section .book-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  font-family: var(--body-font-family);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #2f555d;
  background: rgba(47, 85, 93, 0.07);
  border-radius: 50px;
  transition: color 0.3s ease, background 0.3s ease;
}
.book-section .book-link:hover .book-download,
.book-section .book-link:focus-visible .book-download {
  color: #ffffff;
  background: #2f555d;
}
.book-section .book-link:focus-visible {
  outline: 2px solid #2f555d;
  outline-offset: 4px;
  border-radius: 18px;
}
.book-section .book-download-icon {
  width: 13px;
  height: 13px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4v12m0 0-4-4m4 4 4-4M5 20h14'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4v12m0 0-4-4m4 4 4-4M5 20h14'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (max-width: 1399.98px) {
  .book-section .book-slider .book-track {
    --slider-per-view: 4;
  }
}
@media (max-width: 1199.98px) {
  .book-section .book-slider .book-track {
    --slider-per-view: 3;
  }
}
@media (max-width: 767.98px) {
  .book-section .book-slider .book-track {
    --slider-per-view: 2;
  }
}
@media (max-width: 480.98px) {
  .book-section .book-slider .book-track {
    --slider-per-view: 1.4;
  }
}

.faq-section .faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(30px, 5vw, 70px);
  margin-top: clamp(20px, 3vw, 36px);
}
.faq-section .faq-side-text {
  max-width: 260px;
  color: #8a968f;
  line-height: 1.7;
}
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
}
.faq-section .faq-item {
  border-bottom: 1px solid #e6e3da;
}
.faq-section .faq-item:first-child {
  border-top: 1px solid #e6e3da;
}
.faq-section .faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: #2f555d;
}
.faq-section .faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.4vw, 26px) 0;
  cursor: pointer;
  list-style: none;
}
.faq-section .faq-toggle::-webkit-details-marker {
  display: none;
}
.faq-section .faq-question {
  font-family: var(--heading-font-family);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 600;
  line-height: 1.4;
  color: #152124;
}
.faq-section .faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #8a968f;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-section .faq-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.faq-section .faq-answer {
  padding: 0 32px clamp(18px, 2.4vw, 26px) 0;
  color: #212529;
  line-height: 1.7;
}
@media (max-width: 767.98px) {
  .faq-section .faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .faq-section .faq-side-text {
    max-width: none;
  }
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(30px, 4vw, 48px);
}

.gallery-filter-btn {
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 600;
  color: #152124;
  background: transparent;
  border: 1px solid #e6e3da;
  padding: 11px 26px;
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.gallery-filter-btn:hover {
  color: #2f555d;
  border-color: #2f555d;
}
.gallery-filter-btn.is-active {
  color: #ffffff;
  background: #2f555d;
  border-color: #2f555d;
}

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

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e6e3da;
}
.gallery-item.is-filtered-out {
  display: none;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(0deg, rgba(36, 67, 73, 0.88) 0%, rgba(36, 67, 73, 0.25) 55%, rgba(36, 67, 73, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f2ea;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
}

.gallery-item-title {
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.gallery-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-expand {
  opacity: 1;
  transform: scale(1);
}

.gallery-expand-icon {
  width: 15px;
  height: 15px;
  background: #2f555d;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3H3v5M16 3h5v5M8 21H3v-5M16 21h5v-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3H3v5M16 3h5v5M8 21H3v-5M16 21h5v-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.gallery-empty {
  display: none;
  padding: 60px 20px;
  font-family: var(--font-family-style3);
  font-size: 19px;
  font-style: italic;
  text-align: center;
  color: #8a968f;
}
.gallery-empty.is-visible {
  display: block;
}

@media (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 480.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.94);
}
.lightbox.is-open {
  display: flex;
}

.lightbox-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 84vh;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lightbox.is-open .lightbox-figure {
  opacity: 1;
  transform: scale(1);
}

.lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 74vh;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 18px;
  font-family: var(--font-family-style3);
  font-size: 15px;
  font-style: italic;
  text-align: center;
  color: #f5f2ea;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #f5f2ea;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(47, 85, 93, 0.55);
}

.lightbox-close {
  top: 28px;
  right: 28px;
}

.lightbox-nav--prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav--next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close-icon,
.lightbox-nav-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
}

.lightbox-close-icon {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.lightbox-nav--prev .lightbox-nav-icon {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.lightbox-nav--next .lightbox-nav-icon {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center/contain no-repeat;
}

@media (max-width: 575.98px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox-close,
  .lightbox-nav {
    width: 38px;
    height: 38px;
  }
  .lightbox-close {
    top: 14px;
    right: 14px;
  }
  .lightbox-nav--prev {
    left: 10px;
  }
  .lightbox-nav--next {
    right: 10px;
  }
}
.our-teachers-section {
  position: relative;
  background: #ffffff;
}
.our-teachers-section .teacher-list {
  max-width: 1160px;
  margin: 0 auto;
}
.our-teachers-section .teacher-row {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: start;
  gap: clamp(30px, 5vw, 60px);
  padding: clamp(36px, 6vw, 64px) 0;
}
.our-teachers-section .teacher-row + .our-teachers-section .teacher-row {
  border-top: 1px solid #e6e3da;
}
.our-teachers-section .teacher-row.reverse {
  grid-template-columns: 1fr 300px;
}
.our-teachers-section .teacher-row.reverse .teacher-photo {
  order: 2;
}
.our-teachers-section .teacher-row.reverse .teacher-copy {
  order: 1;
}
.our-teachers-section .row-index {
  position: absolute;
  top: 50px;
  z-index: 0;
  font-family: var(--font-family-style3);
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  color: #152124;
  opacity: 0.05;
  pointer-events: none;
}
.our-teachers-section .teacher-row:not(.reverse) .row-index {
  left: -10px;
}
.our-teachers-section .teacher-row.reverse .row-index {
  right: -10px;
}
.our-teachers-section .teacher-photo {
  position: relative;
  z-index: 1;
}
.our-teachers-section .photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/3.5;
}
.our-teachers-section .photo-frame::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 14px -14px -14px 14px;
  border: 1px solid #c9a227;
}
.our-teachers-section .photo-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 6px solid #ffffff;
  box-shadow: 0 22px 46px -20px rgba(36, 67, 73, 0.3);
}
.our-teachers-section .teacher-row.reverse .photo-frame::before {
  inset: 14px 14px -14px -14px;
}
.our-teachers-section .founder-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  z-index: 2;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
  background: #2f555d;
  border-radius: 50px;
  box-shadow: 0 10px 20px -8px rgba(36, 67, 73, 0.5);
  transform: translateX(-50%);
}
.our-teachers-section .teacher-copy {
  position: relative;
  z-index: 1;
  padding-top: 4px;
}
.our-teachers-section .teacher-name {
  margin: 0 0 6px;
  font-family: var(--heading-font-family);
  font-size: 28px;
  font-weight: 700;
  color: #244349;
}
.our-teachers-section .teacher-role {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f555d;
}
.our-teachers-section .teacher-copy p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #212529;
}
.our-teachers-section .teacher-copy p:last-child {
  margin-bottom: 0;
}
.our-teachers-section .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.our-teachers-section .info-block h4 {
  margin: 0 0 12px;
  font-family: var(--heading-font-family);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8941f;
}
.our-teachers-section .info-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.our-teachers-section .info-block li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #212529;
}
.our-teachers-section .info-block li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #2f555d;
  border-radius: 50%;
}
.our-teachers-section .info-block li:last-child {
  margin-bottom: 0;
}
@media (max-width: 780px) {
  .our-teachers-section .teacher-row,
  .our-teachers-section .teacher-row.reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .our-teachers-section .teacher-row.reverse .teacher-photo {
    order: 1;
  }
  .our-teachers-section .teacher-row.reverse .teacher-copy {
    order: 2;
  }
  .our-teachers-section .photo-frame {
    max-width: 260px;
    margin: 0 auto;
  }
  .our-teachers-section .row-index {
    display: none;
  }
  .our-teachers-section .teacher-name {
    font-size: 22px;
    text-align: center;
  }
  .our-teachers-section .info-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.payment-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0;
}
.payment-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 15px + 0.25vw, 17px);
  font-weight: 500;
  color: #212529;
}

.payment-feature-icon {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: rgba(47, 85, 93, 0.1);
  border: 1px solid rgba(47, 85, 93, 0.35);
  border-radius: 50%;
}
.payment-feature-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #2f555d;
  transform: translate(-50%, -50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.payment-note {
  margin-top: 10px;
  padding-left: 14px;
  font-size: 14px;
  font-style: italic;
  color: #b8941f;
  border-left: 2px solid #c9a227;
}

.payment-qr-card {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  padding: 32px 28px 28px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: clamp(18px, 2vw, 24px);
  box-shadow: 0 30px 60px -28px rgba(36, 67, 73, 0.28);
}

.payment-qr-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffffff;
  background: #2f555d;
  border-radius: 50px;
  box-shadow: 0 10px 20px -8px rgba(36, 67, 73, 0.4);
  transform: translateX(-50%);
}

.payment-qr-frame {
  margin: 18px 0 16px;
  padding: 16px;
  background: #f5f2ea;
  border: 1px solid #e6e3da;
  border-radius: 8px;
}
.payment-qr-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.payment-qr-scan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 600;
  color: #2f555d;
}

.payment-qr-scan-icon {
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8V5a2 2 0 012-2h3M21 8V5a2 2 0 00-2-2h-3M3 16v3a2 2 0 002 2h3M21 16v3a2 2 0 01-2 2h-3'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8V5a2 2 0 012-2h3M21 8V5a2 2 0 00-2-2h-3M3 16v3a2 2 0 002 2h3M21 16v3a2 2 0 01-2 2h-3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.payment-qr-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed #e6e3da;
}

.payment-qr-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #8a968f;
}
.payment-qr-meta-row strong {
  font-weight: 600;
  color: #152124;
}

.payment-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2f555d;
  background: #f5f2ea;
  border-radius: 50px;
}

.payment-secure-icon {
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4v6c0 5-3.5 8.5-8 10-4.5-1.5-8-5-8-10V6z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4v6c0 5-3.5 8.5-8 10-4.5-1.5-8-5-8-10V6z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.payment-gateway-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: clamp(18px, 2vw, 24px);
  box-shadow: 0 14px 40px rgba(36, 67, 73, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.payment-gateway-card:hover {
  box-shadow: 0 24px 55px rgba(36, 67, 73, 0.12);
  transform: translateY(-6px);
}
.payment-gateway-card--razorpay {
  background: linear-gradient(135deg, rgba(47, 85, 93, 0.06), #ffffff 55%);
  border-color: rgba(47, 85, 93, 0.25);
}
.payment-gateway-card--paypal {
  background: linear-gradient(135deg, rgba(255, 166, 77, 0.1), #ffffff 55%);
  border-color: rgba(255, 166, 77, 0.3);
}

.payment-gateway-icon {
  display: flex;
  height: 40px;
  margin-bottom: 22px;
}
.payment-gateway-icon img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.payment-gateway-title {
  margin-bottom: 10px;
  font-family: var(--heading-font-family);
  font-size: 22px;
  font-weight: 700;
  color: #152124;
}

.payment-gateway-desc {
  flex: 1 1 auto;
  margin-bottom: 22px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #212529;
}

.payment-gateway-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.payment-gateway-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  border-left: 2px solid #e6e3da;
}
.payment-gateway-meta strong {
  font-family: var(--heading-font-family);
  font-size: 19px;
  color: #152124;
}
.payment-gateway-meta span {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a968f;
}

.payment-gateway-btn {
  align-self: flex-start;
}
.payment-gateway-btn--paypal {
  --btn-bg: #ffa64d;
  --btn-hover-bg: #244349;
}

.payment-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(34px, 4.5vw, 56px);
}
.payment-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12.5%;
  right: 12.5%;
  z-index: 0;
  border-top: 2px dotted rgba(201, 162, 39, 0.65);
}

.payment-timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.payment-timeline-step p {
  max-width: 240px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: #212529;
}

.payment-timeline-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  background: #2f555d;
  border-radius: 50%;
  box-shadow: 0 0 0 6px #ffffff;
}

.payment-timeline-icon {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  background: rgba(47, 85, 93, 0.08);
  border-radius: 18px;
}
.payment-timeline-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: #2f555d;
  transform: translate(-50%, -50%);
}
.payment-timeline-icon--apply::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M2 20h20M9 8h6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M2 20h20M9 8h6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.payment-timeline-icon--form::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='M8 8h8M8 12h8M8 16h5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='M8 8h8M8 12h8M8 16h5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.payment-timeline-icon--confirm::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 5 8-5M9.5 14.5l2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 5 8-5M9.5 14.5l2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.payment-timeline-icon--seat::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4v6c0 5-3.5 8.5-8 10-4.5-1.5-8-5-8-10V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4v6c0 5-3.5 8.5-8 10-4.5-1.5-8-5-8-10V6z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}

.payment-timeline-title {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #152124;
}

@media (max-width: 820px) {
  .payment-timeline {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .payment-timeline::before {
    display: none;
  }
  .payment-timeline-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    text-align: left;
    background: #ffffff;
    border: 1px solid #e6e3da;
    border-radius: 8px;
  }
  .payment-timeline-media {
    position: relative;
    flex-shrink: 0;
  }
  .payment-timeline-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0;
  }
  .payment-timeline-icon::after {
    width: 24px;
    height: 24px;
  }
  .payment-timeline-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 26px;
    height: 26px;
    margin-bottom: 0;
    font-size: 11px;
    box-shadow: 0 0 0 3px #ffffff;
  }
  .payment-timeline-title {
    margin-bottom: 4px;
  }
  .payment-timeline-step p {
    max-width: none;
    margin: 0;
  }
}
@media (max-width: 420px) {
  .payment-gateway-meta {
    flex-direction: column;
    gap: 12px;
  }
  .payment-qr-card {
    padding: 26px 20px 22px;
  }
}
.payment-timeline-section {
  padding-bottom: clamp(20px, 3vw, 40px);
}

.payment-trust-section {
  padding-top: clamp(20px, 3vw, 40px);
}

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

.payment-trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: 600;
  color: #152124;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.payment-trust-card:hover {
  box-shadow: 0 14px 30px rgba(36, 67, 73, 0.08);
  transform: translateY(-4px);
}

.payment-trust-icon {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #f5f2ea;
  border-radius: 50%;
}
.payment-trust-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #2f555d;
  transform: translate(-50%, -50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4v6c0 5-3.5 8.5-8 10-4.5-1.5-8-5-8-10V6z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l8 4v6c0 5-3.5 8.5-8 10-4.5-1.5-8-5-8-10V6z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.payment-trust-icon--bolt::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 4 14h6l-1 8 9-12h-6z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2 4 14h6l-1 8 9-12h-6z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.payment-trust-icon--tag::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19M7 7a2 2 0 100-4 2 2 0 000 4zM17 21a2 2 0 100-4 2 2 0 000 4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 5 5 19M7 7a2 2 0 100-4 2 2 0 000 4zM17 21a2 2 0 100-4 2 2 0 000 4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.payment-trust-icon--globe::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a15 15 0 010 18 15 15 0 010-18z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a15 15 0 010 18 15 15 0 010-18z'/%3E%3C/svg%3E") center/contain no-repeat;
}

@media (max-width: 991.98px) {
  .payment-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .payment-trust-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .payment-gateway-meta {
    flex-wrap: wrap;
  }
}
.offer-card {
  --card-accent: #2f555d;
  --card-accent-rgb: 47, 93, 80;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e6e3da;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(36, 67, 73, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(36, 67, 73, 0.14);
}
.offer-card:hover .offer-img-wrap img {
  transform: scale(1.05);
}
.offer-card .offer-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.offer-card .offer-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.offer-card .offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--card-accent-rgb), 0.72) 0%, rgba(var(--card-accent-rgb), 0.3) 45%, rgba(var(--card-accent-rgb), 0.06) 100%);
  pointer-events: none;
}
.offer-card .offer-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 15px 6px 6px;
  color: #152124;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  border-radius: 50px;
  font-family: var(--body-font-family);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.offer-card .offer-tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  flex-shrink: 0;
  color: #ffffff;
  background: var(--card-accent);
  border-radius: 50%;
}
.offer-card .offer-tag-icon svg {
  width: 11px;
  height: 11px;
}
.offer-card .offer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 0;
  background: #ffffff;
}
.offer-card .offer-list li.offer-item--extra {
  display: none;
}
.offer-card.is-expanded .offer-list li.offer-item--extra {
  display: flex;
}
.offer-card .offer-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 14px;
  padding: 0;
  font-family: var(--body-font-family);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--card-accent);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.offer-card .offer-more:hover {
  color: #244349;
}
.offer-card .offer-more:focus-visible {
  outline: 2px solid var(--card-accent);
  outline-offset: 3px;
}
.offer-card .offer-more .offer-more-chevron {
  width: 11px;
  height: 11px;
  background: currentColor;
  -webkit-mask: url("../img/icons/arrow-down.svg") center/contain no-repeat;
  mask: url("../img/icons/arrow-down.svg") center/contain no-repeat;
  transition: transform 0.3s ease;
}
.offer-card.is-expanded .offer-more .offer-more-chevron {
  transform: rotate(180deg);
}
.offer-card .offer-intro {
  margin-bottom: 17px;
  padding-bottom: 17px;
  border-bottom: 1px dashed rgba(47, 85, 93, 0.16);
}
.offer-card .offer-title {
  margin: 0 0 5px;
  color: #152124;
  font-family: var(--heading-font-family);
  font-size: clamp(18px, 16px + 0.45vw, 22px);
  font-weight: 600;
  line-height: 1.25;
}
.offer-card .offer-sub {
  margin: 0;
  color: #8a968f;
  font-family: var(--body-font-family);
  font-size: 12px;
  line-height: 1.5;
}
.offer-card .offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.offer-card .offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(47, 85, 93, 0.09);
  transition: padding-left 0.3s ease;
}
.offer-card .offer-list li:last-child {
  border-bottom: 0;
}
.offer-card .offer-list li:hover {
  padding-left: 4px;
}
.offer-card .offer-dot {
  position: relative;
  width: 9px;
  height: 9px;
  min-width: 9px;
  margin-top: 5px;
  background: var(--card-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(var(--card-accent-rgb), 0.13);
}
.offer-card .offer-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(var(--card-accent-rgb), 0.22);
  border-radius: 50%;
}
.offer-card .offer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.offer-card .offer-text strong {
  color: #152124;
  font-family: var(--body-font-family);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.offer-card .offer-text span {
  color: #8a968f;
  font-family: var(--body-font-family);
  font-size: 11.5px;
  line-height: 1.5;
}
.offer-card .offer-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: auto -24px 0;
  padding: 13px 20px;
  color: #212529;
  background: linear-gradient(90deg, rgba(var(--card-accent-rgb), 0.04), #f5f2ea, rgba(var(--card-accent-rgb), 0.04));
  border-top: 1px dashed rgba(47, 85, 93, 0.14);
  font-family: var(--body-font-family);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
}
.offer-card .offer-footer .offer-footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: var(--card-accent);
  -webkit-mask: url("../img/icons/circle-tick.svg") center/contain no-repeat;
  mask: url("../img/icons/circle-tick.svg") center/contain no-repeat;
  transition: transform 0.3s ease;
}
.offer-card .offer-footer span {
  font-size: inherit;
}

.offer-card.offer-yes {
  --card-accent: #2f555d;
  --card-accent-rgb: 47, 93, 80;
}

.offer-card.offer-no {
  --card-accent: #c0452c;
  --card-accent-rgb: 192, 69, 44;
}
.offer-card.offer-no .offer-footer {
  justify-content: flex-start;
}
.offer-card.offer-no .offer-footer .offer-footer-icon {
  -webkit-mask-image: url("../img/icons/arrow-right.svg");
  mask-image: url("../img/icons/arrow-right.svg");
}
.offer-card.offer-no .offer-footer:hover .offer-footer-icon {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .offer-card .offer-img-wrap {
    height: 190px;
  }
}
@media (max-width: 575.98px) {
  .offer-card {
    border-radius: 18px;
  }
  .offer-card .offer-img-wrap {
    height: 155px;
  }
  .offer-card .offer-tag {
    left: 14px;
    bottom: 14px;
    padding: 6px 12px 6px 7px;
    font-size: 11px;
  }
  .offer-card .offer-body {
    padding: 20px 18px 0;
  }
  .offer-card .offer-intro {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
  .offer-card .offer-list li {
    gap: 11px;
    padding: 11px 0;
  }
  .offer-card .offer-text strong {
    font-size: 12.5px;
  }
  .offer-card .offer-text span {
    font-size: 11px;
  }
  .offer-card .offer-footer {
    margin-left: -18px;
    margin-right: -18px;
    padding: 12px 15px;
  }
}
.delivery-steps-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 60px auto 20px;
  text-align: center;
  max-width: 1000px;
}
@media (max-width: 767px) {
  .delivery-steps-wrap {
    flex-direction: column;
    gap: 40px;
  }
}
.delivery-steps-wrap .delivery-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed #b8b1a2;
  z-index: 1;
}
@media (max-width: 767px) {
  .delivery-steps-wrap .delivery-line {
    display: none;
  }
}
.delivery-steps-wrap .delivery-step {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 15px;
}
.delivery-steps-wrap .delivery-step p {
  font-size: 14.5px;
  color: #61645c;
  line-height: 1.6;
  margin: 0;
}
.delivery-steps-wrap .delivery-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f7f6f2;
  border: 1px solid rgba(255, 255, 255, 0.78);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.delivery-steps-wrap .delivery-icon img {
  width: 60%;
  height: 60%;
  filter: brightness(0) saturate(100%) invert(25%) sepia(69%) saturate(303%) hue-rotate(143deg) brightness(96%) contrast(87%);
  -o-object-fit: contain;
     object-fit: contain;
}
.delivery-steps-wrap .delivery-num {
  display: block;
  font-family: var(--heading-font-family);
  font-style: italic;
  color: #c96b52;
  font-size: 16px;
  margin-bottom: 8px;
}
.delivery-steps-wrap .delivery-title {
  font-family: var(--heading-font-family);
  color: #2f453a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}/*# sourceMappingURL=style.css.map */