.button {
  --button-bg: #ffffff;
  --button-color: #111111;
  --button-border: #ffffff;
  --button-hover-bg: #f2f2f2;
  --button-hover-border: #f2f2f2;
  --button-dot: #f5d28f;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.6rem 0.7rem 0.6rem 1.1rem;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-color);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.button:hover {
  transform: translateY(-1px);
  background: var(--button-hover-bg);
  border-color: var(--button-hover-border);
}
.button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.button__dot {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--button-dot);
  margin: 0 0.5em 0 0;
}
.button__label {
  flex: 0 1 auto;
}
.button__label-text--mobile {
  display: none;
}
.button__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-0.02em);
}
.button--secondary {
  --button-bg: #d9d9d9;
  --button-color: #111111;
  --button-border: #f0f0f0;
  --button-hover-bg: #cdcdcd;
  --button-hover-border: #e9e9e9;
}
.button--dark {
  --button-bg: #111111;
  --button-color: #ffffff;
  --button-border: #111111;
  --button-hover-bg: #1d1d1d;
  --button-hover-border: #1d1d1d;
  --button-dot: #f5d28f;
}
.button--ghost {
  --button-bg: rgba(255, 255, 255, 0.02);
  --button-color: #ffffff;
  --button-border: rgba(255, 255, 255, 0.22);
  --button-hover-bg: rgba(255, 255, 255, 0.06);
  --button-hover-border: rgba(255, 255, 255, 0.34);
  --button-dot: transparent;
  backdrop-filter: blur(40px);
}
.button--block {
  width: 100%;
}
.button--ghost .button__dot {
  display: none;
}
.button--disabled, .button:disabled, .button[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.65;
  pointer-events: none;
}

@media (max-width: 1280px) {
  .button__label-text--desktop {
    display: none;
  }
  .button__label-text--mobile {
    display: inline;
  }
}
.surface {
  --surface-bg: transparent;
  --surface-highlight: rgba(255, 255, 255, 0.56);
  --surface-radius: clamp(1.8rem, 4.2vw, 3rem);
  position: relative;
  border-radius: var(--surface-radius);
  border: 1px solid transparent;
  background: var(--surface-bg);
}

.surface::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--surface-highlight) 0%, rgba(255, 255, 255, 0.34) 14%, rgba(255, 255, 255, 0.08) 34%, transparent 48%, transparent 58%, rgba(255, 255, 255, 0.1) 72%, rgba(255, 255, 255, 0.36) 88%, var(--surface-highlight) 100%) border-box;
  mask: linear-gradient(#ffffff 0 0) padding-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#ffffff 0 0) padding-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.surface > * {
  position: relative;
  z-index: 1;
}

.surface--large {
  --surface-radius: clamp(2rem, 3vw, 4.8rem);
}

.surface--solid {
  --surface-bg: #232323;
}

.surface--glass {
  --surface-bg: rgba(34, 34, 34, 0.36);
  backdrop-filter: blur(14px);
}

.section-eyebrow {
  color: rgba(255, 255, 255, 0.42);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 2.3608247423rem + 0.593814433vw, 3.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-text {
  max-width: 30rem;
  margin: 2.1rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.13rem;
  line-height: 1.45;
}

.contact-actions {
  min-width: 0;
  width: 100%;
}

.contact-actions__inner {
  display: grid;
  gap: clamp(0.8rem, 0.7536082474rem + 0.1979381443vw, 1.1rem);
}

.contact-card {
  --surface-radius: clamp(1rem, 0.9613402062rem + 0.1649484536vw, 1.25rem);
  --surface-highlight: rgba(245, 210, 143, 0.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 0.9381443299rem + 0.2639175258vw, 1.4rem);
  min-height: 110px;
  padding: clamp(1.1rem, 1.0613402062rem + 0.1649484536vw, 1.35rem) clamp(1.15rem, 1.1036082474rem + 0.1979381443vw, 1.45rem);
  color: #ffffff;
  text-decoration: none;
}

.contact-card__label {
  min-width: 0;
  font-size: clamp(1.125rem, 0.7909482759rem + 0.5387931034vw, 1.4375rem);
  line-height: 1.2;
}

.contact-card--featured {
  --surface-highlight: rgba(245, 210, 143, 0.5);
  color: #F9DAA2;
  box-shadow: inset 0 0 0 1px rgba(245, 210, 143, 0.18), 0 1.5rem 3.5rem rgba(0, 0, 0, 0.28);
}

.contact-card--featured .contact-card__label,
.contact-card--accent-text .contact-card__label {
  color: #F9DAA2;
}

.contact-card__icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
}

.contact-card__icon img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 766px) {
  .contact-actions__inner {
    gap: 1.2rem;
  }
  .contact-card {
    --surface-radius: 1.45rem;
    min-height: 9rem;
    padding: 1.6rem 2rem;
    box-shadow: inset 0 0 0.9rem rgba(255, 255, 255, 0.035), 0 1.6rem 3rem rgba(0, 0, 0, 0.34);
  }
  .contact-card__label {
    font-size: 1.4375rem;
    line-height: 1.1;
  }
  .contact-card__icon {
    width: 2.25rem;
  }
}
.text-page {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 8%, rgba(245, 210, 143, 0.13), transparent 24rem), #000000;
}

.text-page__hero {
  padding-block: clamp(5rem, 8vw, 8rem) clamp(2.5rem, 4vw, 4rem);
}

.text-page__hero-inner {
  width: min(100% - 2rem, 58rem);
}

.text-page__eyebrow {
  margin: 0;
}

.text-page__title {
  max-width: 58rem;
  margin: clamp(1.6rem, 2.4vw, 2.6rem) 0 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  font-weight: 600;
  line-height: 0.96;
}

.text-page__lead {
  max-width: 48rem;
  margin: clamp(1.5rem, 2vw, 2rem) 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
}

.text-page__updated {
  margin: clamp(1.3rem, 1.8vw, 1.8rem) 0 0;
  color: rgba(245, 210, 143, 0.86);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.text-page__body {
  padding-block: 0 clamp(5rem, 8vw, 8rem);
}

.text-page__body--standalone {
  padding-block: clamp(4rem, 7vw, 7rem) clamp(5rem, 8vw, 8rem);
}

.text-page__content {
  width: min(100% - 2rem, 58rem);
  margin-inline: auto;
}

.text-page__content > * {
  max-width: 100%;
}

.text-page__content h2 {
  margin: clamp(2.4rem, 4vw, 3.8rem) 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.2;
}

.text-page__content h1 {
  margin: 0 0 clamp(1.7rem, 3vw, 2.6rem);
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
}

.text-page__content h2:first-child,
.text-page__content .text-page__intro + h2 {
  margin-top: 0;
}

.text-page__content p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
}

.text-page__content .text-page__intro {
  margin: 0 0 clamp(2rem, 3vw, 3rem);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  font-weight: 500;
  line-height: 1.55;
}

.text-page__content ul,
.text-page__content ol {
  margin: 1.2rem 0 0;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.7;
}

.text-page__content li + li {
  margin-top: 0.55rem;
}

