@property --scroll-in {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@property --scroll-past {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/urbanist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/urbanist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/quicksand-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;

  --color-primary: #ff3145;
  --color-primary-glow: #f5b6ab;
  --color-bg: #0f0f0f;
  --color-surface-80: rgba(15, 15, 15, 0.8);
  --color-white: #ffffff;
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-25: rgba(255, 255, 255, 0.25);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-disabled: #999999;
  --color-black: #000000;
  --color-success: #28cd36;
  --color-input-border: #2b2b2b;

  --font-family-base: "Urbanist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-family-soft: "Quicksand", var(--font-family-base);

  --scrim-rise: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.62) 24%,
    rgba(0, 0, 0, 0.42) 46%,
    rgba(0, 0, 0, 0.22) 66%,
    rgba(0, 0, 0, 0.07) 84%,
    rgba(0, 0, 0, 0) 100%
  );
  --content-max-width: 1440px;
  --content-padding-mobile: 20px;
  --content-padding-desktop: 70px;

  --header-height-mobile: 72px;
  --header-height-desktop: 93px;

  --breakpoint-desktop: 1024px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.215, 0.61, 0.355, 1);
  --duration-reveal: 1.15s;
  --duration-reveal-word: 1.5s;
  --reveal-word-stagger: 85ms;
  --duration-hover: 0.28s;
  --dot-grid-color: rgba(255, 255, 255, 0.09);
  --dot-grid-size: 32px;
  --dot-grid-dot: 1.5px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-anchor: none;
}

body {
  margin: 0;
  overflow-anchor: none;
  color: var(--color-white);
  background: var(--color-bg);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.section-container {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding-mobile);
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 var(--content-padding-desktop);
  }
}

.app-icon-sprite {
  display: none;
}

main {
  transition: opacity 0.22s ease;
}

main.is-page-transitioning {
  opacity: 0;
}

main > section[id] {
  scroll-margin-top: 88px;
}

@media (min-width: 1024px) {
  main > section[id] {
    scroll-margin-top: 108px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  text-align: center;
  color: var(--color-white);
  padding: 14.5px 24px;
  transition: transform var(--duration-hover) var(--ease-out-soft),
    background-color var(--duration-hover) ease, filter var(--duration-hover) ease;
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-primary);
  box-shadow: inset 0 0 15px 0 var(--color-primary-glow);
}

.btn--ghost {
  background: var(--color-surface-80);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 16px 0 var(--color-white-25);
}

.btn--block {
  flex: 1 0 0;
  min-width: 0;
}

.btn--wide {
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn--primary:hover {
    filter: brightness(1.07);
  }

  .btn--ghost:hover {
    background: rgba(38, 38, 38, 0.85);
  }
}

@media (min-width: 1024px) {
  .btn--lg {
    padding: 20px 16px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 1) 0%, rgba(15, 15, 15, 0) 100%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(15, 15, 15, 0.72);
  box-shadow: 0 1px 0 0 var(--color-white-10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.35s ease;
  will-change: opacity;
  pointer-events: none;
}

.site-header--scrolled::before {
  opacity: 1;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-height-mobile);
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__brand {
  display: block;
  width: auto;
  height: 26px;
  aspect-ratio: 3025 / 500;
  object-fit: contain;
}

.site-header__nav {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-header__actions .btn {
  padding: 9px 14px;
  font-size: 13px;
}

.site-header__actions .btn--ghost {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 429px) {
  .site-header__brand {
    height: 22px;
  }

  .site-header__actions {
    gap: 6px;
  }

  .site-header__actions .btn {
    padding: 8px 11px;
    font-size: 12px;
  }
}

@media (max-width: 359px) {
  .site-header__inner {
    gap: 8px;
  }

  .site-header__brand {
    height: 18px;
  }

  .site-header__actions {
    gap: 4px;
  }

  .site-header__actions .btn {
    padding: 7px 9px;
    font-size: 11px;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    height: var(--header-height-desktop);
  }

  .site-header__brand {
    height: 32px;
  }

  .site-header__nav {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 0 16px;
  }

  .nav-pill {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 100%;
    padding: 4px;
    border-radius: 100px;
    background: var(--color-surface-80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 0 16px 0 var(--color-white-25);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-pill::-webkit-scrollbar {
    display: none;
  }

  .nav-pill__highlight {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 0;
    border-radius: 100px;
    background: var(--color-white-10);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
  }

  .nav-pill__tab {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 13px 18px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.25s ease;
  }

  .nav-pill__tab:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-pill__tab:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  .site-header__actions {
    flex-shrink: 0;
    margin-left: 0;
  }

  .site-header__actions .btn {
    padding: 12.5px 40px;
    font-size: 16px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-pill__tab {
    padding: 13px 15px;
  }

  .site-header__actions .btn {
    padding: 12.5px 24px;
  }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: -11px;
  margin-right: -11px;
  padding: 0;
  border-radius: 12px;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--color-white);
  transition: transform 0.34s var(--ease-out-soft);
}

.site-header--menu-open .menu-toggle__bar:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.site-header--menu-open .menu-toggle__bar:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  background: var(--color-bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.site-header--menu-open .site-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0s;
}

.site-menu__panel {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-top: calc(var(--header-height-mobile) + 24px);
  padding-bottom: 48px;
}

.site-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  translate: 0 18px;
}

.site-header--menu-open .site-menu__inner {
  animation: site-menu-rise 0.26s var(--ease-out-soft) forwards;
}

@keyframes site-menu-rise {
  to {
    translate: none;
  }
}

.site-menu__link,
.site-menu__sublink {
  display: inline-block;
  transform-origin: left center;
  transition: scale 0.3s var(--ease-out-soft), color 0.2s ease;
}

.site-menu__link {
  padding: 9px 0;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-white);
}

.site-menu__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: start;
  column-gap: 20px;
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-white-10);
}

