/* ==============================================
   Announcement Banner
   ============================================== */
.announcement-banner {
  position: relative;
  z-index: 930;
  background: #005FF9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.announcement-banner.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.announcement-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 10px 50px;
  position: relative;
}

.announcement-banner__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement-banner__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}

.announcement-banner__text {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.21;
  color: #FFFFFF;
}

.announcement-banner__close {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.announcement-banner__close:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .announcement-banner__inner {
    padding: 10px 16px;
    padding-right: 44px;
  }

  .announcement-banner__text {
    font-size: 14px;
  }

  .announcement-banner__close {
    right: 16px;
  }
}

/* ==============================================
   Header UI
   ============================================== */
.header.header--ui {
  height: auto;
  position: sticky;
  top: 0;
  z-index: 920;
  padding: 14px 0;
  background: transparent;
}

.ui-header-sticky {
  position: relative;
  z-index: 920;
}

.ui-header-container {
  max-width: 1340px;
  padding: 0 14px;
  margin: 0 auto;
}

/* Default state (no scroll) - transparent with white text */
.ui-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 16px 50px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: all 0.3s ease;
}

/* Scrolled state - white pill with shadow */
.ui-header.is-scrolled {
  padding: 16px 16px 16px 32px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Light header modifier - for pages without dark hero */
.ui-header--light .ui-header__brand {
  color: #2c2d2e;
}

.ui-header--light .ui-header__brand-sep {
  background: #d4d4d4;
}

.ui-header--light .ui-header__brand-tagline {
  color: #737373;
}

.ui-header--light .ui-header__brand-logo--dark {
  display: block;
}

.ui-header--light .ui-header__brand-logo--white {
  display: none;
}

.ui-header--light .ui-header__nav-link {
  color: #2c2d2e;
}

.ui-header--light .ui-header__services-toggle {
  color: #2c2d2e;
}

.ui-header--light .ui-header__services-icon--dark {
  display: inline-flex;
}

.ui-header--light .ui-header__services-icon--white {
  display: none;
}

.ui-header--light .ui-header__lang-btn {
  border-color: #d4d4d4;
  color: #2c2d2e;
}

.ui-header--light .ui-header__lang-arrow--dark {
  display: block;
}

.ui-header--light .ui-header__lang-arrow--white {
  display: none;
}

.ui-header--light .ui-header__user {
  border-color: #d4d4d4;
}

.ui-header--light .ui-header__user-icon--dark {
  display: block;
}

.ui-header--light .ui-header__user-icon--white {
  display: none;
}

.ui-header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.ui-header.is-scrolled .ui-header__brand {
  color: #2c2d2e;
}

/* Logo switching */
.ui-header__brand-logo {
  flex: none;
  width: 151px;
  height: 50px;
}

.ui-header__brand-logo--dark {
  display: none;
}

.ui-header__brand-logo--white {
  display: block;
}

.ui-header.is-scrolled .ui-header__brand-logo--dark {
  display: block;
}

.ui-header.is-scrolled .ui-header__brand-logo--white {
  display: none;
}

.ui-header__brand-icon {
  flex: none;
  border-radius: 9999px;
}

.ui-header__brand-name {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.ui-header__brand-sep {
  flex: none;
  width: 1px;
  height: 21px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.ui-header.is-scrolled .ui-header__brand-sep {
  background: #d4d4d4;
}

.ui-header__brand-tagline {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.22;
  color: #ffffff;
  transition: color 0.3s ease;
}

.ui-header.is-scrolled .ui-header__brand-tagline {
  color: #737373;
}

.ui-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.ui-header__nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.21;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.ui-header.is-scrolled .ui-header__nav-link {
  color: #2c2d2e;
}

.ui-header__nav-link:hover {
  opacity: 0.7;
}

.ui-header__services-toggle {
  color: #ffffff;
  transition: color 0.3s ease;
}

.ui-header.is-scrolled .ui-header__services-toggle {
  color: #2c2d2e;
}

.ui-header__services-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Menu icon switching */
.ui-header__services-icon--dark {
  display: none;
}

.ui-header__services-icon--white {
  display: inline-flex;
}

.ui-header.is-scrolled .ui-header__services-icon--dark {
  display: inline-flex;
}

.ui-header.is-scrolled .ui-header__services-icon--white {
  display: none;
}

.ui-header__services-icon--close {
  display: none;
}

.ui-header.is-services-open .ui-header__services-toggle {
  color: #005ff9;
}

.ui-header.is-services-open .ui-header__services-icon--open {
  display: none;
}

.ui-header.is-services-open .ui-header__services-icon--close {
  display: inline-flex;
}

.ui-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.ui-header__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 54px;
  padding: 0 20px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.ui-header.is-scrolled .ui-header__lang-btn {
  border-color: #d4d4d4;
  color: #2c2d2e;
}

.ui-header__lang-btn:hover {
  border-color: #005ff9;
}

/* Arrow icon switching */
.ui-header__lang-arrow--dark {
  display: none;
}

.ui-header__lang-arrow--white {
  display: block;
}

.ui-header.is-scrolled .ui-header__lang-arrow--dark {
  display: block;
}

.ui-header.is-scrolled .ui-header__lang-arrow--white {
  display: none;
}

.ui-header__lang-menu {
  width: 220px;
  border: 0;
  padding: 0;
  border-radius: 24px;
  box-shadow: var(--shadow-elevation-40-8-8, 0px 8px 40px rgba(0, 0, 0, 0.08));
  overflow: hidden;
}

.ui-lang-menu__section {
  padding: 18px 18px 14px;
}

.ui-lang-menu__title {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #2c2d2e;
  margin-bottom: 10px;
}

.ui-lang-menu__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #2c2d2e;
  font-weight: 500;
  font-size: 16px;
  background: transparent;
  border: 0;
  text-align: left;
}

.ui-lang-menu__item:hover {
  background: #f4f5f7;
  color: #2c2d2e;
}

.ui-lang-menu__item--disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ui-lang-menu__divider {
  height: 1px;
  background: #e6e6e6;
}

.ui-header__user {
  width: 54px;
  height: 54px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #005ff9;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.ui-header.is-scrolled .ui-header__user {
  border-color: #d4d4d4;
}

.ui-header__user img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* User icon switching */
.ui-header__user-icon--dark {
  display: none;
}

.ui-header__user-icon--white {
  display: block;
}

.ui-header.is-scrolled .ui-header__user-icon--dark {
  display: block;
}

.ui-header.is-scrolled .ui-header__user-icon--white {
  display: none;
}

.ui-header__user:hover {
  opacity: 0.85;
}

/* Authorized User Block */
.ui-header__user-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ui-header__user-auth:hover {
  opacity: 0.85;
}

.ui-header__user-avatar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 9999px;
  border: 1px solid #d4d4d4;
  overflow: hidden;
  background: transparent;
}

.ui-header__user-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ui-header__user-avatar-icon {
  width: 24px;
  height: 24px;
  color: #2c2d2e;
}

.ui-header__user-avatar-icon path {
  stroke: currentColor;
}

.ui-header__lang-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.dropdown.show .ui-header__lang-arrow {
  transform: rotate(180deg);
}

.ui-services-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  transform: translateX(-50%);
  width: min(560px, calc(100vw - 28px));
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-elevation-40-8-8, 0px 8px 40px rgba(0, 0, 0, 0.08));
  overflow: hidden;
  z-index: 940;
}