.text-page__content a {
  color: #f5d28f;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

@media (max-width: 600px) {
  .text-page__hero {
    padding-block: 3.8rem 2.2rem;
  }
  .text-page__title {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }
  .text-page__hero-inner,
  .text-page__content {
    width: min(100% - 1rem, 58rem);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background: #000000;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(100% - 2rem, 1720px);
  margin-inline: auto;
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header,
.site-footer {
  padding-block: 1rem;
}

main {
  display: block;
}

[id] {
  scroll-margin-top: calc(var(--site-header-height, 7.5rem) + 1rem);
}

.section {
  padding-block: 2rem;
}

.site-nav__menu > li > a,
.button {
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media (max-width: 767px) {
  .container {
    width: min(100% - 1rem, 1720px);
  }
  .site-header__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-shell {
  --site-header-height: 7.5rem;
}

body.is-city-switcher-scroll-locked {
  position: fixed;
  top: var(--site-city-switcher-scroll-offset, 0);
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, backdrop-filter 0.18s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 11, 0.82);
  border-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  padding-block: 0.5rem;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4.3rem;
  min-height: 5.5rem;
}

.site-brand {
  flex: 0 0 auto;
}

.site-brand__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-brand__link .custom-logo {
  display: block;
  width: auto;
  height: 3rem;
}

.site-brand__fallback {
  color: #f4b400;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-brand__mobile-link {
  display: none;
  align-items: center;
  text-decoration: none;
}

.site-brand__mobile-logo {
  display: block;
  width: auto;
  height: 2.8rem;
}

.site-header__panel {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 4.3rem;
}

.site-nav {
  flex: 0 0 auto;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__menu > li {
  margin: 0;
}

.site-nav__menu > li > a {
  color: rgba(255, 255, 255, 0.64);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s ease;
}

.site-nav__menu > li > a:hover,
.site-nav__menu > li.current-menu-item > a,
.site-nav__menu > li.current_page_item > a {
  color: #ffffff;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.site-header__icon-button {
  flex: 0 0 auto;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  padding: 0;
}

.site-header__icon-button img {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.site-city-switcher {
  position: relative;
  flex: 0 0 auto;
}

.site-city-switcher__button {
  min-width: 7.5rem;
  max-width: clamp(12rem, 23vw, 20rem);
  min-height: 3rem;
  justify-content: space-between;
}

.site-city-switcher__label {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  text-align: left;
}

.site-city-switcher__label-city,
.site-city-switcher__label-location {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-city-switcher__label-location {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
}

.site-city-switcher__icon img {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.18s ease;
}

.site-city-switcher.is-open .site-city-switcher__icon img {
  transform: rotate(45deg);
}

.site-city-switcher__menu {
  box-sizing: border-box;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.55rem);
  left: 0;
  display: none;
  min-width: 100%;
  width: max-content;
  max-width: calc(100vw - 2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #030303;
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.site-city-switcher.is-open .site-city-switcher__menu {
  display: block;
}

.site-city-switcher__list {
  display: grid;
  gap: 0.25rem;
  max-height: min(32rem, 100vh - 7rem);
  max-height: min(32rem, 100dvh - 7rem);
  padding: 0.45rem;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 210, 143, 0.45) rgba(255, 255, 255, 0.06);
  -webkit-overflow-scrolling: touch;
}

.site-city-switcher__scroll-hint {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  height: 4rem;
  padding: 0 1rem 0.65rem;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0) 0%, #030303 68%);
  color: rgba(245, 210, 143, 0.9);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.site-city-switcher__scroll-hint-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  pointer-events: auto;
}

.site-city-switcher__scroll-hint-button:focus-visible {
  outline: 1px solid rgba(245, 210, 143, 0.8);
  outline-offset: 0.15rem;
}

.site-city-switcher__scroll-hint span {
  font-size: 0.9rem;
  line-height: 0.75;
}

.site-city-switcher.is-open.can-scroll-down .site-city-switcher__scroll-hint {
  display: flex;
}

.site-city-switcher__group {
  display: grid;
  gap: 0.15rem;
}

.site-city-switcher__group:not(:first-child) {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-city-switcher__group-label {
  box-sizing: border-box;
  padding: 0.55rem 0.75rem 0.3rem;
  color: rgba(245, 210, 143, 0.86);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-city-switcher__option {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0.68rem 0.75rem;
  border: 1px solid transparent;
  color: #ffffff;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
}

.site-city-switcher__option--city {
  color: rgba(245, 210, 143, 0.86);
  text-transform: uppercase;
}

.site-city-switcher__option--location {
  padding-left: 1rem;
}

.site-city-switcher__option-label {
  display: block;
}

.site-city-switcher__option:hover,
.site-city-switcher__option.is-selected {
  border-color: rgba(245, 210, 143, 0.5);
  background: rgba(245, 210, 143, 0.1);
  color: #ffffff;
}

.site-city-switcher__option--city:hover,
.site-city-switcher__option--city.is-selected {
  color: rgba(245, 210, 143, 0.86);
}

.site-header__mobile-cta {
  display: none;
}

@media (max-width: 1480px) {
  .site-nav__menu {
    gap: 1.2rem;
  }
  .site-header__panel {
    gap: 1.4rem;
  }
  .site-header__inner {
    gap: 1.6rem;
  }
}
@media (max-width: 1280px) {
  .site-shell {
    --site-header-height: 8.5rem;
  }
  .site-header__inner,
  .site-header__panel {
    gap: 2rem;
  }
  .site-shell {
    --site-header-height: 5.8rem;
  }
  .site-header {
    backdrop-filter: none;
  }
  .site-header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    min-height: 3.8rem;
  }
  .site-brand {
    order: 1;
    position: relative;
    z-index: 100;
    flex: 0 0 auto;
  }
  .site-brand__mobile-link {
    display: inline-flex;
  }
  .site-brand__fallback-link,
  .site-brand .custom-logo-link,
  .site-brand .custom-logo {
    display: none;
  }
  .site-header__mobile-cta {
    order: 2;
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 0.75rem;
    flex: 0 0 auto;
  }
  .site-brand__link .custom-logo {
    height: 2.6rem;
  }
  .site-header__mobile-icon-button {
    width: 2.7rem;
    min-width: 2.7rem;
    height: 2.7rem;
  }
  .site-header__mobile-icon-button img {
    width: 1.15rem;
    height: 1.15rem;
  }
  .site-header__panel {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-shell {
    --site-header-height: 5.3rem;
  }
  .site-header {
    padding-block: 0.75rem;
  }
  .site-header__inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem 1rem;
    min-height: 3.2rem;
  }
  .site-brand {
    min-width: 0;
  }
  .site-header__mobile-cta {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 0.35rem;
    margin-right: 0;
  }
  .site-header__mobile-cta .site-city-switcher {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
  }
  .site-header__mobile-cta .site-city-switcher__button {
    width: auto;
    min-width: 0;
    max-width: 100%;
    padding: 0.48rem 0.52rem 0.48rem 0.75rem;
  }
  .site-header__mobile-cta .site-city-switcher__menu {
    right: 0;
    left: auto;
    width: max-content;
    max-width: calc(100vw - 2rem);
  }
  .site-header__mobile-cta .site-city-switcher__list {
    max-height: min(70vh, 100vh - 6rem);
    max-height: min(70dvh, 100dvh - 6rem);
  }
  .site-header__mobile-cta .site-city-switcher__option,
  .site-header__mobile-cta .site-city-switcher__group-label {
    white-space: normal;
  }
  .site-header__mobile-cta .site-city-switcher__option-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .site-brand__link .custom-logo {
    height: 2.3rem;
  }
  .site-brand__mobile-logo {
    height: 2.3rem;
  }
}
@media (max-width: 360px) {
  .site-header__mobile-cta .site-city-switcher__menu {
    position: fixed;
    top: 4.35rem;
    inset-inline: 1rem;
    width: auto;
    max-width: none;
    min-width: 90vw;
  }
}
@media (max-width: 360px) {
  .site-brand__mobile-logo {
    height: 2.05rem;
  }
  .site-header__mobile-icon-button {
    width: 2.35rem;
    min-width: 2.35rem;
    height: 2.35rem;
  }
  .site-header__mobile-icon-button img {
    width: 1rem;
    height: 1rem;
  }
  .site-header__mobile-cta .site-city-switcher__button {
    min-height: 2.35rem;
    padding-inline: 0.62rem 0.45rem;
  }
  .site-city-switcher__label-location {
    font-size: 0.56rem;
  }
}
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #080808 0%, rgba(8, 8, 8, 0.96) 48%, rgba(8, 8, 8, 0.16) 100%), radial-gradient(116.16% 166.24% at 50% 0%, rgba(10, 10, 10, 0) 2.27%, rgba(10, 10, 10, 0) 40.38%, #ddb883 71.32%, #ffe9c5 100%);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 1.15fr) minmax(14rem, 0.85fr) minmax(12rem, 0.72fr) minmax(18rem, 1fr);
  align-items: start;
  gap: clamp(3rem, 6vw, 8rem);
  padding-block: clamp(5rem, 7vw, 7rem) clamp(5rem, 8vw, 7.5rem);
}

.site-footer__brand {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo {
  display: inline-flex;
  width: clamp(14rem, 16vw, 17rem);
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__description {
  max-width: 19rem;
  margin: clamp(1.6rem, 2vw, 2rem) 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 500;
  line-height: 1.38;
}

.site-footer__copyright {
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.site-footer__heading {
  margin: 0 0 clamp(1.55rem, 2vw, 2rem);
  color: rgba(255, 255, 255, 0.42);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__list {
  display: grid;
  gap: clamp(1.2rem, 1.5vw, 1.5rem);
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
}

.site-footer__list a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  color: #f5d28f;
}

@media (max-width: 1100px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer__brand {
    min-height: auto;
  }
  .site-footer__copyright {
    margin-top: 3rem;
  }
}
@media (max-width: 700px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4rem 5rem;
  }
  .site-footer__logo {
    width: 13rem;
  }
  .site-footer__copyright {
    margin-top: 2.5rem;
  }
}
.home-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000000;
}

.home-flow__transition {
  position: relative;
  z-index: 2;
  height: 0;
  pointer-events: none;
}

.home-flow__transition::before {
  content: "";
  position: absolute;
  top: calc(-1 * clamp(14rem, 12.7628865979rem + 5.2783505155vw, 22rem));
  right: -10%;
  width: min(51vw, 61rem);
  height: clamp(46rem, 42.5979381443rem + 14.5154639175vw, 68rem);
  background: url("../images/ellipse.svg") right center/100% 100% no-repeat;
  mask-image: linear-gradient(180deg, transparent 0%, #000000 18%, #000000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000000 18%, #000000 82%, transparent 100%);
}
@media (max-width: 767px) {
  .home-flow__transition::before {
    top: -10rem;
    width: 130vw;
    height: 140vh;
    background: url(../images/ellipse.svg) right center/cover no-repeat;
    filter: blur(40px);
  }
}

.home-hero {
  position: relative;
  isolation: isolate;
  z-index: 1;
  height: 100svh;
  min-height: min(55rem, 100svh);
  max-height: 1080px;
  overflow: visible;
  background-color: #05070a;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.58) 100%), url("../images/hero-bkg-2.jpg");
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.58) 100%), image-set(url("../images/hero-bkg-2.webp") type("image/webp"), url("../images/hero-bkg-2.jpg") type("image/jpeg"));
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: calc(-1 * clamp(4rem, 8vh, 8rem));
  left: 0;
  height: clamp(18rem, 34vh, 30rem);
  background: linear-gradient(180deg, transparent 0%, #000000 100%);
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-block: var(--site-header-height, 2.5rem) 10rem;
}

.home-hero__content {
  width: min(100%, 65vw, 65rem);
  margin-inline: auto;
  text-align: center;
}

.home-hero__title {
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(2.7rem, 5.5vw, 5.7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.home-hero__title span {
  color: #f5d28f;
}

.home-hero__text {
  font-size: 1.125rem;
  letter-spacing: 0.0277778em;
  max-width: 51rem;
  margin: 1.4rem auto 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 2.7rem;
}

.home-hero__meta {
  position: absolute;
  left: 0;
  bottom: 5.2rem;
  color: #ffffff;
  text-align: left;
}

.home-hero__stars {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.home-hero__stars img {
  display: block;
  width: auto;
  height: 1rem;
}

.home-hero__rating {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.2;
}

.home-hero__caption {
  margin-top: 0.7rem;
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero__scroll {
  position: absolute;
  right: 0;
  bottom: 5.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
}

.home-hero__scroll-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-hero__scroll-icon img {
  display: block;
  width: auto;
  height: 1.6rem;
}

.home-hero__particles {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -4rem;
  width: clamp(24rem, 30vw, 35rem);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(0px, -60%);
}

.home-hero__particles canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.home-content {
  background: #000000;
}

@media (max-width: 1400px) {
  .home-hero__title {
    max-width: 92rem;
  }
  .home-hero__particles {
    right: -4rem;
    width: clamp(22rem, 25vw, 32rem);
  }
}
@media (max-width: 1024px) {
  .home-hero__particles {
    display: none;
  }
}
@media (min-width: 768px) and (max-height: 760px) {
  .home-hero {
    min-height: 100svh;
  }
  .home-hero__inner {
    padding-block: calc(var(--site-header-height, 2.5rem) + 1rem) 3rem;
  }
  .home-hero__title {
    font-size: clamp(2.9rem, 4.55vw, 4.45rem);
    line-height: 0.98;
  }
  .home-hero__text {
    max-width: 44rem;
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.4;
  }
  .home-hero__actions {
    margin-top: 1.7rem;
  }
  .home-hero__meta,
  .home-hero__scroll {
    display: none;
  }
}
@media (max-width: 767px) {
  .home-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    background-image: none;
  }
  .home-hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 100svh;
    background-color: #05070a;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.58) 100%), image-set(url("../images/hero-bkg-2.webp") type("image/webp"), url("../images/hero-bkg-2.jpg") type("image/jpeg"));
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: auto 100svh;
    pointer-events: none;
  }
  .home-hero::after {
    display: none;
  }
  .home-hero__inner {
    justify-content: flex-start;
    height: auto;
    padding-block: var(--site-header-height, 2.5rem) 2.5rem;
  }
  .home-hero__content {
    width: 100%;
  }
  .home-hero__content br {
    display: none;
  }
  .home-hero__title {
    line-height: 0.98;
  }
  .home-hero__actions {
    justify-content: flex-start;
    margin-top: 2.4rem;
  }
  .home-hero__meta {
    bottom: 3.2rem;
  }
  .home-hero__scroll {
    display: none;
  }
}
.exchange-rates-flow {
  position: relative;
  z-index: 3;
  isolation: isolate;
  margin-top: calc(-1 * clamp(3rem, 2.6907216495rem + 1.3195876289vw, 5rem));
  overflow: hidden;
  background: transparent;
}

.exchange-section {
  position: relative;
  isolation: isolate;
  z-index: 3;
  padding-block: clamp(3rem, 2.6134020619rem + 1.6494845361vw, 5.5rem);
  overflow: visible;
}

.exchange-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(17rem, 0.9fr) minmax(25rem, 1.02fr) minmax(18rem, 0.88fr);
  align-items: center;
  gap: 2rem;
}

.exchange-section__intro {
  min-width: 0;
}

.exchange-section__title {
  margin: clamp(3rem, 2.8453608247rem + 0.6597938144vw, 4rem) 0 0;
}

.exchange-coins {
  width: clamp(18rem, 16.4536082474rem + 6.5979381443vw, 28rem);
  margin-top: clamp(2rem, 1.8453608247rem + 0.6597938144vw, 3rem);
}

.exchange-coins picture,
.exchange-coins img {
  display: block;
  width: 100%;
}

.exchange-coins img {
  height: auto;
}

.exchange-calculator-wrap {
  min-width: 0;
}

.exchange-calculator {
  padding: clamp(1rem, 0.9304123711rem + 0.2969072165vw, 1.45rem);
  border-color: rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #18181b 0%, #0a0a0a 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 2rem 5rem rgba(0, 0, 0, 0.3);
  border-radius: clamp(3rem, 2.8453608247rem + 0.6597938144vw, 4rem);
}

.exchange-calculator__screen {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 0.812371134rem + 2.5072164948vw, 5.2rem) clamp(1rem, 0.5360824742rem + 1.9793814433vw, 4rem);
  border-radius: calc(var(--surface-radius) - 1.2rem);
  border-radius: clamp(2.25rem, 2.1340206186rem + 0.4948453608vw, 3rem);
  background: #171719;
  box-shadow: 0 0 clamp(1.5rem, 1.4226804124rem + 0.3298969072vw, 2rem) clamp(0.5rem, 0.4613402062rem + 0.1649484536vw, 0.75rem) rgba(0, 0, 0, 0.7490196078) inset;
}

.exchange-calculator__logo {
  display: block;
  width: clamp(12rem, 10.7628865979rem + 5.2783505155vw, 20rem);
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.exchange-field {
  margin-top: clamp(2rem, 1.6134020619rem + 1.6494845361vw, 4.5rem);
}

.exchange-field + .exchange-field {
  margin-top: clamp(0.9rem, 0.7298969072rem + 0.7257731959vw, 2rem);
}

.exchange-rate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: clamp(1.25rem, 1.1533505155rem + 0.412371134vw, 1.875rem) 0 0;
  padding: 14px 16px;
  border: 1.25px solid transparent;
  border-radius: 10px;
  background: linear-gradient(rgba(23, 23, 21, 0.92), rgba(23, 23, 21, 0.92)) padding-box, linear-gradient(90deg, #3e3a32 0%, #151515 100%) border-box;
  color: #7D8187;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.exchange-rate + .exchange-field {
  margin-top: clamp(1.25rem, 1.1050257732rem + 0.618556701vw, 2.1875rem);
}

.exchange-rate__text {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1;
}

.exchange-rate__text strong {
  color: #F9DAA2;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.exchange-field__label {
  display: block;
  font-size: 1.25rem;
  margin-bottom: clamp(0.9rem, 0.7298969072rem + 0.7257731959vw, 2rem);
  color: rgba(255, 255, 255, 0.48);
}

.exchange-field__control {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 0.5340206186rem + 0.4948453608vw, 1.4rem);
  padding: clamp(0.5rem, 0.4806701031rem + 0.0824742268vw, 0.625rem) clamp(0.75rem, 0.7210051546rem + 0.1237113402vw, 0.9375rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050505;
}

.exchange-field__currency {
  position: relative;
  flex: 0 0 6rem;
  min-width: 0;
}

.exchange-currency__button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  width: 100%;
  min-height: clamp(2.25rem, 2.2113402062rem + 0.1649484536vw, 2.5rem);
  padding: 0 clamp(1rem, 0.9458762887rem + 0.2309278351vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background-color: #080808;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025)), linear-gradient(#d9d9d9, #d9d9d9), linear-gradient(#d9d9d9, #d9d9d9), linear-gradient(#d9d9d9, #d9d9d9), linear-gradient(#d9d9d9, #d9d9d9), linear-gradient(#d9d9d9, #d9d9d9), linear-gradient(#d9d9d9, #d9d9d9), linear-gradient(#d9d9d9, #d9d9d9), linear-gradient(#d9d9d9, #d9d9d9);
  background-position: 0 0, 0 0, 0 0, 100% 0, 100% 0, 0 100%, 0 100%, 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-size: auto, 4px 1px, 1px 4px, 4px 1px, 1px 4px, 4px 1px, 1px 4px, 4px 1px, 1px 4px;
  color: #ffffff;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: clamp(1rem, 0.9806701031rem + 0.0824742268vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0;
  cursor: pointer;
}

.exchange-currency__button::after {
  content: "+";
  color: #ffffff;
  font: inherit;
  line-height: 1;
  font-size: clamp(1.2rem, 1.1729381443rem + 0.1154639175vw, 1.375rem);
}

.exchange-currency.is-open .exchange-currency__button::after {
  content: "-";
}

.exchange-field__value {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 0.2rem;
  min-width: 0;
}

.exchange-field__symbol {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.1729381443rem + 0.1154639175vw, 1.375rem);
  line-height: 1;
}

.exchange-currency__list {
  position: absolute;
  z-index: 8;
  top: calc(100% + 1px);
  left: 0;
  display: none;
  width: max(100%, 10.5rem);
  max-height: min(20rem, 100vh - 12rem);
  overflow-y: auto;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #030303;
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  scrollbar-color: rgba(255, 255, 255, 0.34) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.exchange-currency__list::-webkit-scrollbar {
  width: 0.45rem;
}

.exchange-currency__list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.exchange-currency__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.34);
}

.exchange-currency.is-open .exchange-currency__list {
  display: grid;
  gap: 0.25rem;
}

.exchange-currency__option {
  appearance: none;
  min-height: 2.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.76rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.exchange-currency__option:hover,
.exchange-currency__option.is-selected {
  border-color: rgba(245, 210, 143, 0.5);
  background: rgba(245, 210, 143, 0.1);
  color: #ffffff;
}

.exchange-field__amount {
  appearance: none;
  flex: 1 1 auto;
  width: 0;
  min-width: 0;
  padding-inline: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: clamp(1.35rem, 1.3268041237rem + 0.0989690722vw, 1.5rem);
  line-height: 1;
}

.exchange-field__amount:focus,
.exchange-currency__button:focus {
  outline: none;
}

.exchange-range {
  margin-top: clamp(1rem, 0.7989690722rem + 0.8577319588vw, 2.3rem);
}

.exchange-range__input {
  appearance: none;
  display: block;
  width: 100%;
  height: 1rem;
  margin: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.exchange-range__input::-webkit-slider-thumb {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.exchange-range__input::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.exchange-range__input::-moz-range-track {
  height: 0.72rem;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
}

.exchange-range__limits {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(0.3rem, 0.2226804124rem + 0.3298969072vw, 0.8rem);
  color: rgba(255, 255, 255, 0.42);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1rem;
}

.exchange-calculator__button {
  margin-top: clamp(1rem, 0.8762886598rem + 0.5278350515vw, 1.8rem);
}

.exchange-benefits {
  align-self: end;
  display: grid;
  gap: 2rem;
  min-width: 0;
  margin: 0 0 clamp(1.5rem, 1.4420103093rem + 0.2474226804vw, 1.875rem);
}

.exchange-benefit {
  --exchange-benefit-highlight: rgba(255, 255, 255, 0.56);
  position: relative;
  min-height: 13rem;
  padding: clamp(1.5rem, 1.4613402062rem + 0.1649484536vw, 1.75rem);
  border: 1px solid transparent;
  border-radius: 1.8rem;
  background: transparent;
}

.exchange-benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--exchange-benefit-highlight) 0%, rgba(255, 255, 255, 0.34) 14%, rgba(255, 255, 255, 0.08) 34%, transparent 48%, transparent 58%, rgba(255, 255, 255, 0.1) 72%, rgba(255, 255, 255, 0.36) 88%, var(--exchange-benefit-highlight) 100%) border-box;
  mask: linear-gradient(#ffffff 0 0) padding-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#ffffff 0 0) padding-box, linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.exchange-benefit > * {
  position: relative;
  z-index: 1;
}

.exchange-benefit__icon {
  display: block;
  width: 2.6rem;
  object-fit: contain;
}

.exchange-benefit__title {
  margin: clamp(0.8rem, 0.7690721649rem + 0.1319587629vw, 1rem) 0 0;
  font-size: clamp(1.6rem, 1.5381443299rem + 0.2639175258vw, 2rem);
  color: #ffffff;
  font-weight: 400;
  line-height: 1.15;
}

.exchange-benefit__text {
  margin: clamp(0.8rem, 0.7690721649rem + 0.1319587629vw, 1rem) 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 1.3rem;
  line-height: 1.34;
}

.exchange-modal[hidden] {
  display: none;
}

.exchange-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  box-sizing: border-box;
  display: grid;
  place-items: start center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1.5rem;
  overscroll-behavior: contain;
}

.exchange-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(clamp(0.5rem, 0.4806701031rem + 0.0824742268vw, 0.625rem));
}

.exchange-modal__dialog {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: min(100%, 36rem);
  max-width: 100%;
  margin-block: auto;
  padding: clamp(1.6rem, 1.4762886598rem + 0.5278350515vw, 2.4rem);
}

.exchange-modal__close {
  appearance: none;
  position: absolute;
  z-index: 4;
  top: 1.2rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.exchange-modal__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 1.7072164948rem + 0.3958762887vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0;
}

.exchange-modal__summary {
  position: relative;
  z-index: 1;
  margin-top: clamp(1.1rem, 1.0536082474rem + 0.1979381443vw, 1.4rem);
}

.exchange-modal__summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.exchange-modal__summary-item {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.025);
}

.exchange-modal__summary-item span,
.exchange-modal__summary-note {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  line-height: 1.35;
}

.exchange-modal__summary-item span {
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exchange-modal__summary-item strong {
  min-width: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

.exchange-modal__summary-note {
  margin: 0.9rem 0 0;
}

.exchange-modal__form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.exchange-modal__form p,
.exchange-modal__form label {
  margin: 0;
}

.exchange-modal__form > p {
  display: grid;
  gap: 1rem;
}

.exchange-modal__form > p:has(.wpcf7-submit) {
  position: relative;
}

.exchange-modal__form br {
  display: none;
}

.exchange-modal__form .wpcf7-form-control-wrap {
  display: block;
}

.exchange-modal__form .wpcf7-form-control-wrap:has(input[type=hidden]) {
  display: none;
}

.exchange-modal__amounts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.exchange-modal__amounts[hidden] {
  display: none;
}

.exchange-modal__field {
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.exchange-modal__field input,
.exchange-modal__form input[type=text],
.exchange-modal__form input[type=tel],
.exchange-modal__form input[type=email],
.exchange-modal__form textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: #050505;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.25;
}

.exchange-modal__field input[readonly],
.exchange-modal__form input[readonly] {
  color: rgba(255, 255, 255, 0.68);
  cursor: default;
}

.exchange-modal__field input:focus,
.exchange-modal__form input[type=text]:focus,
.exchange-modal__form input[type=tel]:focus,
.exchange-modal__form input[type=email]:focus,
.exchange-modal__form textarea:focus {
  outline: 1px solid rgba(255, 255, 255, 0.42);
  outline-offset: -1px;
}

.exchange-modal__form .wpcf7-not-valid {
  border-color: rgba(255, 198, 41, 0.72) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 198, 41, 0.18);
}

.exchange-modal__submit,
.exchange-modal__form .wpcf7-submit {
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  min-height: 3.4rem;
  margin-top: 0.5rem;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.exchange-modal__form.submitting .wpcf7-submit {
  color: transparent;
  cursor: wait;
}

.exchange-modal__form .wpcf7-spinner {
  position: absolute;
  left: 50%;
  bottom: 1.05rem;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  border: 2px solid rgba(17, 17, 17, 0.18);
  border-top-color: #111111;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  animation: exchange-modal-loader 0.75s linear infinite;
}

.exchange-modal__form.submitting .wpcf7-spinner {
  opacity: 1;
  visibility: visible;
}

.exchange-modal__form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 214, 94, 0.9);
  font-size: 0.78rem;
  line-height: 1.35;
}

.exchange-modal__form .wpcf7-response-output {
  display: block;
  margin: 0.25rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.42);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
  line-height: 1.45;
}

.exchange-modal__form.invalid .wpcf7-response-output,
.exchange-modal__form.unaccepted .wpcf7-response-output,
.exchange-modal__form.spam .wpcf7-response-output {
  border-color: rgba(255, 198, 41, 0.48);
  background: rgba(255, 198, 41, 0.08);
  color: rgba(255, 235, 172, 0.92);
}

.exchange-modal__form.sent .wpcf7-response-output {
  border-color: rgba(130, 255, 184, 0.38);
  background: rgba(130, 255, 184, 0.08);
  color: rgba(205, 255, 226, 0.92);
}

.exchange-modal__success {
  position: relative;
  z-index: 1;
  display: none;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.1rem 1rem;
  margin-top: 1.4rem;
}

.exchange-modal__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 198, 41, 0.46);
  border-radius: 50%;
  background: rgba(255, 198, 41, 0.09);
  color: #ffc629;
  font-size: 1.35rem;
  line-height: 1;
}

.exchange-modal__success-text {
  max-width: 27rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.5;
}

.exchange-modal__success-close {
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  min-height: 3.4rem;
  margin-top: 0.35rem;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.exchange-modal__success-close:hover {
  background: #ffc629;
}

.exchange-modal__success-close:focus-visible {
  outline: 2px solid #ffc629;
  outline-offset: 3px;
}

.exchange-modal.is-exchange-modal-success .exchange-modal__dialog {
  width: min(100%, 32rem);
  padding: clamp(1.5rem, 1.4072164948rem + 0.3958762887vw, 2.1rem);
}

.exchange-modal.is-exchange-modal-success .exchange-modal__title {
  padding-right: 3rem;
  font-size: clamp(1.8rem, 1.7536082474rem + 0.1979381443vw, 2.1rem);
}

.exchange-modal.is-exchange-modal-success .exchange-modal__summary {
  display: none;
}

.exchange-modal.is-exchange-modal-success .exchange-modal__form {
  display: none;
}

.exchange-modal.is-exchange-modal-success .exchange-modal__success {
  display: grid;
}

.exchange-modal.is-exchange-modal-success .exchange-modal__success-close {
  grid-column: 1/-1;
}

.exchange-modal__form.failed .wpcf7-response-output,
.exchange-modal__form.aborted .wpcf7-response-output {
  border-color: rgba(255, 116, 116, 0.42);
  background: rgba(255, 116, 116, 0.08);
  color: rgba(255, 210, 210, 0.92);
}

@keyframes exchange-modal-loader {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .exchange-modal__form .wpcf7-spinner {
    animation-duration: 1.5s;
  }
}
body.is-exchange-modal-open {
  overflow: hidden;
}

@media (min-width: 1920px) {
  .exchange-section {
    padding-block: 5.5rem;
  }
  .exchange-section::before {
    height: calc(100% + 30rem);
  }
  .exchange-section::after {
    height: 15rem;
  }
  .exchange-section__title {
    margin-top: 4rem;
    font-size: 3.4rem;
  }
  .exchange-coins {
    width: 28rem;
    margin-top: 3rem;
  }
  .exchange-calculator {
    padding: 1.45rem;
    border-radius: 4rem;
  }
  .exchange-calculator__screen {
    padding: 5.2rem 4rem;
    border-radius: 3rem;
    box-shadow: 0 0 2rem 0.75rem rgba(0, 0, 0, 0.7490196078) inset;
  }
  .exchange-calculator__logo {
    width: 20rem;
  }
  .exchange-field {
    margin-top: 4.5rem;
  }
  .exchange-field + .exchange-field {
    margin-top: 2rem;
  }
  .exchange-field__label {
    margin-bottom: 2rem;
  }
  .exchange-field__control {
    gap: 1.4rem;
    padding: 0.625rem 0.9375rem;
  }
  .exchange-currency__button {
    min-height: 2.5rem;
    padding-inline: 1.35rem;
    font-size: 1.125rem;
  }
  .exchange-currency__button::after,
  .exchange-field__symbol {
    font-size: 1.375rem;
  }
  .exchange-field__amount {
    font-size: 1.5rem;
  }
  .exchange-range {
    margin-top: 2.3rem;
  }
  .exchange-range__limits {
    margin-top: 0.8rem;
  }
  .exchange-calculator__button {
    margin-top: 1.8rem;
  }
  .exchange-benefits {
    margin-bottom: 1.875rem;
  }
  .exchange-benefit {
    padding: 1.75rem;
  }
  .exchange-benefit__title {
    margin-top: 1rem;
    font-size: 2rem;
  }
  .exchange-benefit__text {
    margin-top: 1rem;
  }
  .exchange-modal__backdrop {
    backdrop-filter: blur(0.625rem);
  }
  .exchange-modal__dialog {
    padding: 2.4rem;
  }
  .exchange-modal__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 1200px) {
  .exchange-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 1.05fr);
  }
  .exchange-benefits {
    align-self: stretch;
    grid-column: 1/-1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .exchange-section__inner,
  .exchange-benefits {
    grid-template-columns: 1fr;
  }
  .exchange-section__title br {
    display: none;
  }
  .exchange-coins {
    margin-inline: auto;
  }
}
@media (max-width: 560px) {
  .exchange-section {
    padding-block: 4rem;
  }
  .exchange-section__inner {
    gap: 3rem;
  }
  .exchange-coins {
    transform: scale(0.86);
    transform-origin: center top;
    margin-bottom: -2rem;
  }
  .exchange-field__control {
    gap: 0.55rem;
    padding-inline: 0.85rem;
  }
  .exchange-field__currency {
    flex-basis: 5rem;
  }
  .exchange-benefit {
    min-height: auto;
  }
  .exchange-modal {
    padding: 1rem;
  }
  .exchange-modal__summary-grid {
    grid-template-columns: 1fr;
  }
  .exchange-modal__amounts {
    grid-template-columns: 1fr;
  }
}
.rates-section {
  position: relative;
  isolation: isolate;
  z-index: 1;
  background: transparent;
  padding-block: clamp(2.5rem, 2.1520618557rem + 1.4845360825vw, 4.75rem);
  overflow: visible;
}

.rates-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(-1 * clamp(18rem, 16.1443298969rem + 7.9175257732vw, 30rem));
  left: -10%;
  width: min(56vw, 64rem);
  height: calc(100% + clamp(38rem, 34.9072164948rem + 13.1958762887vw, 58rem));
  background: url("../images/ellipse-2.svg") left top/100% 100% no-repeat;
  opacity: 1;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, #000000 18%, #000000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, #000000 18%, #000000 78%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .rates-section::before {
    display: none;
  }
}