.site-menu__sublink {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white-70);
}


.site-menu__link:focus-visible,
.site-menu__sublink:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .site-menu__link:hover,
  .site-menu__sublink:hover {
    scale: 1.07;
  }

  .site-menu__sublink:hover {
    color: var(--color-white);
  }
}

.has-menu-open,
.has-menu-open body {
  overflow: hidden;
}

@media (max-height: 620px) {
  .site-menu__link {
    padding: 5px 0;
    font-size: clamp(22px, 6vw, 28px);
  }

  .site-menu__secondary {
    margin-top: 18px;
    padding-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-menu,
  .menu-toggle__bar {
    transition-duration: 0.01ms;
  }

  .site-menu__link,
  .site-menu__sublink {
    transition: none;
  }

  .site-menu__inner {
    translate: none;
  }

  .site-header--menu-open .site-menu__inner {
    animation: none;
  }

  .site-menu__link:hover,
  .site-menu__sublink:hover {
    scale: 1;
  }
}

@media (min-width: 1024px) {
  .menu-toggle,
  .site-menu {
    display: none;
  }
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-action {
  font-size: 14px;
  font-weight: 400;
  padding: 14.5px 24px;
}

.support-action__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.support-action--whatsapp .support-action__icon {
  color: #25d366;
}

.support-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  will-change: transform;
}

.support-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 100px;
  background: #25d366;
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform var(--duration-hover) var(--ease-out-soft),
    background-color var(--duration-hover) ease, opacity var(--duration-hover) ease;
}

.support-fab:hover {
  background: #1fb356;
  transform: translateY(-2px);
}

.support-fab--phone {
  background: var(--color-white);
  color: var(--color-bg);
}

.support-fab--phone:hover {
  background: #e6e6e6;
}

.support-fab--phone:focus-visible {
  outline-color: var(--color-primary);
}

.support-fab:active {
  transform: translateY(0) scale(0.97);
}

.support-fab:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.support-fab__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.has-menu-open .support-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 559px) {
  .support-dock {
    gap: 8px;
  }

  .support-fab {
    padding: 14px;
  }

  .support-fab__label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-fab:hover {
    transform: none;
  }
}

.content-page {
  padding: 140px 0 96px;
}

.content-page__inner {
  max-width: 860px;
}

.content-page__breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  color: #8f8f8f;
  margin-bottom: 20px;
}

.content-page__breadcrumb a {
  color: #c9c9c9;
  text-decoration: none;
}

.content-page__breadcrumb a:hover {
  color: #fefefe;
  text-decoration: underline;
}

.content-page__breadcrumb span[aria-hidden] {
  opacity: 0.5;
}

.content-page__head {
  margin-bottom: 32px;
}

.content-page__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fefefe;
  margin: 0 0 12px;
  line-height: 1.2;
}

.content-page__lead {
  font-size: 17px;
  line-height: 1.7;
  color: #c9c9c9;
  margin: 0;
}

.content-page__badges {
  margin-bottom: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--color-white-10);
  border-bottom: 1px solid var(--color-white-10);
}

.content-page__body {
  font-size: 15px;
  line-height: 1.8;
  color: #c9c9c9;
}

.content-page__body h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fefefe;
  margin: 40px 0 12px;
}

.content-page__body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fefefe;
  margin: 28px 0 8px;
}

.content-page__body p {
  margin: 0 0 14px;
}

.content-page__body ul,
.content-page__body ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

.content-page__body li {
  margin-bottom: 8px;
}

.content-page__body strong {
  color: #fefefe;
  font-weight: 600;
}

.content-page__body a {
  color: #fefefe;
  text-decoration: underline;
}

.content-page__draft {
  display: block;
  margin-bottom: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #a8a8a8;
  background: rgba(255, 255, 255, 0.03);
}

.content-page__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-page__links a {
  font-size: 14px;
  font-weight: 600;
  color: #fefefe;
  text-decoration: underline;
}

.content-page--tight {
  padding-top: 0;
}

.site-footer {
  background: var(--color-black);
  overflow: hidden;
}

.site-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.site-footer__menus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.site-footer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.site-footer__menu-list {
  display: grid;
  gap: 8px;
  width: 100%;
}

.site-footer__menu--primary .site-footer__menu-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  max-width: 340px;
  text-align: left;
}

