:root {
  --page-width: 1560px;
  --content-width: 1320px;
  --page-gutter: 64px;
  --navbar-offset: 70px;
  --ink: #121212;
  --line: #bdbdbd;
  --cyan: #18ece8;
  --cyan-deep: #00aba7;
  --surface: #ffffff;
  --shadow: 0 28px 60px -48px rgba(0, 0, 0, 0.45);
}

body {
  top: 0 !important;
}

body > .skiptranslate,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip {
  display: none !important;
}

.translate-widget-anchor {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

#site-navbar-root {
  display: block;
  min-height: var(--navbar-offset);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid #efefef;
  box-shadow: 0 10px 26px -24px rgba(15, 26, 29, 0.35);
}

.topbar-inner {
  width: calc(100% - var(--page-gutter));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  line-height: 1;
}

.brand.is-static-brand {
  cursor: default;
}

.brand img {
  display: block;
  width: auto;
  height: 30px;
}

body[data-minimal-guest-layout="true"] .topbar-inner {
  justify-content: flex-start;
}

body[data-minimal-guest-layout="true"] .top-nav,
body[data-minimal-guest-layout="true"] .menu-toggle,
body[data-minimal-guest-layout="true"] .mobile-panel,
body[data-hide-shared-footer="true"] #site-footer-root,
body[data-hide-floating-share="true"] #site-floating-share-root {
  display: none !important;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.top-nav a,
.top-nav button,
.mobile-panel a,
.mobile-subnav-toggle {
  color: inherit;
  text-decoration: none;
}

.top-nav > a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  transform: translateY(1px);
  transition:
    color 0.24s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.top-nav > a {
  position: relative;
}

.top-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan-deep);
  opacity: 0;
  transform: scaleX(0.32);
  transform-origin: center;
  transition:
    opacity 0.22s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.top-nav a:hover,
.top-nav button:hover,
.top-nav a.is-current,
.nav-dropdown-trigger.is-current,
.mobile-link.is-current,
.mobile-subnav-link.is-current,
.mobile-subnav.is-current > .mobile-subnav-toggle {
  color: var(--cyan-deep);
}

.top-nav > a:hover,
.top-nav > a.is-current {
  transform: translateY(-1px);
}

.top-nav > a:hover::after,
.top-nav > a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 14px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-label {
  display: inline-block;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--cyan-deep);
}

.nav-dropdown:hover .nav-dropdown-label,
.nav-dropdown.is-open .nav-dropdown-label {
  transform: translateY(-2px);
}