.rates-section__inner {
  position: relative;
  z-index: 2;
}

.rates-section__title {
  max-width: 42rem;
  margin: clamp(2.3rem, 2.1762886598rem + 0.5278350515vw, 3.1rem) 0 0;
}

.rates-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(18rem, 28vw, 25rem);
  align-items: start;
  gap: clamp(1.4rem, 0.9979381443rem + 1.7154639175vw, 4rem);
  margin-top: clamp(3rem, 2.7216494845rem + 1.187628866vw, 4.8rem);
}

.rates-table {
  min-width: 0;
  padding: clamp(1.15rem, 1.0881443299rem + 0.2639175258vw, 1.55rem) clamp(1.25rem, 1.1340206186rem + 0.4948453608vw, 2rem);
  border-radius: 20px;
}

.rates-table > * {
  position: relative;
  z-index: 1;
}

.rates-table__head,
.rates-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: clamp(0.75rem, 0.5257731959rem + 0.9567010309vw, 2.2rem);
}

.rates-table__head {
  min-height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #7D8187;
  font-size: 1rem;
  font-weight: 300;
}

.rates-table__head span:last-child {
  justify-self: end;
}

.rates-table__row {
  min-height: 130px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: clamp(0.875rem, 0.8170103093rem + 0.2474226804vw, 1.25rem);
}

