@font-face {
  font-family: 'Sriracha Cyrillic';
  src: url('./font/Sriracha Cyrillic.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('./font/TTNormsPro-Regular.eot') format('embedded-opentype'),
       url('./font/TTNormsPro-Regular.woff2') format('woff2'),
       url('./font/TTNormsPro-Regular.woff') format('woff'),
       url('./font/TTNormsPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'TT Norms Pro';
  src: url('./font/TTNormsPro-Medium.eot') format('embedded-opentype'),
       url('./font/TTNormsPro-Medium.woff2') format('woff2'),
       url('./font/TTNormsPro-Medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'TT Travels Next Trial Variable';
  src: url('./font/TTTravelsNextTrial-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'TT Travels Next Trial';
  src: url('./font/TTTravelsNextTrial-DemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

:root {
  --color-bg-main: #F7F7F7;
  --color-bg-white: #FFFFFF;
  --color-bg-dark: #0F172A;
  --color-bg-card-dark: #1F273A;
  --color-bg-light: #F1F5F9;
  --color-accent-red: #FF0000;
  --color-accent-orange: #FFA203;
  --color-accent-purple: #FF00FF;
  --color-accent-green: #31C478;
  --color-text-black: #000000;
  --color-text-primary: #1E1E1E;
  --color-text-secondary: #354052;
  --color-text-muted: #64748B;
  --color-text-white: #FFFFFF;
  --rocada-box-gradient: linear-gradient(259.81deg, #FFA203 -25.26%, #FF0000 63.23%, #FF00FF 125.09%);
  --font-main: 'TT Norms Pro', 'Inter';
  --font-heading: 'TT Travels Next Trial Variable', 'TT Travels Next Trial';
  --font-accent: 'Sriracha Cyrillic', 'Sriracha', cursive;

  --container-max-width: 1440px;
  --container-padding: 32px;
  
  --exchange-banner-gap: 24px;       
  --exchange-banner-overlap: 80px;   
  --exchange-banner-shift: -100px;   

  --exchange-2-size: 184px;         
  --exchange-2-right: -36px;        
  --exchange-2-top: 46%;            
  --exchange-2-rotate: -13.3deg;    

  --exchange-1-size: 270.667px;      
  --exchange-1-left: 0px;            
  --exchange-1-bottom: 6px;          
  --exchange-1-rotate: -13.3deg;     
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-xxl: 32px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: var(--color-bg-main);
  font-family: var(--font-main);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
}

.site-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-main);
}

.container {
  width: 100%;
  padding: 0 var(--container-padding);
}


.header {
  width: 100%;
  height: 72px;
  background-color: var(--color-bg-white);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #f1f1f1;
}

.header-content {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%; 
}

.header-left {
  display: flex;
  align-items: center;
  gap: 54px;
  height: 100%;
}

.header-menu {
  display: flex;
  gap: 48px;
}


.menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0 10px;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-black);
  text-decoration: none;
  white-space: nowrap;
}

.menu-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--color-accent-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.menu-item:hover::after,
.menu-item:focus-visible::after {
  transform: scaleX(1);
}

.menu-item:focus-visible {
  outline: 2px solid var(--color-accent-red);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .menu-item::after {
    transition: none;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

.header-logo img {
  display: block;
  height: 38px;
  width: auto;
}

.header-icons {
  display: flex;
  gap: 16px;
}


.header-icons .top .menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.header-icons .top .menu img {
  display: block;
  margin: 0;
}

.icon-btn {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
}


.hero {
  width: 100%;
  padding: 80px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;                  
}

.hero-content {
  flex: 0 0 580px;            
  width: 580px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.hero-image-wrapper {
  flex: 1 1 auto;               
  position: relative;
  
  z-index: 1;
  overflow: visible;          
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-subtitle-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 26px;
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 34px;
  color: var(--color-text-black);
  margin: 0;
  z-index: 1;
}

.hero-subtitle-line {
  position: absolute;
  right: 0;
  top: 28px;
  width: 328px;
  height: 22px;
  z-index: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 597;
  font-size: 48px;
  line-height: 1.33;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.hero-description {
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
}

.hero-description-secondary {
  display: block;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.btn-hero-primary {
  width: 212px;
  height: 48px;
  background: var(--color-accent-red);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hero-buttons-secondary {
  display: flex;
  gap: 16px;
}

.btn-hero-secondary {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 24px;
  gap: 8px;
  height: 40px;
  min-height: 40px;
  border-radius: 6px;
  border: 1px solid var(--color-text-primary);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--color-text-primary);
  flex: none;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-top-slide {
  position: absolute;
  top: 70%;                  
  left: 32%;                 
  transform: translate(-40%, -35%);
  height: auto;
  aspect-ratio: auto;       
  pointer-events: none;
  z-index: 1;
}


.club-about {
  position: relative;
  z-index: 2;
  width: 100%;
}

.club-about-inner {
  background: #0f172a;
  border-radius: 32px;
  padding: 60px 32px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.club-about-left {
  width: 562px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}

.club-about-title {
  font-size: 42px;
  line-height: 46px;
  color: #ffffff;
  margin: 0;
}

.club-about-title-gradient {
  background-image: var(--rocada-box-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.club-about-desc {
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  margin: 0;
}

.club-about-right {
  width: 794px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.club-cards-top, .club-cards-bottom {
  display: flex;
  gap: 20px;
}

.club-card {
  position: relative;
  z-index: 0;
  background: #1f273a;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #ffffff;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.15, 0.48, 1),
    box-shadow 0.4s ease;
  will-change: transform;
}

.club-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.45),
    0 10px 20px rgba(0, 0, 0, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .club-card {
    transition: box-shadow 0.25s ease;
    will-change: auto;
  }

  .club-card:hover {
    transform: none;
  }
}

.club-card-small {
  width: 33.33%;
  
}

.club-card-large {
  width: 50%;
  
}

.club-card-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.club-card-small .club-card-title {
  max-width: 190px;
  line-height: 22px;
  white-space: normal;
  word-break: normal;
}

.club-card-desc {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

.club-card-icon-img {
  width: 100px;
  height: 100px;
  margin-top: auto;
  align-self: flex-end;
  object-fit: contain;
  display: block;
}

.club-about-decor-exchange-banner {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.club-about-inner {
  position: relative;
}

.club-about-left {
  position: relative;
}

.club-about-title,
.club-about-desc {
  position: relative;
  z-index: 2;
}

.club-about-left .club-about-decor-exchange {
  position: absolute;
  left: var(--exchange-1-left);
  bottom: var(--exchange-1-bottom);
  transform: rotate(var(--exchange-1-rotate));
  width: clamp(200px, 34vw, var(--exchange-1-size));
  aspect-ratio: 270.6672040185442 / 231.0353988610121;
  height: auto; 
  z-index: 1; 
  pointer-events: none;
  display: block;
}

.exchange-banner-section {
  width: 100%;

  margin-top: calc(var(--exchange-banner-gap) - var(--exchange-banner-overlap) + var(--exchange-banner-shift));
  position: relative;
  z-index: 3; 
  overflow: visible;
}

.exchange-banner-inner {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

.exchange-banner-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.exchange-banner-inner .club-about-decor-exchange-2 {
  position: absolute;
  right: var(--exchange-2-right);
  top: var(--exchange-2-top);
  transform: translateY(-50%) rotate(var(--exchange-2-rotate));
  width: clamp(140px, 18vw, var(--exchange-2-size));
  aspect-ratio: 184.05450317596413 / 157.10476580556175;
  height: auto; 
  z-index: 1;
  pointer-events: none;
  display: block;
}

.promo-section {
  background: #ffffff;
  border-radius: 24px;  
}

.promo-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.promo-header {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
}

.promo-title {
  font-size: 42px;
  margin-bottom: 24px;
  margin-top:0px;
}

.promo-content-panel {
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms ease, transform 280ms ease;
  will-change: opacity, transform;
}

.promo-switch-content {
  width: 100%;
  margin-bottom: 48px;
}

.promo-content-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.promo-content-panel[hidden] {
  display: none !important;
}


.promo-companies {
  width: 100%;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  gap: 20px;
  text-align: center;
}

.promo-companies-image {
  width: min(100%, 572px);
  height: auto;
}

.promo-companies-title {
  margin: 0;
  color: #000;
  font-family: 'TT Travels Next Trial Variable';
  font-weight: 597;
  font-size: clamp(32px, 2.9vw, 42px);
  line-height: 1.05;
  text-transform: uppercase;
}

.promo-companies-desc {
  margin: 0;
  max-width: 864px;
  color: #000;
  font-family: 'TT Norms Pro';
  font-weight: 400;
  font-size: clamp(16px, 1.67vw, 24px);
  line-height: 1.5;
}

.promo-banners-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  flex: 1;
  min-width: 0;
  min-height: 0;
}
.promo-toggle {
  width: 612px;
  height: 68px;
  background: #f1f5f9;
  border-radius: 100px;
  margin: 0 auto;
  display: flex;
  padding: 4px;
  position: relative;
}

.promo-toggle-slider-thumb {
  position: absolute;
  width: 300px;
  height: 60px;
  background: #ff0000;
  border-radius: 100px;
  transition: transform 0.3s ease;
}

.promo-toggle.is-companies .promo-toggle-slider-thumb {
  transform: translateX(304px);
}

.promo-toggle-btn {
  width: 300px;
  height: 60px;
  border: none;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.promo-toggle-btn-active { color: white; }


.promo-banner-text {
  position: relative;
  z-index: 2;
}

.promo-banner-img {
  display: block;
  max-width: 100%;
  height: auto;
}


.promo-steps-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.promo-step-card {
  
  flex: 1 1 calc((100% - 40px) / 3);
  min-width: 280px;
  max-width: 450px;
  height: auto;
  gap:16px;
  background: #f1f5f9;
  border-radius: 16px;
  --promo-step-pad: 24px;
  padding: var(--promo-step-pad);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}


.promo-step-badge {
  flex: 0 0 auto;
}

.promo-step-desc {
  flex: 0 0 auto;
  margin: 0;
  max-width: 270px; 
  line-height: 20px;
}

.promo-step-image-container {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  
  margin-top: auto;
  
  margin-left: calc(-1 * var(--promo-step-pad));
  margin-right: calc(-1 * var(--promo-step-pad));
  margin-bottom: calc(-1 * var(--promo-step-pad));
  padding-left: var(--promo-step-pad);
  padding-right: var(--promo-step-pad);
}

.promo-step-image {
  width: min(100%, 410px);
  max-height: 100%;
  height: auto;
  object-fit: contain;
  flex: 0 1 auto;
}


.promo-banners {
  width: 100%;
  padding: 0;
  scroll-margin-top: 88px;
  display: flex;
  flex-direction: column;
  --promo-gap: clamp(12px, 1.39vw, 20px);
  --promo-pad: clamp(16px, 1.67vw, 24px);
  --promo-title-big: clamp(32px, 0.868vw + 25.33px, 42px);
  --promo-title-small: clamp(28px, 0.35vw + 25.3px, 32px);
  --promo-desc-size: clamp(14px, 0.35vw + 13px, 18px);
  gap: var(--promo-gap);
}

.promo-banners-row {
  width: 100%;
  display: grid;
  gap: var(--promo-gap);
}

.promo-banners-row-top {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.promo-banners-right {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--promo-gap);
}

.promo-banners-row-mini {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--promo-gap);
  align-items: stretch;
}

.promo-banners-row-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.promo-banner {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #f1f5f9;
  padding: var(--promo-pad);
}

.promo-banner-title-line {
  display: block;
}


.promo-banner-big {
  --promo-big-pad: var(--promo-pad);
  background: linear-gradient(266.11deg, #E8F2CB 6.37%, #D5F5F5 93.63%);
  padding: var(--promo-big-pad) var(--promo-big-pad) 0;
  display: flex;
  flex-direction: column;
}

.promo-banner-big .promo-banner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 0.84vw, 12px);
  max-width: min(100%, 630px);
}

.promo-banner-big .promo-banner-title {
  margin: 0;
  color: #000;
  font-family: 'TT Norms Pro';
  font-weight: 500;
  font-size: var(--promo-title-big);
  line-height: 1.1;
}

.promo-banner-big .promo-banner-desc {
  margin: 0;
  color: #000;
  font-family: 'TT Norms Pro';
  font-weight: 400;
  font-size: var(--promo-desc-size);
  line-height: 1.45;
}

.promo-banner-big .promo-banner-img-group1170 {
  display: block;
  width: calc(100% + 2 * var(--promo-big-pad));
  max-width: none;
  height: auto;
  margin-top: auto;
  margin-left: calc(-1 * var(--promo-big-pad));
  margin-right: calc(-1 * var(--promo-big-pad));
  margin-bottom: 0;
}


.promo-banner-wide {
  min-height: clamp(240px, 23.7vw, 341px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  isolation: isolate;
  padding: var(--promo-pad) var(--promo-pad) 0;
}

.promo-banner-wide .promo-banner-text {
  width: 100%;
  max-width: min(100%, 630px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 0.84vw, 12px);
  padding-right: clamp(120px, 34%, 260px);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.promo-banner-wide .promo-banner-title {
  margin: 0;
  color: #0F172A;
  font-family: 'TT Norms Pro';
  font-weight: 500;
  font-size: var(--promo-title-small);
  line-height: 1.375;
  text-align: left;
}

.promo-banner-wide .promo-banner-desc {
  margin: 0;
  color: #0F172A;
  font-family: 'TT Norms Pro';
  font-weight: 400;
  font-size: var(--promo-desc-size);
  line-height: 1.45;
  text-align: left;
}

.promo-banner-wide .promo-banner-img-banner {
  position: absolute;
  right: clamp(8px, 1.4vw, 20px);
  bottom: 0;
  width: clamp(150px, 37%, 253px);
  max-width: 46%;
  height: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}


.promo-banner-mini {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(250px, 23.7vw, 341px);
}

.promo-banner-mini .promo-banner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 0.84vw, 12px);
}

.promo-banner-mini .promo-banner-title {
  margin: 0;
  color: #0F172A;
  font-family: 'TT Norms Pro';
  font-weight: 500;
  font-size: var(--promo-title-small);
  line-height: 1.375;
  text-align: left;
}

.promo-banner-mini .promo-banner-desc {
  margin: 0;
  color: #0F172A;
  font-family: 'TT Norms Pro';
  font-weight: 400;
  font-size: var(--promo-desc-size);
  line-height: 1.45;
  text-align: left;
}

.promo-banner-mini .promo-banner-img-savebonus,
.promo-banner-mini .promo-banner-img-ballruble {
  display: block;
  width: clamp(86px, 35%, 120px);
  max-width: 100%;
  height: auto;
  margin-left: auto;
}


.promo-banner-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  min-height: clamp(250px, 22.6vw, 326px);
}

.promo-banner-bottom .promo-banner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 0.84vw, 12px);
  flex: 1 1 auto;
  min-height: 0;
}

.promo-banner-bottom .promo-banner-title {
  margin: 0;
  color: #0F172A;
  font-family: 'TT Norms Pro';
  font-weight: 500;
  font-size: var(--promo-title-small);
  line-height: 1.375;
  text-align: left;
}

.promo-banner-bottom .promo-banner-desc {
  margin: 0;
  color: #0F172A;
  font-family: 'TT Norms Pro';
  font-weight: 400;
  font-size: var(--promo-desc-size);
  line-height: 1.45;
}

.promo-banner-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 48px;
  gap: 8px;
  margin: 0 auto;
  width: 212px;
  height: 48px;
  background: #FF0000;
  border: none;
  border-radius: 6px;
  color: #FFFFFF;
  font-family: 'TT Norms Pro';
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.promo-banner-bottom-with-btn .promo-banner-actions {
  width: 100%;
  min-height: 110px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

.promo-banner-bottom-with-btn .promo-banner-btn {
  margin: 0;
  align-self: flex-end;
}

.promo-banner-bottom-with-btn .promo-banner-img-300bonus {
  width: 110px;
  max-width: 110px;
  margin: 0;
}

.promo-banner-bottom .promo-banner-img-300bonus,
.promo-banner-bottom .promo-banner-img-rocadaid {
  display: block;
  width: clamp(96px, 19%, 140px);
  max-width: 100%;
  height: auto;
  margin-left: auto;
}

.promo-banner-title-accent-gradient,
.promo-banner-mini .promo-banner-title-accent-red,
.promo-banner-bottom .promo-banner-title-accent-red {
  background: linear-gradient(259.81deg, #FFA203 -25.26%, #FF0000 63.23%, #FF00FF 125.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.faq-section {
  width: 100%;
  padding: 0 32px;
  padding-bottom:80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.faq-title {
  width: 100%;
  max-width: 539px;
  margin: 0;
  margin-top: 30px;
  color: #000000;
  font-family: 'TT Norms Pro';
  font-weight: 500;
  font-size: 42px;
  line-height: 46px;
  text-align: center;
}

.faq-content {
  width: 100%;
  max-width: 1376px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
}

.faq-tab {
  margin: 0;
  flex: 0 0 auto;
  min-width: 0;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  background: #EFEFF0;
  font-family: "TT Norms Pro";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.005em;
  color: #1E1E1E;
  cursor: pointer;
}

.faq-tab-active {
  background: var(--color-accent-red);
  color: #FFFFFF;
  box-shadow: none;
}

.faq-panels {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-panel[hidden] {
  display: none !important;
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-empty {
  min-height: 8px;
}

.faq-group + .faq-group {
  margin-top: 20px;
}

.faq-group-title {
  margin: 0 0 8px;
  color: #222935;
  font-family: 'TT Norms Pro';
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
}

.faq-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 24px;
  background: #FFFFFF;
  border-radius: 12px;
}

.faq-item-open {
  gap: 16px;
}

.faq-question-row {
  width: 100%;
  
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-question {
  margin: 0;
  color: #222935;
  font-family: 'TT Norms Pro';
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.faq-item-open .faq-question {
  font-size: 18px;
}

.faq-chevron {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: transform 220ms ease;
}

.faq-item-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-box {
  width: 100%;
  display: none;
  padding: 24px;
  background: #F5F5F5;
  border-radius: 8px;
}

.faq-item-open .faq-answer-box {
  display: flex;
}

.faq-answer {
  margin: 0;
  color: #222935;
  font-family: 'TT Norms Pro';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.faq-answer p {
  margin: 0 0 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  margin: 10px 0 0 22px;
  padding: 0;
}

.faq-answer li {
  margin: 0 0 8px;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

.screen-footer {
  background: transparent;
  padding: 40px var(--container-padding);
  width: 100%;
  position: relative;
  isolation: isolate;
}

.screen-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #eaeaeb;
  z-index: -1;
}

.screen-footer-content {
  width: 100%;
  max-width: 1376px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.screen-footer-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.screen-footer-logo {
  display: inline-flex;
  flex: 0 0 auto;
}

.screen-footer-logo img {
  width: 220px;
  height: auto;
  display: block;
}

.screen-footer-top-text {
  margin: 0 0 0 auto;
  max-width: 458px;
  font-family: "TT Norms Pro" ;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #1e1e1e;
}

.screen-footer-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.screen-footer-left,
.screen-footer-right {
  min-width: 0;
}

.screen-footer-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.screen-footer-link-columns {
  display: grid;
  grid-template-columns: minmax(220px, 240px) minmax(170px, 181px) minmax(160px, 1fr);
  gap: 24px;
}

.screen-footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.screen-footer-link-column-third {
  padding-top: 44px;
}

.screen-footer-link-title {
  margin: 0;
  font-family: "TT Norms Pro" ;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #1e1e1e;
}

.screen-footer-link-second-level {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-footer-link-item {
  font-family: "TT Norms Pro" ;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #1e1e1e;
  text-decoration: none;
}

.screen-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 0px;
  align-items: flex-start;
}

.screen-footer-contact {
  color: #1e1e1e;
  text-decoration: none;
  font-family: "TT Norms Pro" ;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.screen-footer-right-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.screen-footer-app-preview {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.screen-footer-app-image {
  width: min(100%, 380px);
  height: auto;
  display: block;
}

.screen-footer-app-side {
  width: clamp(168px, 22vw, 203px);
  flex: 0 1 clamp(168px, 22vw, 203px);
  min-width: 168px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.screen-footer-app-left,
.screen-footer-app-right {
  display: contents;
}

.screen-footer-app-side-mobile {
  display: none;
}

.screen-footer-app-title,
.screen-footer-review-title {
  margin: 0;
  width: 100%;
  font-family: "TT Norms Pro" ;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: #1e1e1e;
}

.screen-footer-qr-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.screen-footer-stores {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-footer-app-side-desktop .screen-footer-stores > .screen-footer-store-btn:nth-child(5) {
  display: none !important;
}

.screen-footer-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}

.screen-footer-store-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.screen-footer-qr {
  width: 132px;
  height: 132px;
  border-radius: 20px;
  background: #fff;
  padding: 16px;
}

.screen-footer-qr img {
  width: 100%;
  height: 100%;
  display: block;
}

.screen-footer-app-text {
  margin: 8px 0 0;
  width: 100%;
  font-family: "TT Norms Pro" ;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
  color: #1e1e1e;
}

.screen-footer-review-title {
  margin-top: 24px;
}

.screen-footer-rating-link {
  display: inline-block;
  margin-top: 8px;
  line-height: 0;
  text-decoration: none;
}

.screen-footer-rating-image {
  width: 150px;
  height: 50px;
  display: block;
}

.screen-footer-copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
}

.screen-footer-copyright-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "TT Norms Pro" ;
  font-size: 14px;
  line-height: 22px;
  color: #8f8f8f;
}

.screen-footer-copyright-left a {
  color: #8f8f8f;
  text-decoration: underline;
}

.screen-footer-copyright-right {
  margin-left: auto;
  font-family: "TT Norms Pro" ;
  font-size: 14px;
  line-height: 22px;
  color: #8f8f8f;
}


.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(94vw, 420px);
  max-width: 100%;
  background: #fff;
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(12px);
  transition: transform 0.2s ease;
  overflow-y: auto;
}

.mobile-nav-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  margin: 0 0 8px;
}

.mobile-nav-logo {
  display: inline-flex;
  align-items: center;
  height: 44px;
  text-decoration: none;
}

.mobile-nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -4px -8px 0 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #1e293b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.mobile-nav-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.mobile-nav-close:active {
  background: #e2e8f0;
}

.mobile-nav-close:focus-visible {
  outline: 2px solid var(--color-accent-red);
  outline-offset: 2px;
}

.mobile-nav-close svg {
  display: block;
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-group + .mobile-nav-login {
  margin-top: 20px;
}

.mobile-nav-login + .mobile-nav-heading {
  margin-top: 20px;
}

.mobile-nav-heading {
  margin: 0 0 10px;
  padding: 0 4px;
  font-family: "TT Norms Pro";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.mobile-nav-link {
  display: block;
  text-decoration: none;
  color: var(--color-text-black);
  font-family: "TT Norms Pro";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  padding: 12px 12px;
  border-radius: 8px;
  background: #f8fafc;
  transition: background 0.15s ease;
}

.mobile-nav-link:active {
  background: #eef2f7;
}

.mobile-nav-services {
  margin-bottom: 8px;
}

.mobile-nav-services .rocada-services-dropdown {
  width: 100%;
}

.mobile-nav-services .rocada-services-dropdown .top_menu {
  position: static;
  top: auto;
  right: auto;
  margin-top: 10px;
  width: 100%;
}

.mobile-nav-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 6px;
  background: var(--color-accent-red);
  color: #ffffff !important;
  font-family: "TT Norms Pro";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  flex-shrink: 0;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.mobile-nav-login:active {
  background: #e60000;
  opacity: 0.95;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-open .mobile-nav {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .promo-content-panel {
    transition: none;
    transform: none;
  }
}

@media (max-width: 1370px) {
  .hero-title {
    font-size: 45px;
  }
  .hero-description {
    font-size: 22px;
    line-height: 1.4;
  }
  .hero-top-slide {
    transform: translate(-46%, -35%);
  }
}

@media (max-width: 1250px) {
  .hero-content {
    max-width: 480px;
    gap: 30px;
  }
  .hero-top-slide {
    position: absolute;
    right: -8%;
    top: -280px;
    left: auto;
    bottom: auto;
    max-width: 670px;
    transform: none;
  }
  .hero-subtitle-line {
    height: 21px;
  }
  .hero {
    padding: 40px 0 40px;
  }
  .hero-title {
    font-size: 39px;
  }
  .hero-description {
    font-size: 19px;
  }
  .hero-text-wrapper {
    gap: 21px;
  }
  .hero-buttons {
    gap: 34px;
  }
  .club-about-inner {
    flex-direction: column;
  }
  .club-about-left,
  .club-about-right {
    width: 100%;
  }
  .club-about-decor-exchange,
  .club-about-decor-exchange-2 {
    display: none !important;
  }
  .club-about-left .club-about-decor-exchange,
  .exchange-banner-inner .club-about-decor-exchange-2 {
    display: none !important;
  }
  .exchange-banner-image {
    margin-top: 80px;
  }
}

@media (max-width: 1150px) {
  .header-menu {
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .hero-top-slide {
    right: -11%;
    top: -260px;
    max-width: 640px;
  }
}

@media (max-width: 1010px) {
  .screen-footer-app-preview {
    width: 0;
    flex: 0 0 0;
    min-width: 0;
    overflow: hidden;
  }
  .screen-footer-app-image {
    width: min(100%, 0px);
    height: auto;
    display: block;
  }
}

@media (max-width: 1010px) and (min-width: 769px) {
  .screen-footer-right-row {
    justify-content: flex-end;
  }
  .screen-footer-app-side {
    margin-left: auto;
  }
}

@media (max-width: 1000px) {

  .menu-item {
    padding: 8px 0;
    font-size: 15px;
  }
  .hero-top-slide {
    width: 510px;
  }
  .hero-buttons {
    gap: 32px;
  }
}

@media (max-width: 955px) {
  .hero-subtitle {
    font-size: 30px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-subtitle-line {
    width: 280px;
  }
  .hero-description {
    font-size: 16px;
  }
}

@media (max-width: 950px) {
  .promo-steps-row {
    flex-wrap: nowrap;
  }
  .promo-step-card {
    min-width: 0;
    max-width: none;
    flex: 1 1 0;
  }
  .promo-step-desc {
    max-width: none;
  }
  .club-card-small,
  .club-card-large {
    padding: 16px;
  }
  .exchange-banner-image {
    margin-top: 80px;
  }
  .club-about-title {
    font-size: 42px;
    line-height: 46px;
  }
  .club-about-desc {
    font-size: 14px;
    line-height: 24px;
  }
  .club-card-title {
    font-size: 18px;
    line-height: 20px;
  }
  .club-card-desc {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 900px) {
  .header-left{
    gap:24px;
  }
  .menu-item {
    padding: 8px 0;
    font-size: 14px;
  }
  .promo-switch-content {
    margin-bottom: 8px;
  }
  .promo-banners {
    --promo-gap: 8px;
    --promo-pad: 24px;
    --promo-title-big: 42px;
    --promo-title-small: 32px;
    --promo-desc-size: 16px;
    gap: 8px;
  }
  .promo-companies {
    min-height: 640px;
    padding: 24px 32px;
    gap: 20px;
  }
  .promo-companies-image {
    width: min(100%, 572px);
  }
  .promo-companies-title {
    font-size: 42px;
    line-height: 44px;
  }
  .promo-companies-desc {
    max-width: 704px;
    font-size: 24px;
    line-height: 36px;
  }
  .promo-banners-row-top,
  .promo-banners-row-bottom {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .promo-banners-right {
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
  }
  .promo-banners-row-mini {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
  }
  .promo-banner-big {
    min-height: 702px;
  }
  .promo-banner-wide,
  .promo-banner-mini {
    min-height: 347px;
  }
  .promo-banner-bottom {
    min-height: 308px;
  }
  .promo-banner-bottom-with-btn {
    min-height: 326px;
  }
  .promo-banner-wide,
  .promo-banner-mini,
  .promo-banner-bottom {
    padding: 24px;
  }
  .promo-banner-wide .promo-banner-text {
    max-width: 100%;
    min-height: 126px;
    padding-right: 260px;
  }
  .promo-banner-wide .promo-banner-img-banner {
    position: absolute;
    right: 24px;
    top: 87px;
    width: 253px;
    max-width: none;
    margin: 0;
  }
  .promo-banner-big .promo-banner-desc,
  .promo-banner-wide .promo-banner-desc,
  .promo-banner-mini .promo-banner-desc,
  .promo-banner-bottom .promo-banner-desc {
    font-size: 16px;
    line-height: 26px;
  }
  .promo-banner-wide .promo-banner-title,
  .promo-banner-mini .promo-banner-title,
  .promo-banner-bottom .promo-banner-title {
    font-size: 32px;
    line-height: 44px;
  }
  .promo-banner-mini .promo-banner-img-savebonus,
  .promo-banner-mini .promo-banner-img-ballruble,
  .promo-banner-bottom .promo-banner-img-300bonus,
  .promo-banner-bottom .promo-banner-img-rocadaid {
    position: static;
    width: 110px;
    max-width: 110px;
    margin-top: 12px;
    margin-left: auto;
  }
}

@media (max-width: 880px) {
  .header-left {
    gap: 24px;
  }

  .header-logo img {
    height: 30px;
    width: auto;
  }

  .hero-top-slide {
    width: 420px;
    top: -200px;
    right: -20%;
  }
}

@media (max-width: 825px) {
  .header-menu {
    display: none;
  }

  .header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0 var(--container-padding);
  }
  .header-left {
    display: flex;
    align-items: center;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
  }
  .header-logo {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .header-logo img {
    height: 30px;
    width: auto;
  }

  
  .header-icons .top .menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 44px;
    height: 44px;
  }

  .header-icons .top .menu img {
    display: block;
    width: 40px;
    height: 40px;
  }

  
  .header-icons .icon-btn {
    display: none !important;
  }

  .burger-menu {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 10px;
  }
}

@media (max-width: 800px) {
  :root {
    --container-padding: 16px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle-line {
    width: 200px;
    height: 14px;
  }
  .promo-container,
  .faq-section {
    padding: 40px 22px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-text-wrapper {
    gap: 12px;
    width: 460px;
  }
  .hero-top-slide {
    right: -23%;
    top: -190px;
    width: 390px;
  }
  .club-cards-top,
  .club-cards-bottom {
    gap: 8px;
  }
  .club-about-inner {
    padding: 40px 22px;
  }
}

@media (max-width: 790px) {
  .promo-steps-row {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
  }
  .promo-step-card {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
  .promo-step-image-container {
    justify-content: flex-start;
  }
  .promo-step-desc {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .promo-title {
    font-weight: 500;
    font-size: 42px;
    line-height: 46px;
    text-align: center;
    margin-top: 0px;
  }
  .hero-buttons {
    gap: 22px;
  }
  .btn-hero-primary {
    height: 40px;
  }
  .promo-header {
    text-align: center;
    margin-bottom: 24px;
  }
  .promo-toggle {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .promo-toggle-slider-thumb {
    width: calc(50% - 2px);
    height: 60px;
  }
  .promo-toggle.is-companies .promo-toggle-slider-thumb {
    transform: translateX(calc(100% + 4px));
  }
  .promo-toggle-btn {
    width: auto;
    flex: 1;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 32px;
    line-height: 44px;
  }
  .promo-banners-row,
  .promo-banners-row-mini {
    flex-direction: column;
  }
  .promo-banners-right {
    width: 100%;
  }
  .promo-banner {
    min-height: 0;
  }
  .promo-banner-wide,
  .promo-banner-mini,
  .promo-banner-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .promo-banner-wide {
    padding: 24px;
    padding-bottom: 24px;
    overflow: visible;
  }
  .promo-banner-wide .promo-banner-text {
    padding-right: 0;
    max-width: 100%;
  }
  .promo-banner-wide .promo-banner-img-banner,
  .promo-banner-mini .promo-banner-img-savebonus,
  .promo-banner-mini .promo-banner-img-ballruble,
  .promo-banner-bottom .promo-banner-img-300bonus,
  .promo-banner-bottom .promo-banner-img-rocadaid {
    flex: none;
    max-width: 420px;
    width: 100%;
    align-self: flex-end;
  }
  .promo-banner-img {
    position: static !important;
    width: 100%;
    max-width: 420px;
    margin-top: 12px;
    margin-left: auto;
  }
  .promo-banner-bottom-with-btn .promo-banner-actions {
    min-height: 110px;
    gap: 24px;
  }
  .promo-banner-bottom-with-btn .promo-banner-img-300bonus {
    margin-top: 0;
    margin-left: 0;
  }
  .faq-section {
    padding: 30px 32px;
    gap: 48px;
  }
  .faq-title {
    max-width: 539px;
    font-size: 42px;
    line-height: 46px;
    margin-top: 0px;
  }
  .faq-content {
    max-width: 704px;
  }
  .faq-group-title {
    font-size: 24px;
    line-height: 30px;
  }
  .screen-footer {
    padding: 32px var(--container-padding);
  }
  .screen-footer-content {
    max-width: 704px;
    gap: 24px;
  }
  .screen-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .screen-footer-top-text {
    margin-left: 0;
    max-width: 704px;
    text-align: left;
    font-size: 14px;
  }
  .screen-footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .screen-footer-link-columns {
    grid-template-columns: minmax(0, 240px) minmax(0, 181px) minmax(0, 1fr);
  }
  .screen-footer-link-column,
  .screen-footer-link-second-level {
    gap: 8px;
  }
  .screen-footer-link-column-third {
    padding-top: 32px;
  }
  .screen-footer-link-item {
    display: flex;
    align-items: center;
    min-height: 32px;
    line-height: 22px;
  }
  .screen-footer-contacts {
    margin-left: 0;
    padding-top: 8px;
    align-items: flex-start;
  }
  .screen-footer-right-row {
    gap: 0;
    width: 100%;
    justify-content: center;
  }
  .screen-footer-app-preview {
    display: none;
  }
  .screen-footer-app-side-mobile {
    display: none;
  }
  .screen-footer-app-side-desktop {
    display: grid;
  }
  .screen-footer-app-side {
    width: 100%;
    max-width: 704px;
    margin: 0 auto;
    flex: 1 1 auto;
    align-items: stretch;
    display: grid;
    grid-template-columns: max-content max-content max-content;
    grid-template-rows: auto auto auto;
    justify-content: space-between;
    column-gap: 0;
    row-gap: 8px;
  }
  .screen-footer-app-side-mobile {
    display: none !important;
  }
  .screen-footer-review-title {
    grid-column: 1;
    grid-row: 1;
    margin-top: 0;
    text-align: left;
  }
  .screen-footer-rating-link {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }
  .screen-footer-app-title {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }
  .screen-footer-app-text {
    grid-column: 2;
    grid-row: 2;
    display: block;
    margin-top: 0;
    text-align: left;
  }
  .screen-footer-qr-row {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0;
    gap: 8px;
    display: contents;
  }
  .screen-footer-stores {
    grid-column: 2;
    grid-row: 3;
    flex-direction: row;
    gap: 8px;
  }
  .screen-footer-store-btn,
  .screen-footer-store-btn img {
    width: 48px;
    height: 48px;
  }
  .screen-footer-qr {
    grid-column: 3;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: start;
  }
  .screen-footer-copyright {
    width: 100%;
  }
  .header {
    height: 64px;
  }
  .header-logo img {
    height: 28px;
  }
  .promo-banners-row-top,
  .promo-banners-row-bottom {
    grid-template-columns: minmax(0, 1fr);
  }
  .promo-banners-right {
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  }
  .promo-banners-row-mini {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
  }
  .promo-banner-wide .promo-banner-img-banner,
  .promo-banner-mini .promo-banner-img-savebonus,
  .promo-banner-mini .promo-banner-img-ballruble,
  .promo-banner-bottom .promo-banner-img-300bonus,
  .promo-banner-bottom .promo-banner-img-rocadaid {
    width: 110px;
    max-width: 110px;
  }
  .promo-banner-bottom-with-btn .promo-banner-actions {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .exchange-banner-image {
    margin-top: 90px;
  }
}

@media (max-width: 750px) {
  .hero {
    padding: 20px 0 20px;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-top-slide {
    right: -18%;
    top: -130px;
    width: 360px;
  }
  .hero-content {
    gap: 20px;
  }
  .hero-text-wrapper {
    width: 350px;
  }
}

@media (max-width: 640px) {
  .hero-top-slide {
    right: -38%;
    top: -120px;
    width: 340px;
  }
}

@media (max-width: 600px) {
  .screen-footer-app-side-desktop {
    display: none !important;
  }
  .screen-footer-app-side-mobile {
    display: grid !important;
  }
  .hero {
    padding: 40px 0 0;
  }
  .hero-container {
    flex-direction: column;
    gap: 32px;
  }
  .hero-content {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    align-items: flex-start;
    gap: 24px;
    z-index: 10;
  }
  .hero-title {
    font-size: 30px;
    line-height: 1.15;
    white-space: normal;
  }
  .hero-description {
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.45;
    color: var(--color-text-secondary);
  }
  .hero-text-wrapper {
    width: 100%;
    gap: 16px;
  }
  .hero-subtitle-wrapper {
    justify-content: flex-start;
  }
  .hero-subtitle-line {
    right: auto;
    left: 0;
    width: 160px;
    height: 12px;
    top: 22px;
  }
  .hero-buttons {
    width: 100%;
    gap: 18px;
  }
  .btn-hero-primary {
    width: 100%;
    height: 46px;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 600;
  }
  .hero-buttons-secondary {
    display: flex;
    width: 100%;
    gap: 16px;
  }
  .btn-hero-secondary {
    flex: 1;
    height: 46px;
    font-size: 14px;
    line-height: 20px;
    padding: 0 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--color-text-primary);
    color: var(--color-text-primary);
  }
  .hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
  }
  .hero-top-slide {
    position: relative;
    top: -80px;
    left: -20px;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: -240px;
    z-index: 1;
  }
  .club-about-inner {
    padding: 32px 16px;
    gap: 20px;
    flex-direction: column;
    border-radius: 24px;
  }
  .club-about-left,
  .club-about-right {
    width: 100%;
  }
  .club-about-left {
    gap: 12px;
  }
  .club-about-title {
    font-size: 24px;
    line-height: 28px;
  }
  .club-about-desc {
    font-size: 16px;
    line-height: 24px;
  }
  .club-about-right {
    gap: 8px;
  }
  .club-cards-top,
  .club-cards-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .club-card-small,
  .club-card-large {
    width: 100%;
    height: auto;
  }
  .club-card {
    padding: 16px;
    gap: 8px;
    min-height: 148px;
  }
  .club-card-title {
    font-size: 18px;
    line-height: 20px;
  }
  .club-card-desc {
    font-size: 14px;
    line-height: 24px;
  }
  .club-card-icon-img {
    width: 84px;
    height: 84px;
  }
  .club-card-small .club-card-title {
    max-width: none;
    line-height: 20px;
  }
  .exchange-banner-image {
    margin-top: 110px;
  }
  .screen-footer {
    padding: 24px var(--container-padding);
  }
  .promo-container,
  .faq-section {
    padding: 32px 16px;
  }
  .screen-footer-content {
    gap: 20px;
  }
  .screen-footer-top {
    gap: 12px;
  }
  .screen-footer-logo img {
    width: 200px;
  }
  .screen-footer-top-text {
    font-size: 13px;
    line-height: 20px;
  }
  .screen-footer-links {
    gap: 18px;
  }
  .screen-footer-link-columns {
    width: 100%;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 8px clamp(20px, 5vw, 28px);
    align-items: start;
  }
  .screen-footer-link-column-third {
    grid-column: auto;
    padding-top: 0;
  }
  .screen-footer-link-title {
    font-size: 16px;
    line-height: 22px;
  }
  .screen-footer-link-item {
    min-height: 24px;
    line-height: 18px;
  }
  .screen-footer-contacts {
    margin-left: 0;
    padding-top: 4px;
    align-items: flex-start;
  }
  .screen-footer-right-row {
    justify-content: stretch;
  }
  .screen-footer-app-side-desktop {
    display: none;
  }
  .screen-footer-app-side-mobile {
    display: grid;
    max-width: none;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 14px;
  }
  .screen-footer-app-side-mobile .screen-footer-app-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
  }
  .screen-footer-app-side-mobile .screen-footer-app-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 160px;
    justify-self: end;
    margin-top: 6px;
  }
  .screen-footer-app-side-mobile .screen-footer-app-title {
    margin: 0;
    text-align: left;
    width: 100%;
  }
  .screen-footer-app-side-mobile .screen-footer-app-text {
    margin: 0;
    max-width: 160px;
    text-align: center;
  }
  .screen-footer-app-side-mobile .screen-footer-stores {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    width: fit-content;
    align-self: flex-start;
  }
  .screen-footer-app-side-mobile .screen-footer-store-btn,
  .screen-footer-app-side-mobile .screen-footer-store-btn img {
    width: 44px;
    height: 44px;
  }
  .screen-footer-app-side-mobile .screen-footer-qr {
    width: 108px;
    height: 108px;
    padding: 12px;
    border-radius: 16px;
  }
  .screen-footer-app-side-mobile .screen-footer-review-title {
    margin: 0;
    text-align: left;
  }
  .screen-footer-app-side-mobile .screen-footer-rating-image {
    margin-top: 0;
  }
  .screen-footer-copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .screen-footer-copyright-right {
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .promo-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
  }
  .promo-title {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
  }
  .promo-toggle {
    width: 100%;
    max-width: 304px;
    height: 60px;
    margin: 0 auto;
    padding: 4px;
  }
  .promo-toggle-slider-thumb {
    width: calc(50% - 2px);
    height: 52px;
  }
  .promo-toggle.is-companies .promo-toggle-slider-thumb {
    transform: translateX(calc(100% + 4px));
  }
  .promo-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.01em;
  }
  .promo-companies {
    min-height: auto;
    padding: 24px;
    gap: 12px;
  }
  .promo-companies-image {
    width: min(100%, 304px);
  }
  .promo-companies-title {
    font-size: 24px;
    line-height: 34px;
  }
  .promo-companies-desc {
    max-width: 256px;
    font-size: 16px;
    line-height: 26px;
  }
  .promo-banners {
    --promo-gap: 8px;
    --promo-pad: 24px;
    --promo-title-big: 24px;
    --promo-title-small: 24px;
    --promo-desc-size: 16px;
    gap: 8px;
  }
  .promo-banners-row-top,
  .promo-banners-row-bottom {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .promo-banners-right {
    grid-template-rows: auto;
    gap: 8px;
  }
  .promo-banners-row-mini {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .promo-banner-big,
  .promo-banner-wide,
  .promo-banner-mini,
  .promo-banner-bottom,
  .promo-banner-bottom-with-btn {
    min-height: 0;
    padding: 24px;
  }
  .promo-banner-big {
    height: 400px;
    overflow: hidden;
    position: relative;
  }
  .promo-banner-big .promo-banner-text {
    width: 100%;
    max-width: 256px;
    gap: 12px;
    position: relative;
    z-index: 2;
  }
  .promo-banner-big .promo-banner-title,
  .promo-banner-wide .promo-banner-title,
  .promo-banner-mini .promo-banner-title,
  .promo-banner-bottom .promo-banner-title {
    font-size: 24px;
    line-height: 34px;
  }
  .promo-banner-big .promo-banner-desc,
  .promo-banner-wide .promo-banner-desc,
  .promo-banner-mini .promo-banner-desc,
  .promo-banner-bottom .promo-banner-desc {
    font-size: 16px;
    line-height: 26px;
  }
  .promo-banner-big .promo-banner-img-group1170 {
    position: absolute !important;
    left: -44px;
    bottom: 0;
    top: 150px;
    width: 372px !important;
    max-width: none !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
  .promo-banner-wide {
    height: 334px;
    gap: 12px;
  }
  .promo-banner-wide .promo-banner-text {
    max-width: 256px;
    min-height: 0;
    padding-right: 0;
    gap: 12px;
  }
  .promo-banner-wide .promo-banner-img-banner {
    position: static;
    width: 157px;
    max-width: 157px;
    margin-top: 0;
    margin-left: auto;
  }
  .promo-banner-mini {
    gap: 12px;
  }
  .promo-banners-row-mini .promo-banner-mini:first-child {
    height: 290px;
  }
  .promo-banners-row-mini .promo-banner-mini:last-child {
    height: 264px;
  }
  .promo-banner-mini .promo-banner-text,
  .promo-banner-bottom .promo-banner-text {
    max-width: 256px;
    gap: 12px;
  }
  .promo-banner-mini .promo-banner-img-savebonus,
  .promo-banner-mini .promo-banner-img-ballruble,
  .promo-banner-bottom .promo-banner-img-300bonus,
  .promo-banner-bottom .promo-banner-img-rocadaid {
    position: static;
    width: 110px;
    max-width: 110px;
    margin-top: 0;
    margin-left: auto;
  }
  .promo-banner-bottom-with-btn {
    height: 430px;
    gap: 16px;
  }
  .promo-banner-bottom-with-btn .promo-banner-text {
    min-height: 184px;
  }
  .promo-banner-bottom-with-btn .promo-banner-actions {
    width: 100%;
    min-height: 182px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
  }
  .promo-banner-bottom-with-btn .promo-banner-img-300bonus {
    order: 1;
  }
  .promo-banner-bottom-with-btn .promo-banner-btn {
    order: 2;
    width: 100%;
    margin: 0;
  }
  .promo-banners-row-bottom .promo-banner-bottom:not(.promo-banner-bottom-with-btn) {
    height: 340px;
    gap: 24px;
  }
  .faq-section {
    padding: 30px 8px;
    gap: 24px;
  }
  .faq-title {
    max-width: 308px;
    font-size: 24px;
    line-height: 34px;
    margin-top: 0px;
  }
  .faq-content {
    gap: 8px;
  }
  .faq-tabs {
    gap: 8px;
    margin-bottom: 12px;
  }
  .faq-tab {
    padding: 12px 24px;
    font-size: 15px;
    line-height: 150%;
  }
  .faq-group + .faq-group {
    margin-top: 12px;
  }
  .faq-group-title {
    font-size: 20px;
    line-height: 26px;
  }
  .faq-item {
    padding: 16px;
    gap: 24px;
  }
  .faq-item-open {
    gap: 16px;
  }
  .faq-question-row {
    align-items: flex-start;
  }
  .faq-question {
    flex: 1 1 auto;
    font-size: 16px;
    line-height: 20px;
  }
  .faq-item-open .faq-question {
    font-size: 18px;
  }
  .faq-answer-box {
    padding: 24px;
  }
  :root {
    --container-padding: 8px;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 var(--container-padding);
  }
}

@media (max-width: 412px) {
  .screen-footer-link-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .screen-footer-link-column-third {
    grid-column: auto;
  }
  .screen-footer-app-side-mobile {
    row-gap: 12px;
  }
  .screen-footer-app-side-mobile .screen-footer-app-right {
    width: 100%;
    justify-self: start;
    align-items: flex-start;
    margin-top: 0;
  }
  .screen-footer-app-side-mobile .screen-footer-app-text {
    max-width: none;
    text-align: left;
  }
  .screen-footer-app-side-mobile .screen-footer-stores {
    display: grid;
    grid-template-columns: repeat(3, 44px);
    grid-auto-rows: 44px;
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 26px;
  }
  .screen-footer {
    padding: 20px var(--container-padding);
  }
  .screen-footer-content {
    gap: 16px;
  }
  .screen-footer-app-side-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .screen-footer-app-side-mobile .screen-footer-app-left,
  .screen-footer-app-side-mobile .screen-footer-app-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }
  .screen-footer-app-side-mobile .screen-footer-stores {
    grid-template-columns: repeat(3, 44px);
  }
  .screen-footer-app-side-mobile .screen-footer-app-text {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 6.5vw;
    line-height: 1.2;
  }
  .hero-description {
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.4;
  }
  .hero-subtitle {
    font-size: 5vw;
  }
  .hero-subtitle-line {
    width: 45vw;
  }
  .hero-top-slide {
    margin-bottom: -200px;
    top: -50px;
  }
}

@media (max-width: 330px) {
  .hero-top-slide {
    margin-bottom: -160px;
  }
}

a.btn-hero-primary:hover {
  background-color: #8f1e1e !important;
}

a.btn-hero-primary:active {
  background-color: #5c0000 !important;
}

a.btn-hero-secondary:hover {
  background-color: #c4c4cc !important;
}

a.btn-hero-secondary:active {
  background-color: #a8a8b3 !important;
}

a.promo-banner-btn:hover,
.promo-banner-btn:hover {
  background-color: #8f1e1e !important;
}

a.promo-banner-btn:active,
.promo-banner-btn:active {
  background-color: #5c0000 !important;
}