.nav-dropdown-arrow {
  display: inline-flex;
  width: 11px;
  height: 11px;
  opacity: 0;
  transform: translateY(-2px);
  animation: navArrowBounce 1.35s ease-in-out infinite;
  transition:
    opacity 0.22s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown.is-open .nav-dropdown-arrow,
.nav-dropdown-trigger.is-current .nav-dropdown-arrow {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes navArrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(2px);
  }
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(214, 230, 231, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(17, 28, 29, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  z-index: 1000;
  transition:
    opacity 0.26s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.38s;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.nav-dropdown[data-translate-dropdown] .nav-dropdown-menu {
  left: auto;
  right: 0;
  width: min(276px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(214, 230, 231, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow:
    0 22px 54px -30px rgba(12, 26, 29, 0.36),
    0 10px 24px -18px rgba(12, 26, 29, 0.18);
  backdrop-filter: blur(18px);
  transition:
    opacity 0.26s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.38s,
    width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown[data-translate-dropdown][data-translate-mode="alphabet"] .nav-dropdown-menu,
.nav-dropdown[data-translate-dropdown][data-translate-mode="languages"] .nav-dropdown-menu {
  width: min(356px, calc(100vw - 32px));
}

.nav-account-dropdown .nav-dropdown-menu {
  left: auto;
  right: 0;
  min-width: 190px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #1d2526;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-current {
  background: #f2fbfb;
  color: var(--cyan-deep);
  transform: translateX(2px);
}

.translate-note {
  margin: 0 0 8px;
  padding: 0 2px 10px;
  border-bottom: 1px solid #edf3f3;
  color: #637071;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 500;
}

.translate-picker {
  position: relative;
  display: grid;
  min-height: 220px;
}

.translate-stage {
  display: none;
  gap: 12px;
  animation: translateStageIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.translate-stage.is-active {
  display: grid;
}

@keyframes translateStageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.translate-results {
  display: grid;
  gap: 6px;
}

.translate-results-expanded {
  max-height: 268px;
  overflow-y: auto;
  padding-right: 4px;
}

.translate-results::-webkit-scrollbar,
.translate-results-expanded::-webkit-scrollbar {
  width: 8px;
}

.translate-results::-webkit-scrollbar-thumb,
.translate-results-expanded::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(0, 171, 167, 0.22);
  background-clip: padding-box;
}

.translate-results a,
.translate-results button {
  -webkit-appearance: none;
  appearance: none;
}

.translate-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: #f6fbfb;
  border: 1px solid rgba(224, 236, 236, 0.9);
  color: #182122;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.translate-results a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.translate-results a:hover,
.translate-results a:focus-visible {
  background: #ffffff;
  border-color: rgba(0, 171, 167, 0.24);
  color: var(--cyan-deep);
  transform: translateX(2px);
  box-shadow: 0 16px 24px -24px rgba(0, 171, 167, 0.42);
  outline: 0;
}

.translate-results a:hover::after,
.translate-results a:focus-visible::after {
  opacity: 1;
  transform: translateX(1px) rotate(45deg);
}

.translate-stage-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(224, 236, 236, 0.92);
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fcfc 0%, #f1f8f8 100%);
  color: #1d2526;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.translate-stage-action:hover,
.translate-stage-action:focus-visible {
  border-color: rgba(0, 171, 167, 0.28);
  background: linear-gradient(180deg, #f6fdfc 0%, #eef8f7 100%);
  color: var(--cyan-deep);
  transform: translateX(2px);
  box-shadow: 0 16px 30px -24px rgba(0, 171, 167, 0.42);
  outline: 0;
}

.translate-stage-action svg,
.translate-back-button svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.translate-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  padding: 0 2px 2px;
  border-bottom: 1px solid #edf3f3;
}

.translate-stage-title {
  color: #697677;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.translate-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #1d2526;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.translate-back-button:hover,
.translate-back-button:focus-visible {
  color: var(--cyan-deep);
  transform: translateX(-1px);
  outline: 0;
}

.translate-alphabet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.translate-alphabet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid #e0ecec;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdfd 0%, #f3f9f9 100%);
  color: #1d2526;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.translate-alphabet-button:hover,
.translate-alphabet-button:focus-visible {
  border-color: rgba(0, 171, 167, 0.28);
  background: linear-gradient(180deg, #f6fdfc 0%, #eef8f7 100%);
  color: var(--cyan-deep);
  transform: translateY(-1px);
  box-shadow: 0 18px 30px -24px rgba(0, 171, 167, 0.48);
  outline: 0;
}

.translate-alphabet-button[disabled] {
  cursor: default;
  opacity: 0.38;
  box-shadow: none;
  transform: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 212, 214, 0.92);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  box-shadow: 0 14px 28px -24px rgba(15, 26, 29, 0.3);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #223030;
  transition:
    transform 0.26s ease,
    opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  margin: 0 auto 0;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    margin-bottom 0.24s ease;
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel.is-open {
  max-height: min(calc(100svh - var(--navbar-offset) - 18px), 620px);
  margin-bottom: 14px;
  border-color: #dfe8e8;
  box-shadow: var(--shadow);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  overflow-y: auto;
}

.mobile-panel-inner {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.mobile-link,
.mobile-subnav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  background: #f7fafa;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.mobile-link:hover,
.mobile-subnav-toggle:hover,
.mobile-subnav.is-open > .mobile-subnav-toggle {
  background: #eef7f7;
}

.mobile-subnav-toggle-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-subnav-toggle-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.mobile-subnav-toggle-summary {
  color: var(--cyan-deep);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.15;
}

.mobile-subnav.is-open .mobile-subnav-toggle-icon {
  transform: rotate(180deg);
}

.mobile-subnav[data-translate-active="true"] > .mobile-subnav-toggle {
  background: #eef7f7;
}

.mobile-subnav-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 8px;
  transition:
    max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease;
}

.mobile-subnav-panel[hidden] {
  display: none;
}

.mobile-subnav.is-open .mobile-subnav-panel {
  opacity: 1;
}

.mobile-subnav-links {
  display: grid;
  gap: 8px;
  padding: 8px 0 2px;
}

.mobile-subnav-link {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e6efef;
  font-size: 0.92rem;
  font-weight: 600;
  color: #314142;
}

.translate-picker-mobile {
  display: block;
  min-height: 0;
  height: auto;
  padding: 0 8px;
}

.translate-picker-mobile .translate-stage {
  gap: 10px;
  align-content: start;
}

.translate-picker-mobile .translate-results {
  gap: 8px;
}

.translate-results-mobile {
  padding-right: 2px;
}

.translate-results-mobile.translate-results-expanded {
  max-height: 248px;
}

.translate-note-mobile {
  margin: 0;
  padding: 4px 8px 2px;
  border-bottom: 0;
}

.translate-stage-action-mobile,
.translate-back-button-mobile {
  width: 100%;
}

.translate-stage-header-mobile {
  padding: 0 0 2px;
}

.mobile-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 6px 2px 2px;
}

.mobile-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f4f6f7;
  box-shadow: 0 10px 20px -18px rgba(10, 21, 25, 0.35);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.mobile-social:hover,
.mobile-social:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px -18px rgba(10, 21, 25, 0.4);
  outline: 0;
}

.mobile-social-core {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  overflow: hidden;
  color: #ffffff;
}

.mobile-social-core::before {
  content: none !important;
}

.mobile-social-core svg {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

.mobile-social.is-linkedin .mobile-social-core {
  background: #2f6fd6;
}

.mobile-social.is-facebook .mobile-social-core {
  background: #3d7cf0;
}

.mobile-social.is-x .mobile-social-core {
  background: #111111;
}

.site-footer {
  width: 100%;
  margin-top: 0;
  background: #ffffff;
}

.footer-newsletter {
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 54px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 40px;
  align-items: start;
}

.footer-newsletter h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.9vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.footer-newsletter p {
  margin: 0;
  max-width: 460px;
  color: #616161;
  font-size: 0.8rem;
  line-height: 1.55;
  font-weight: 500;
}

.signup-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid #ddd7ca;
  border-radius: 999px;
  background: #f5f2ea;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.signup-form input {
  flex: 1 1 auto;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 20px;
  font: inherit;
  font-size: 0.88rem;
  color: #262626;
  outline: none;
}

.signup-form input::placeholder {
  color: #6d6d6d;
}

.signup-form:focus-within {
  border-color: #cfc7b8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 0 3px rgba(24, 236, 232, 0.12);
}

.signup-form button {
  height: 46px;
  min-width: 132px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.footer-map-panel {
  position: relative;
  overflow: hidden;
  background: #e5f4f5;
}

.footer-map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://firebasestorage.googleapis.com/v0/b/skrwebedu1.firebasestorage.app/o/assets%2Fimages%2Fworldmap.png?alt=media") center / 100% 100% no-repeat;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.footer-map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(229, 244, 245, 0.16) 0%, rgba(229, 244, 245, 0.55) 100%);
  pointer-events: none;
}

.footer-map-panel.is-zoomed::before {
  transform: scale(1.05);
}

.footer-map-content {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 50px 0 32px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 42px;
}

.footer-brand img {
  width: auto;
  height: 26px;
}

.footer-mobile-accordion,
.footer-tablet-grid {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-column h4 {
  margin: 0 0 18px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #101718;
}

.footer-subheading {
  margin-top: 24px;
}

.footer-column a {
  display: block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #273334;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--cyan-deep);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(64, 99, 100, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: transparent;
  color: #101718;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-core {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px -18px rgba(16, 23, 24, 0.45);
}

.footer-social-core svg {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-social-core img {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-social.is-linkedin .footer-social-core {
  background: #0a66c2;
  color: #ffffff;
  font-size: 0.98rem;
}

.footer-social.is-facebook .footer-social-core {
  background: #1877f2;
  color: #ffffff;
  font-size: 1.05rem;
}

.footer-social.is-x .footer-social-core {
  background: #111111;
  color: #ffffff;
  font-size: 0;
}

.footer-social:hover {
  transform: translateY(-1px);
}

.floating-share {
  position: fixed;
  right: 28px;
  top: 54%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 20px 48px rgba(14, 28, 29, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(20px, -50%, 0) scale(0.94);
  pointer-events: none;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.55s;
}

body.is-loaded .floating-share {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, -50%, 0) scale(1);
  pointer-events: auto;
  transition-delay: 0s, 0s, 0s;
}

.floating-share.is-hidden {
  opacity: 0;
  pointer-events: none;
}

body.is-loaded .floating-share.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(16px, -50%, 0) scale(0.96);
  transition-delay: 0s, 0s, 0.45s;
}

.floating-share-divider {
  width: 20px;
  height: 1px;
  background: rgba(25, 36, 38, 0.12);
}

.floating-share .footer-social {
  width: 40px;
  height: 40px;
}

.floating-share .footer-social-core {
  width: 36px;
  height: 36px;
  box-shadow: none;
}

.floating-share .footer-social-core svg {
  width: 16px;
  height: 16px;
}

.floating-share .footer-social-core img {
  width: 16px;
  height: 16px;
}

.floating-share-print {
  border: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  background: transparent;
}

.floating-share-print .footer-social-core {
  background: #111111;
  color: #ffffff;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #4b5455;
  font-size: 0.78rem;
  text-align: right;
}

@media (max-width: 960px) {
  .top-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    width: min(100%, calc(100% - 52px));
    padding: 38px 0 30px;
    gap: 22px;
  }

  .signup-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .signup-form input {
    width: 100%;
    height: 52px;
    border: 1px solid #ddd7ca;
    background: #f5f2ea;
    padding: 0 18px;
  }

  .signup-form button {
    width: 100%;
    min-width: 0;
    height: 46px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .footer-newsletter {
    width: min(100%, calc(100% - 52px));
    padding: 40px 0 32px;
    gap: 24px;
  }

  .footer-map-panel::before {
    background-position: 50% 44%;
    background-size: 132% auto;
  }

  .footer-map-content {
    width: min(100%, calc(100% - 52px));
    padding: 44px 0 20px;
  }

  .footer-brand {
    margin-bottom: 34px;
  }

  .footer-brand img {
    height: 26px;
  }

  .footer-grid {
    display: none;
  }

  .footer-tablet-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.38fr 0.96fr 0.78fr 1fr;
    gap: 22px;
    align-items: start;
  }

  .footer-tablet-grid .footer-column h4 {
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .footer-tablet-grid .footer-column a {
    margin-bottom: 14px;
    font-size: 0.74rem;
    line-height: 1.58;
    max-width: 12ch;
  }

  .footer-bottom {
    justify-content: flex-start;
    gap: 34px;
  }

  .footer-meta {
    align-items: flex-start;
    gap: 18px;
    text-align: left;
  }

  .floating-share {
    right: 18px;
    padding: 11px 7px 9px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 24px;
    --navbar-offset: 64px;
  }

  .topbar-inner {
    width: calc(100% - 20px);
    min-height: 64px;
    gap: 14px;
  }

  .brand {
    min-height: 64px;
    max-width: 178px;
  }

  .brand img {
    height: 28px;
  }

  .mobile-panel {
    width: calc(100% - var(--page-gutter));
    margin-bottom: 10px;
  }

  .footer-newsletter {
    width: 100%;
    padding: 34px 12px 28px;
    gap: 22px;
  }

  .signup-form {
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .signup-form input {
    height: 54px;
    border: 1px solid #ddd7ca;
    border-radius: 999px;
    background: #f5f2ea;
    padding: 0 18px;
  }

  .signup-form button {
    width: 100%;
    min-width: 0;
    height: 46px;
  }

  .footer-newsletter h3 {
    font-size: 1.35rem;
  }

  .footer-map-content {
    width: 100%;
    padding: 30px 0 18px;
  }

  .footer-brand {
    margin-bottom: 22px;
    padding: 0 22px;
  }

  .footer-brand img {
    height: 26px;
  }

  .footer-map-panel::before {
    background-position: 54% 42%;
    background-size: 155% auto;
  }

  .footer-map-panel.is-zoomed::before {
    transform: scale(1.12);
  }

  .footer-mobile-accordion {
    display: block;
  }

  .footer-mobile-item {
    border-top: 1px solid rgba(73, 106, 108, 0.16);
  }

  .footer-mobile-item:last-child {
    border-bottom: 1px solid rgba(73, 106, 108, 0.16);
  }

  .footer-mobile-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 19px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font: inherit;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111111;
    text-align: left;
    cursor: pointer;
    appearance: none;
  }

  .footer-mobile-trigger-icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #111111;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .footer-mobile-item.is-open .footer-mobile-trigger-icon {
    transform: rotate(180deg);
  }

  .footer-mobile-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.32s ease;
  }

  .footer-mobile-panel[hidden] {
    display: block;
  }

  .footer-mobile-item.is-open .footer-mobile-panel {
    opacity: 1;
  }

  .footer-mobile-links {
    padding: 0 22px 18px;
  }

  .footer-mobile-links a {
    display: block;
    margin-bottom: 16px;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #232323;
  }

  .footer-mobile-links a:last-child {
    margin-bottom: 0;
  }

  .footer-grid {
    display: none;
  }

  .footer-column h4 {
    margin-bottom: 14px;
    font-size: 0.95rem;
  }

  .footer-column a {
    margin-bottom: 12px;
    font-size: 0.8rem;
  }

  .footer-bottom {
    margin-top: 24px;
    border-top: 0;
    flex-direction: column;
    align-items: center;
    padding: 22px 22px 0;
  }

  .footer-socials {
    gap: 12px;
    justify-content: center;
    width: 100%;
  }

  .footer-meta {
    width: 100%;
    gap: 8px;
    font-size: 0.84rem;
    text-align: left;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .floating-share {
    right: 12px;
    top: auto;
    bottom: 18px;
    gap: 9px;
    padding: 10px 6px 8px;
    transform: translate3d(18px, 0, 0) scale(0.94);
  }

  body.is-loaded .floating-share {
    visibility: visible;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s, 0s, 0s;
  }

  body.is-loaded .floating-share.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(18px, 0, 0) scale(0.96);
    transition-delay: 0s, 0s, 0.45s;
  }

  .floating-share .footer-social {
    width: 36px;
    height: 36px;
  }

  .floating-share .footer-social-core {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .floating-share {
    display: none;
  }
}
/* --- SHIMMER & SKELETON LOADING --- */
.skeleton-shimmer {
  position: relative;
  overflow: hidden;
  background-color: #f2f3f5;
  border-radius: 8px;
}

.skeleton-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: skeleton-shimmer-pulse 1.8s infinite;
}

@keyframes skeleton-shimmer-pulse {
  100% {
    transform: translateX(100%);
  }
}

.programme-card-skeleton {
  min-height: 240px;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.programme-card-skeleton .skeleton-image {
  flex: 0 0 45%;
  height: 100%;
}

.programme-card-skeleton .skeleton-body {
  flex: 1;
  padding: 24px;
}

.skeleton-text {
  height: 12px;
  margin-bottom: 12px;
  background: #ecedf0;
  border-radius: 4px;
}

.skeleton-text.title { height: 24px; width: 80%; }
.skeleton-text.meta { height: 16px; width: 40%; margin-top: 24px; }

/* ── LEGAL MODAL ── */
.leg-ov {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 25, 0.45);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}
.leg-ov.show {
  opacity: 1;
  visibility: visible;
}
.leg-modal {
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.leg-ov.show .leg-modal {
  transform: translateY(0);
}
.leg-header {
  padding: 30px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid #f0f4f5;
  position: relative;
}
.leg-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s ease;
  color: #64748b;
}
.leg-close:hover {
  background: #f8fafc;
  color: #0f172a;
  transform: rotate(90deg);
}
.leg-body {
  padding: 40px;
  overflow-y: auto;
  font-size: 15px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
}

[data-pretext-balance] {
  max-width: 100% !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
}
  line-height: 1.8;
  color: #475569;
}
.leg-body h1, .leg-body h2, .leg-body h3 {
  color: #0f172a;
  margin: 1.5em 0 0.5em;
}
.leg-body p {
  margin-bottom: 1.2em;
}
.leg-loading {
  display: flex;
  flex-direction: column;
  items-center: center;
  justify-content: center;
  padding: 60px;
  color: #94a3b8;
  gap: 15px;
}
.leg-loader-dot {
  width: 8px;
  height: 8px;
  background: #00aba7;
  border-radius: 50%;
  animation: leg-bounce 0.6s infinite alternate;
}
@keyframes leg-bounce {
  from { transform: translateY(0); opacity: 0.4; }
  to { transform: translateY(-10px); opacity: 1; }
}

/* Enrolled / in-progress / certified state badge on catalog cards.
   These classes previously had no CSS, so the inline state SVG (viewBox only,
   no width/height) defaulted to 300x150 and rendered as a giant tick once a
   learner had access. Constrain the icon and style the badge as a pill. */
.card-state,
.programme-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  background: #e0f4f4;
  color: #007b7f;
}
.card-state-icon,
.programme-status-icon {
  display: inline-flex;
  flex-shrink: 0;
}
.card-state-icon svg,
.programme-status-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