.rates-table__row[hidden] {
  display: none;
}

.rates-table__row:last-child {
  border-bottom: 0;
}

.rates-table__cell {
  min-width: 0;
}

.rates-table__cell--accent {
  color: #f5d28f;
}

.rates-table__rate-unit-compact {
  display: none;
}

.rates-table__currency {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 0.5190721649rem + 0.1319587629vw, 0.75rem);
  text-transform: uppercase;
}

.rates-table__action {
  justify-self: end;
  min-width: 0;
  max-width: 100%;
}

.rates-table__button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.2rem, 0.1922680412rem + 0.0329896907vw, 0.25rem);
  max-width: 100%;
  min-height: clamp(2.35rem, 2.2881443299rem + 0.2639175258vw, 2.75rem);
  padding-inline: clamp(0.85rem, 0.8190721649rem + 0.1319587629vw, 1.05rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  appearance: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rates-table__button:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.rates-table__button .button__arrow img {
  display: block;
  width: 100%;
  height: auto;
  max-width: clamp(0.85rem, 0.8268041237rem + 0.0989690722vw, 1rem);
}

.rates-table__button-label--mobile {
  display: none;
}

.rates-table__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(1rem, 0.9226804124rem + 0.3298969072vw, 1.5rem);
  padding-top: clamp(1.4rem, 1.3226804124rem + 0.3298969072vw, 1.9rem);
}