.ui-header.is-services-open .ui-services-menu {
  display: block;
}

.ui-services-menu__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}

.ui-services-menu__col {
  padding: 16px;
}

.ui-services-menu__divider {
  background: #e6e6e6;
}

.ui-services-menu__cat {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: #2c2d2e;
}

.ui-services-menu__cat:hover,
.ui-services-menu__cat.is-active {
  background: #f4f5f7;
}

.ui-services-menu__cat-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f4f5f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2c2d2e;
}

.ui-services-menu__cat.is-active .ui-services-menu__cat-icon {
  background: #e9eefc;
}

.ui-services-menu__cat-icon-img {
  display: block;
}

.ui-services-menu__cat-text {
  flex: 1 1 auto;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.ui-services-menu__cat-arrow {
  flex: none;
  color: #d4d4d4;
}

.ui-services-menu__panel {
  display: none;
}

.ui-services-menu__panel.is-active {
  display: block;
}

.ui-services-menu__panel-title {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #2c2d2e;
  margin: 4px 0 14px;
}

.ui-services-menu__panel-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ui-services-menu__panel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #2c2d2e;
  font-weight: 500;
  font-size: 16px;
}

.ui-services-menu__panel-item:hover {
  background: #f4f5f7;
  color: #2c2d2e;
}