.site-footer__menu--social .site-footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  width: auto;
}

.site-footer__menu-title {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}

.site-footer__menu a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-disabled);
  transition: color 0.2s ease, transform 0.25s ease;
}

.site-footer__menu a:hover {
  color: var(--color-white);
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__menu a:hover {
    transform: translateX(3px);
  }
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 363px;
  text-align: center;
}

.site-footer__contact-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
}

.site-footer__contact-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white-70);
}

.site-footer__contact-mail {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  transition: color 0.2s ease;
}

.site-footer__contact-mail:hover {
  color: var(--color-white-70);
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn.site-footer__action {
  padding: 14.5px 32px;
  font-size: 14px;
  font-weight: 400;
}

.site-footer__logo {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 4px 0 20px;
}

.site-footer__logo img {
  display: block;
  width: 140px;
  height: auto;
  aspect-ratio: 3025 / 500;
  object-fit: contain;
}

.site-footer__payment {
  background: var(--color-bg);
  border-top: 1px solid var(--color-white-10);
}

.site-footer__payment-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-footer__payment-title {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white-70);
}

.site-footer__payment-band {
  display: block;
  width: 456px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 456 / 32;
  opacity: 0.85;
}

.site-footer__info {
  background: var(--color-bg);
  border-top: 1px solid var(--color-white-10);
}

.site-footer__info-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 20px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white-70);
}

.site-footer__company {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin: 0;
  font-style: normal;
  text-align: center;
  line-height: 1.6;
  color: var(--color-white-55, rgba(254, 254, 254, 0.55));
}

.site-footer__company-name {
  color: var(--color-white-70);
  font-weight: 600;
}

.site-footer__company a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.site-footer__company-phone {
  white-space: nowrap;
}

.site-footer__company a:hover {
  color: var(--color-white);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.site-footer__legal > * {
  white-space: nowrap;
}

.site-footer__legal a {
  color: var(--color-white-70);
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .site-footer__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .site-footer__menus {
    flex-direction: row;
    align-items: flex-start;
    width: auto;
    gap: 48px;
  }

  .site-footer__menu {
    width: auto;
    align-items: flex-start;
  }

  .site-footer__menu-title {
    text-align: left;
    font-size: 16px;
  }

  .site-footer__menu a {
    font-size: 16px;
  }

  .site-footer__menu--primary .site-footer__menu-list {
    max-width: none;
    column-gap: 40px;
  }

  .site-footer__menu--social .site-footer__menu-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
  }

  .site-footer__contact {
    width: 363px;
    flex-shrink: 0;
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__actions {
    justify-content: flex-start;
  }

  .site-footer__contact-title {
    font-size: 24px;
  }

  .site-footer__info-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
  }

  .site-footer__company {
    width: auto;
    flex: 0 1 auto;
    text-align: left;
  }

  .site-footer__legal {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 10px 20px;
  }

  .site-footer__payment-inner {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .site-footer__logo {
    padding: 8px 0 24px;
  }

  .site-footer__logo img {
    width: 200px;
  }
}

[data-reveal] {
  transition: opacity var(--duration-reveal) var(--ease-out-expo) var(--reveal-delay, 0ms),
    transform var(--duration-reveal) var(--ease-out-expo) var(--reveal-delay, 0ms),
    filter var(--duration-reveal) var(--ease-out-expo) var(--reveal-delay, 0ms);
}

[data-reveal].is-reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

[data-reveal="fade"].is-reveal-hidden {
  transform: none;
}

[data-reveal="words"].is-reveal-hidden,
[data-reveal="trigger"].is-reveal-hidden {
  opacity: 1;
  transform: none;
}

[data-reveal-order="2"] {
  --reveal-delay: 90ms;
}

[data-reveal-order="3"] {
  --reveal-delay: 180ms;
}

[data-reveal-order="4"] {
  --reveal-delay: 270ms;
}

[data-reveal-order="5"] {
  --reveal-delay: 360ms;
}

.reveal-word {
  --reveal-word-delay: calc(var(--reveal-word-index, 0) * var(--reveal-word-stagger));
  display: inline-block;
  transition: opacity var(--duration-reveal-word) var(--ease-out-expo) var(--reveal-word-delay),
    transform var(--duration-reveal-word) var(--ease-out-expo) var(--reveal-word-delay),
    filter var(--duration-reveal-word) var(--ease-out-expo) var(--reveal-word-delay);
}

[data-reveal="words"].is-reveal-hidden .reveal-word {
  opacity: 0;
  transform: translateY(0.55em);
  filter: blur(12px);
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal].is-reveal-hidden,
  [data-reveal="words"].is-reveal-hidden .reveal-word {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.store-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  width: 100%;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.store-badge__img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.store-badge:active {
  transform: translateY(0) scale(0.98);
}

.store-badge:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .store-badge-row {
    gap: 12px;
  }

  .store-badge {
    width: calc(50% - 6px);
    max-width: 176px;
  }

  .store-badge__img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .store-badge-row {
    gap: 28px 36px;
  }

  .store-badge__img {
    height: 64px;
  }
}