.rates-table__more {
  appearance: none;
  min-height: clamp(2.1rem, 2.0536082474rem + 0.1979381443vw, 2.4rem);
  min-width: max-content;
  padding-inline: clamp(0.85rem, 0.8190721649rem + 0.1319587629vw, 1.05rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: clamp(0.6rem, 0.587628866rem + 0.0527835052vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.rates-table__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(0.68rem, 0.667628866rem + 0.0527835052vw, 0.76rem);
  line-height: 1.35;
  text-align: right;
}

.rates-table__empty {
  margin: clamp(1.4rem, 1.3072164948rem + 0.3958762887vw, 2rem) 0;
  color: rgba(255, 255, 255, 0.58);
}

.city-locations-section {
  position: relative;
  isolation: isolate;
  z-index: 1;
  padding-block: clamp(3.5rem, 3.0360824742rem + 1.9793814433vw, 6.5rem);
}

.city-locations-section__inner {
  position: relative;
  z-index: 1;
}

.city-locations-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: clamp(1.25rem, 0.9020618557rem + 1.4845360825vw, 3.5rem);
  margin-top: clamp(2.2rem, 2.0762886598rem + 0.5278350515vw, 3rem);
}

.city-locations-section__title {
  max-width: 42rem;
  margin: 0;
}

.city-locations-section__text {
  max-width: 32rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.city-locations-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 0.8536082474rem + 0.1979381443vw, 1.2rem);
  margin-top: clamp(2.4rem, 2.1912371134rem + 0.8907216495vw, 3.75rem);
}