.ui-services-menu__panel-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #005ff9;
}

.ui-services-menu__panel-item--all .ui-services-menu__panel-icon {
  color: #2c2d2e;
}

/* About dropdown */
.ui-header__about-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ui-header__about-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.3s ease;
}

.ui-header.is-scrolled .ui-header__about-toggle {
  color: #2c2d2e;
}

.ui-header--light .ui-header__about-toggle {
  color: #2c2d2e;
}

.ui-header__about-toggle:hover {
  opacity: 0.7;
}

.ui-header__about-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.ui-header__about-arrow--dark {
  display: none;
}

.ui-header__about-arrow--white {
  display: block;
}

.ui-header.is-scrolled .ui-header__about-arrow--dark {
  display: block;
}

.ui-header.is-scrolled .ui-header__about-arrow--white {
  display: none;
}

.ui-header--light .ui-header__about-arrow--dark {
  display: block;
}

.ui-header--light .ui-header__about-arrow--white {
  display: none;
}

.ui-header__about-wrap.is-open .ui-header__about-arrow {
  transform: rotate(180deg);
}

.ui-header__about-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  top: calc(100% + 24px);
  transform: translateX(-50%);
  min-width: 200px;
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.08);
  z-index: 940;
}

.ui-header__about-wrap.is-open .ui-header__about-dropdown {
  display: block;
}

.ui-header__about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 0;
  text-decoration: none;
  color: #2c2d2e;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.21;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.ui-header__about-item:hover {
  color: #2c2d2e;
}

.ui-header__about-item--highlight {
  background: #f4f5f7;
  border-radius: 12px;
}

.ui-header__about-item--highlight:hover {
  background: #e9eaec;
}

/* Mobile menu */
.ui-header__mobile-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  border: 0;
  background: #005ff9;
  color: #ffffff;
  position: relative;
}

.ui-header__mobile-icon-open,
.ui-header__mobile-icon-close {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ui-header__mobile-icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}

.ui-header__mobile-btn.btn--current {
  background: #ffffff;
  color: #ff003d;
  border: 1px solid #d4d4d4;
}

.ui-header__mobile-btn.btn--current .ui-header__mobile-icon-open {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
}

.ui-header__mobile-btn.btn--current .ui-header__mobile-icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.ui-header-mobile-menu {
  display: none;
}

@media all and (max-width: 872.5px) {
  .header.header--ui {
    padding: 10px 0;
  }

  .ui-header {
    gap: 10px;
    padding: 12px 12px 12px 16px;
  }

  .ui-header__brand-name {
    font-size: 18px;
  }

  .ui-header__brand-sep,
  .ui-header__brand-tagline {
    display: none;
  }

  .ui-header__nav {
    display: none;
  }

  .ui-header__mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ui-header-mobile-menu {
    display: block;
    width: 260px;
    height: auto;
    padding: 14px 0;
    position: fixed;
    right: 0;
    top: var(--ui-header-offset, 72px);
    bottom: 0;
    background: #ffffff;
    box-shadow: 0 0 65px 0 rgba(26, 36, 56, 0.1);
    z-index: 912;
    opacity: 0;
    transform: translateX(350px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
  }

  body[data-fly-toggle=menu] .ui-header-mobile-menu {
    opacity: 1;
    transform: translateX(0);
  }

  .ui-header-mobile-menu__link {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #2c2d2e;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
  }

  .ui-header-mobile-menu__link:hover {
    background: #f4f5f7;
    color: #2c2d2e;
  }

  .ui-header-mobile-menu__divider {
    height: 1px;
    background: #e6e6e6;
    margin: 10px 0;
  }

  .ui-header-mobile-menu__link--sub {
    padding-left: 32px;
    font-size: 13px;
    color: #737373;
  }

  .ui-header-mobile-menu__link--danger {
    color: #ed0a34;
  }

  .ui-header-mobile-menu__link--danger:hover {
    color: #c70a2c;
  }
}

/* Login modal */
.ui-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.ui-modal.is-open {
  display: flex;
}

.ui-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
}