.city-location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 0.9381443299rem + 0.2639175258vw, 1.4rem);
  min-height: clamp(7.5rem, 7.1907216495rem + 1.3195876289vw, 9.5rem);
  padding: clamp(1.15rem, 1.0804123711rem + 0.2969072165vw, 1.6rem);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.city-location-card:hover {
  border-color: rgba(245, 210, 143, 0.45);
  background: rgba(245, 210, 143, 0.08);
  transform: translateY(-2px);
}

.city-location-card__content {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.city-location-card__label {
  color: #ffffff;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: clamp(1rem, 0.9536082474rem + 0.1979381443vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
}

.city-location-card__address {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.85rem, 0.8268041237rem + 0.0989690722vw, 1rem);
  line-height: 1.45;
}

.city-location-card__action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: clamp(2.4rem, 2.3072164948rem + 0.3958762887vw, 3rem);
  height: clamp(2.4rem, 2.3072164948rem + 0.3958762887vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.city-location-card__action img {
  display: block;
  width: clamp(0.9rem, 0.8768041237rem + 0.0989690722vw, 1.05rem);
  height: auto;
}

@media (max-width: 900px) {
  .city-locations-section__intro,
  .city-locations-section__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.city-map-section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(5rem, 4.4587628866rem + 2.3092783505vw, 8.5rem) clamp(5.5rem, 5.1134020619rem + 1.6494845361vw, 8rem);
}

.city-map-section__inner {
  position: relative;
  z-index: 1;
}

.city-map-section__title {
  max-width: 48rem;
  margin: clamp(2.2rem, 2.0453608247rem + 0.6597938144vw, 3.2rem) 0 0;
}

.city-map-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.6rem, 1.2288659794rem + 1.5835051546vw, 4rem);
  margin-top: clamp(3rem, 2.7680412371rem + 0.9896907216vw, 4.5rem);
}

.city-map-section__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(34rem, 32.9948453608rem + 4.2886597938vw, 40.5rem);
  border-radius: clamp(1.25rem, 1.1726804124rem + 0.3298969072vw, 1.75rem);
  background: #e9e7e2;
}

.city-map-section__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(1) contrast(0.92) brightness(1.04);
}

.city-map-section__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

.city-map-section__link:focus-visible {
  outline: 0.18rem solid #f5d28f;
  outline-offset: -0.45rem;
}

.city-map-section__actions {
  display: none;
  align-self: stretch;
  max-width: none;
}

.city-map-section__actions .contact-actions__inner {
  height: 100%;
  grid-auto-rows: 1fr;
}

.rates-contact-actions {
  justify-self: end;
  max-width: 25rem;
}

.rates-contact-actions--mobile-featured {
  display: none;
  justify-self: stretch;
  max-width: none;
  margin-top: clamp(1.8rem, 1.6762886598rem + 0.5278350515vw, 2.6rem);
}

@media (max-width: 1100px) {
  .rates-table {
    padding-inline: clamp(1rem, 0.9613402062rem + 0.1649484536vw, 1.25rem);
  }
  .rates-table__head,
  .rates-table__row {
    gap: 0.75rem;
  }
  .rates-table__button {
    padding-inline: 0.75rem;
  }
}
@media (max-width: 991px) {
  .rates-section__content {
    grid-template-columns: 1fr;
  }
  .rates-section .rates-contact-actions {
    display: none;
  }
  .rates-section .rates-contact-actions--mobile-featured,
  .city-map-section__actions {
    display: block;
  }
  .city-map-section__actions {
    justify-self: stretch;
    max-width: 100%;
  }
}
@media (max-width: 766px) {
  .city-map-section__layout {
    grid-template-columns: 1fr;
  }
  .city-map-section__frame {
    min-height: clamp(34.375rem, 33.4085051546rem + 4.1237113402vw, 40.625rem);
  }
  .city-map-section__actions {
    justify-self: stretch;
    max-width: none;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .rates-table__head,
  .rates-table__row {
    gap: 0.45rem;
  }
  .rates-table__head > :nth-child(3),
  .rates-table__row > :nth-child(3) {
    justify-self: center;
    text-align: center;
  }
  .rates-table__head > :nth-child(4),
  .rates-table__row > :nth-child(4) {
    justify-self: stretch;
    text-align: center;
  }
  .rates-table__row {
    min-height: 5.6rem;
  }
  .rates-table__button {
    width: 100%;
    min-height: 2.35rem;
    padding-inline: 0.55rem;
    font-size: 0.68rem;
  }
}
@media (max-width: 420px) {
  .rates-table__head,
  .rates-table__row {
    gap: 0.55rem;
  }
  .rates-table__rate-unit,
  .rates-table__button-label--default {
    display: none;
  }
  .rates-table__rate-unit-compact {
    display: inline;
  }
  .rates-table__button-label--mobile {
    display: inline;
  }
  .rates-table__button {
    padding-inline: 0.5rem;
    font-size: 0.72rem;
  }
}
@media (max-width: 375px) {
  .rates-table {
    padding-inline: 0.75rem;
  }
  .rates-table__head,
  .rates-table__row {
    gap: 0.35rem;
  }
  .rates-table__head {
    font-size: 0.88rem;
  }
  .rates-table__row {
    font-size: 0.82rem;
  }
  .rates-table__button-label--mobile {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .rates-table__button {
    width: 2.3rem;
    min-width: 2.3rem;
    min-height: 2.3rem;
    padding-inline: 0;
  }
}
.capabilities-section {
  background: #080808;
  padding-block: clamp(5rem, 8vw, 9.5rem);
  overflow: hidden;
}

.capabilities-section__inner {
  position: relative;
}

.capabilities-section__intro {
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.capabilities-section__title {
  max-width: 55rem;
  margin: 0;
}

.capabilities-section__title span {
  color: #f5d28f;
}

.capabilities-section__grid {
  display: grid;
  grid-template-columns: minmax(32rem, 0.97fr) minmax(36rem, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: clamp(5rem, 8vw, 8.8rem);
}

.capabilities-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 2vw, 2rem);
}

.capability-card,
.capability-panel {
  --surface-radius: clamp(2rem, 2.4vw, 3rem);
  overflow: hidden;
}

.capability-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.8rem, 2vw, 2.3rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 46%), #080808;
  box-shadow: inset 0 0 3.8rem rgba(255, 255, 255, 0.025), 0 2rem 5rem rgba(0, 0, 0, 0.22);
}

.capability-card__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.capability-card__text {
  max-width: 18rem;
  margin: clamp(1rem, 1.2vw, 1.25rem) 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.28;
}