.ui-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 577px;
  max-width: calc(100vw - 28px);
  background: #ffffff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow-elevation-40-8-8, 0px 8px 40px rgba(0, 0, 0, 0.08));
  z-index: 1;
}

.ui-modal__close {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-modal__close:hover {
  opacity: 0.7;
}

.ui-modal__close-icon {
  width: 24px;
  height: 24px;
}

.ui-modal__title {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1em;
  letter-spacing: -0.03em;
  color: #2c2d2e;
}

.ui-modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ui-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ui-field__label {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #737373;
}

.ui-input.ui-input--pill {
  height: 64px;
  border-radius: 9999px;
  padding: 0 24px;
  border: 0;
  background: #f4f5f7;
}

.ui-modal__submit {
  margin-top: 0;
}

/* Social login buttons */
.ui-modal__social {
  display: flex;
  gap: 10px;
}

.ui-modal__social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 64px;
  padding: 0 28px;
  border: 1px solid #D4D4D4;
  border-radius: 9999px;
  background: transparent;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2C2D2E;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ui-modal__social-btn:hover {
  background: #f4f5f7;
}

.ui-modal__social-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.ui-modal__divider {
  width: 100%;
  height: 1px;
  background: #D4D4D4;
  border: 0;
}

.ui-modal__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}

.ui-modal__footer-muted {
  color: #737373;
}

.ui-modal__footer-link {
  color: #005ff9;
  text-decoration: none;
  font-weight: 500;
}

.ui-modal__footer-link--button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.ui-modal__footer-link:hover {
  text-decoration: underline;
}

.ui-modal__footer--row {
  flex-wrap: wrap;
  justify-content: space-between;
}

.ui-modal__footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.ui-modal-open {
  overflow: hidden;
}

.ui-modal__subtitle {
  text-align: center;
  font-size: 14px;
  color: #737373;
  margin-bottom: 16px;
}

.ui-modal__success {
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(34, 197, 94, 0.08);
  color: #22c55e;
  font-size: 14px;
  text-align: center;
}

.ui-modal__error {
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 0, 61, 0.08);
  color: #ff003d;
  font-size: 14px;
}

.ui-modal__checks {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ui-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.22;
  color: #737373;
}

.ui-check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ui-check__box {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #f4f5f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px #e6e6e6;
}

.ui-check__text a {
  color: #005ff9;
  text-decoration: none;
}

.ui-check__text a:hover {
  text-decoration: underline;
}

.ui-check__input:checked + .ui-check__box {
  background: #005ff9;
  box-shadow: none;
}

.ui-check__input:checked + .ui-check__box:before {
  content: "";
  width: 14px;
  height: 11px;
  background: #ffffff;
  clip-path: polygon(5% 55%, 0 65%, 40% 100%, 100% 20%, 90% 10%, 40% 75%);
}

.ui-modal__footer--signup {
  margin-top: 0;
}

/* Modal responsive */
@media (max-width: 620px) {
  .ui-modal__dialog {
    padding: 24px;
    gap: 20px;
    border-radius: 24px;
  }

  .ui-modal__close {
    right: 20px;
    top: 20px;
  }

  .ui-modal__title {
    font-size: 28px;
    padding-right: 32px;
  }

  .ui-modal__social {
    flex-direction: column;
  }

  .ui-modal__social-btn {
    height: 56px;
  }

  .ui-input.ui-input--pill {
    height: 56px;
    padding: 0 20px;
  }

  .ui-btn--lg {
    height: 56px;
  }

  .ui-modal__footer {
    flex-direction: column;
    gap: 8px;
  }

  .ui-modal__footer--row {
    align-items: center;
  }

  .ui-modal__footer-item {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}