.capability-card__value {
  margin-top: auto;
  color: #f5d28f;
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.capability-card__value span {
  display: inline-block;
  color: #ffd65c;
  font-size: 0.78em;
  transform: translateY(-0.05em);
}

.capability-panel {
  position: relative;
  min-height: clamp(30rem, 30vw, 38rem);
  padding: clamp(2rem, 2.5vw, 2.8rem);
  background: radial-gradient(circle at 78% 74%, rgba(245, 210, 143, 0.08), transparent 18rem), linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 48%), #080808;
  box-shadow: inset 0 0 5rem rgba(255, 255, 255, 0.018), 0 2rem 5rem rgba(0, 0, 0, 0.24);
}

.capability-panel__content {
  max-width: 48rem;
}

.capability-panel__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.capability-panel__text {
  max-width: 50rem;
  margin: clamp(1.1rem, 1.3vw, 1.45rem) 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  line-height: 1.34;
}

.capability-panel__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 30rem;
  object-fit: contain;
}

.capability-panel__value {
  position: absolute;
  z-index: 2;
  left: clamp(2rem, 2.5vw, 2.8rem);
  bottom: clamp(2rem, 2.5vw, 2.8rem);
  color: #f5d28f;
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

@media (max-width: 1280px) {
  .capabilities-section__grid {
    grid-template-columns: 1fr;
  }
  .capabilities-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .capability-card {
    min-height: 19rem;
  }
  .capability-panel {
    min-height: 36rem;
  }
}
@media (max-width: 1020px) {
  .capabilities-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .capabilities-section__title {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
  }
}
@media (max-width: 700px) {
  .capabilities-section {
    padding-block: 4rem;
  }
  .capabilities-section__grid {
    margin-top: 3.5rem;
  }
  .capabilities-metrics {
    grid-template-columns: 1fr;
  }
  .capability-card {
    min-height: 15.5rem;
  }
  .capability-panel {
    min-height: 34rem;
  }
}
.steps-section {
  --steps-bg-scroll-y: 8rem;
  --steps-bg-fixed-y: center;
  position: relative;
  isolation: isolate;
  min-height: clamp(90rem, 66.6667rem + 48.6111vw, 125rem);
  padding-block: clamp(6rem, 4rem + 4.1667vw, 9rem) clamp(6rem, 4rem + 4.1667vw, 9rem);
  overflow: hidden;
  background: url("../images/yellow-light.svg") center var(--steps-bg-scroll-y)/132% auto no-repeat, #080808;
  background-attachment: scroll;
}

.steps-section--fixed-bg {
  background-position: center var(--steps-bg-fixed-y);
  background-attachment: fixed;
}

.steps-section__fixed-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: url("../images/yellow-light.svg") center var(--steps-bg-fixed-y)/132% auto no-repeat;
  transform: translateZ(0);
  will-change: opacity;
}

.steps-section--safari-fixed-bg {
  background-image: none;
}

.steps-section--safari-fixed-bg .steps-section__fixed-bg {
  opacity: 1;
}

.steps-section__inner {
  position: relative;
}

.steps-section__sticky {
  position: relative;
  z-index: 1;
}

.steps-section__eyebrow {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-inline: auto;
}

.steps-section__headline {
  display: grid;
  grid-template-columns: minmax(26rem, 1fr) minmax(25rem, 0.78fr);
  align-items: start;
  gap: clamp(4rem, -4rem + 16.6667vw, 16rem);
  margin-top: clamp(4.7rem, 2.7667rem + 4.0278vw, 7.6rem);
  padding-inline: clamp(2rem, -1.3333rem + 6.9444vw, 7rem);
  transform: translate(2rem, 0);
}

.steps-section__title,
.steps-section__lead {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 1.7rem + 1.4583vw, 3.45rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.steps-section__title span,
.steps-section__lead span {
  display: block;
  color: #f5d28f;
  font-size: clamp(2.4rem, 1.7rem + 1.4583vw, 3.45rem);
}

.steps-section__lead {
  font-size: clamp(2.4rem, 1.4rem + 2.0833vw, 3.9rem);
  justify-self: end;
  max-width: 38rem;
  padding-top: clamp(0.4rem, 0.1333rem + 0.5556vw, 0.8rem);
}

.steps-section__list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.9rem, 1.3rem + 1.25vw, 2.8rem);
  width: min(100%, 23.6rem);
  margin: clamp(12rem, 9.3333rem + 5.5556vw, 16rem) auto 0;
}

.steps-card {
  --surface-radius: clamp(1.5rem, calc(0.9rem + 1.25vw), 2.4rem);
  position: relative;
  padding: clamp(1.6rem, 1.3333rem + 0.5556vw, 2rem);
  background: linear-gradient(180deg, rgba(245, 210, 143, 0.055), rgba(255, 255, 255, 0.018) 58%, rgba(245, 210, 143, 0.035)), rgba(14, 13, 10, 0.78);
  box-shadow: inset 0 0 0.7rem rgba(255, 255, 255, 0.055), inset 0 -2.8rem 4rem rgba(245, 210, 143, 0.035), 0 1.8rem 4.5rem rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.steps-card::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--surface-radius) - 0.45rem);
  pointer-events: none;
}

.steps-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.steps-card__title {
  max-width: 15rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 1.2167rem + 0.4861vw, 1.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.steps-card__number {
  color: #f5d28f;
  font-size: clamp(1.35rem, 1.05rem + 0.625vw, 1.8rem);
  font-weight: 600;
  line-height: 1;
}

.steps-card__visual {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(10.5rem, 8.9667rem + 3.1944vw, 12.8rem);
  place-items: center;
  margin-top: clamp(1.9rem, 1.1667rem + 1.5278vw, 3rem);
}

.steps-card__visual picture {
  display: contents;
}

.steps-card__image {
  display: block;
  width: clamp(10rem, 7.3333rem + 5.5556vw, 14rem);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 1.2rem 2.4rem rgba(0, 0, 0, 0.5));
}

.steps-card__text {
  position: relative;
  z-index: 1;
  max-width: 19.4rem;
  margin: clamp(2.2rem, 1.4667rem + 1.5278vw, 3.3rem) 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(0.82rem, 0.7133rem + 0.2222vw, 0.98rem);
  font-weight: 600;
  line-height: 1.22;
}

@media (max-width: 1300px) {
  .steps-section__headline {
    padding-inline: 0;
  }
}
@media (max-width: 1180px) {
  .steps-section__sticky {
    position: relative;
  }
  .steps-section {
    min-height: auto;
    padding-block: clamp(7rem, 5rem + 4.1667vw, 10rem) clamp(5rem, 3.6667rem + 2.7778vw, 7rem);
    background: url("../images/yellow-light.svg") center clamp(12rem, 8rem + 8.3333vw, 18rem)/auto clamp(40rem, 32rem + 16.6667vw, 52rem) no-repeat, #080808;
    background-attachment: scroll;
  }
  .steps-section__headline {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    margin-top: clamp(3.5rem, 2.1667rem + 2.7778vw, 5.5rem);
    padding-inline: 0;
    transform: none;
  }
  .steps-section__lead {
    justify-self: start;
  }
  .steps-section__list {
    width: min(100%, 25.5rem);
    margin-top: clamp(4.5rem, 2rem + 5.2083vw, 8rem);
  }
}
@media (max-width: 700px) {
  .steps-section {
    min-height: auto;
    padding-block: 5.5rem 4rem;
    background: url("../images/yellow-light.svg") center 18rem/auto 28rem no-repeat, #080808;
    background-attachment: scroll;
  }
  .steps-section__headline {
    margin-top: 3.5rem;
  }
  .steps-section__title,
  .steps-section__lead {
    font-size: clamp(2.7rem, 0.6231rem + 8.8615vw, 4.5rem);
  }
  .steps-section__list {
    width: min(100%, 23rem);
    margin-top: 5.5rem;
  }
  .steps-card {
    min-height: auto;
    padding: 1.45rem;
  }
  .steps-card__title {
    font-size: 1.35rem;
  }
  .steps-card__number {
    font-size: 1.25rem;
  }
  .steps-card__visual {
    min-height: 9rem;
    margin-top: 1.8rem;
  }
  .steps-card__image {
    width: clamp(9rem, 36vw, 12rem);
  }
  .steps-card__text {
    max-width: none;
    margin-top: 2rem;
    font-size: 0.95rem;
  }
}
.security-section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(6rem, 9vw, 10rem) clamp(5.5rem, 8vw, 8.5rem);
  overflow: hidden;
  background: #080808;
}

.security-section__inner {
  display: grid;
  grid-template-columns: minmax(24rem, 0.74fr) minmax(34rem, 1fr);
  align-items: center;
  gap: clamp(4rem, 7vw, 9rem);
}

.security-section__content {
  position: relative;
  z-index: 2;
}

.security-section__title {
  max-width: 34rem;
  margin: clamp(3rem, 4.8vw, 4.8rem) 0 0;
}

.security-section__cards {
  display: grid;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 36rem;
  margin-top: clamp(3.5rem, 5.4vw, 5.5rem);
}

.security-card {
  --surface-radius: clamp(1.55rem, 2vw, 2.4rem);
  min-height: clamp(13.5rem, 16vw, 16.5rem);
  padding: clamp(1.55rem, 2vw, 2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 54%), rgba(5, 5, 5, 0.72);
  box-shadow: inset 0 0 0.8rem rgba(255, 255, 255, 0.035), 0 1.6rem 4rem rgba(0, 0, 0, 0.36);
}

.security-card__icon {
  display: grid;
  width: 2.2rem;
  aspect-ratio: 1;
  place-items: center;
  color: #f5d28f;
  font-size: 2rem;
  line-height: 1;
}

.security-card__icon--support,
.security-card__icon--bolt {
  justify-content: start;
  filter: drop-shadow(0 0 1rem rgba(245, 210, 143, 0.18));
}

.security-card__icon--support img,
.security-card__icon--bolt img {
  display: block;
  width: 2rem;
  height: auto;
}

.security-card__title {
  margin: clamp(1.45rem, 2vw, 2rem) 0 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 2.1vw, 2.35rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.security-card__text {
  max-width: 28rem;
  margin: clamp(1rem, 1.3vw, 1.25rem) 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.22;
}

.security-section__visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 55rem);
  margin-right: clamp(-4rem, -3vw, -1.5rem);
}

.security-section__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 16% 5% 10%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(5rem);
  pointer-events: none;
}

.security-section__visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2.5rem 4rem rgba(0, 0, 0, 0.5));
}

@media (max-width: 1100px) {
  .security-section__inner {
    grid-template-columns: 1fr;
  }
  .security-section__visual {
    justify-self: center;
    order: -1;
    width: min(100%, 42rem);
    margin-right: 0;
  }
  .security-section__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}
@media (max-width: 700px) {
  .security-section {
    padding-block: 4.8rem;
  }
  .security-section__title {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }
  .security-section__cards {
    grid-template-columns: 1fr;
  }
  .security-card {
    min-height: 13rem;
  }
}
.faq-section {
  position: relative;
  padding-block: clamp(6.5rem, 10vw, 11rem) clamp(6rem, 9vw, 10rem);
  overflow: hidden;
  background: #080808;
}

.faq-section__inner {
  display: grid;
  grid-template-columns: minmax(24rem, 0.72fr) minmax(34rem, 1fr);
  align-items: start;
  gap: clamp(4rem, 7vw, 9rem);
}

.faq-section__intro {
  padding-top: clamp(0.2rem, 1vw, 1rem);
}

.faq-section__title {
  max-width: 36rem;
  margin: clamp(3.2rem, 5vw, 5rem) 0 0;
}

.faq-section__list {
  display: grid;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.faq-item {
  --surface-radius: clamp(1.35rem, 2vw, 2rem);
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 58%), rgba(5, 5, 5, 0.82);
  box-shadow: inset 0 0 0.8rem rgba(255, 255, 255, 0.03), 0 1.4rem 3.6rem rgba(0, 0, 0, 0.38);
}

.faq-item__heading {
  margin: 0;
}

.faq-item__button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 2.7vw, 2.8rem) clamp(1.7rem, 2.4vw, 2.35rem);
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: clamp(1.7rem, 2.1vw, 2.3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: left;
  user-select: none;
  cursor: pointer;
}

.faq-item__button * {
  user-select: none;
}

.faq-item__icon {
  position: relative;
  display: block;
  width: clamp(2.45rem, 3vw, 3rem);
  aspect-ratio: 1;
  border: 1px solid #f5d28f;
  border-radius: 50%;
  transition: border-color 180ms ease, transform 180ms ease;
}

.faq-item__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.62rem;
  height: 0.62rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  color: #f5d28f;
  transform: translate(-50%, -62%) rotate(45deg);
  transition: color 180ms ease, transform 180ms ease;
}

.faq-item.is-open .faq-item__icon {
  border-color: rgba(255, 255, 255, 0.42);
}

.faq-item.is-open .faq-item__icon::before {
  color: rgba(255, 255, 255, 0.74);
  transform: translate(-50%, -36%) rotate(225deg);
}

.faq-item__answer {
  max-width: 48rem;
  margin-top: clamp(-1.95rem, -1.7vw, -1.2rem);
  padding: 0 clamp(1.7rem, 2.4vw, 2.35rem) clamp(2rem, 2.6vw, 2.65rem);
}

.faq-item__answer[hidden] {
  display: none;
}

.faq-item__answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(1.06rem, 1.35vw, 1.35rem);
  font-weight: 500;
  line-height: 1.42;
}

@media (max-width: 1100px) {
  .faq-section__inner {
    grid-template-columns: 1fr;
  }
  .faq-section__title {
    max-width: 44rem;
  }
}
@media (max-width: 700px) {
  .faq-section {
    padding-block: 4.8rem;
  }
  .faq-section__title {
    font-size: clamp(2.85rem, 12vw, 4.3rem);
  }
  .faq-item__button {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }
}
.reviews-section {
  position: relative;
  padding-block: clamp(6.5rem, 10vw, 11rem) clamp(5.5rem, 8vw, 8rem);
  overflow: hidden;
  background: #080808;
}

.reviews-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.reviews-section__title {
  margin: clamp(3.4rem, 5.5vw, 5.4rem) 0 0;
}

.reviews-section__nav {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

.reviews-section__arrow {
  display: grid;
  width: clamp(2.45rem, 3vw, 3rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.reviews-section__arrow--next {
  border-color: #f5d28f;
  color: #f5d28f;
}

.reviews-section__arrow span {
  width: 0.58rem;
  height: 0.58rem;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: translateX(0.1rem) rotate(-45deg);
}

.reviews-section__arrow--next span {
  transform: translateX(-0.1rem) rotate(135deg);
}

.reviews-section__arrow:hover,
.reviews-section__arrow:focus-visible {
  border-color: #ffffff;
  color: #ffffff;
}

.reviews-section__arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.reviews-section__slider-wrap {
  margin-top: clamp(5rem, 7vw, 7.5rem);
}

.reviews-slider {
  overflow: visible;
}

.reviews-slider .swiper-wrapper {
  align-items: stretch;
}

.review-card {
  --surface-radius: clamp(1.45rem, 2vw, 2.2rem);
  display: grid;
  width: min(44rem, 44vw);
  min-height: clamp(18rem, 21vw, 21rem);
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.4rem, 2.1vw, 2.2rem);
  padding: clamp(2.15rem, 2.8vw, 3rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 56%), rgba(5, 5, 5, 0.82);
  box-shadow: inset 0 0 0.8rem rgba(255, 255, 255, 0.035), 0 1.5rem 4rem rgba(0, 0, 0, 0.42);
}

.review-card__avatar {
  display: grid;
  width: clamp(3.3rem, 4vw, 4.2rem);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.review-card__avatar picture {
  display: contents;
}

.review-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-card__quote {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 2.25vw, 2.45rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.review-card__author {
  display: grid;
  gap: 0.22rem;
  margin-top: auto;
  padding-top: clamp(2.5rem, 4vw, 4.5rem);
  color: #ffffff;
  font-style: normal;
}

.review-card__author strong {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.review-card__author span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.25;
}

.reviews-section__progress {
  position: relative;
  width: min(19rem, 48vw);
  height: 0.18rem;
  margin-top: clamp(5rem, 6.5vw, 6.8rem);
  background: rgba(255, 255, 255, 0.28);
}

.reviews-section__progress.swiper-pagination-progressbar {
  position: relative;
}

.reviews-section__progress .swiper-pagination-progressbar-fill {
  background: #f5d28f;
}

@media (max-width: 1100px) {
  .review-card {
    width: min(35rem, 72vw);
  }
}
@media (max-width: 700px) {
  .reviews-section {
    padding-block: 4.8rem;
  }
  .reviews-section__header {
    align-items: start;
    flex-direction: column;
  }
  .reviews-section__title {
    font-size: clamp(2.85rem, 12vw, 4.35rem);
  }
  .reviews-section__nav {
    align-self: end;
  }
  .review-card {
    width: min(24rem, 86vw);
    min-height: 21rem;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .exchange-rates-flow {
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
  .home-hero__actions, .home-hero__meta, .home-hero__scroll, .exchange-section__intro, .capabilities-section, .steps-section, .security-section, .faq-section, .reviews-section {
    display: none;
  }
}
