:root {
  --black: #0a0a0a;
  --white: #f6f6f6;
  --red: #e01a2b;
  --red-glow: rgba(224, 26, 43, 0.35);
  --gray: #9f9f9f;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  background-color: #0a0a0a;
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(224, 26, 43, 0.2), transparent 55%),
    linear-gradient(120deg, #040404 0%, #0b0b0b 60%, #151515 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

.spotlight {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 26, 43, 0.25) 0%, transparent 65%);
  top: -200px;
  right: -150px;
  filter: blur(20px);
  animation: drift 14s ease-in-out infinite alternate;
  z-index: 0;
}


.ribbons span {
  position: fixed;
  width: 420px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.4;
  animation: ribbon 10s linear infinite;
  z-index: 0;
}

.ribbons span:nth-child(1) {
  top: 18%;
  left: -10%;
  animation-delay: 0s;
}

.ribbons span:nth-child(2) {
  top: 52%;
  left: -20%;
  animation-delay: 2.5s;
}

.ribbons span:nth-child(3) {
  top: 78%;
  left: -15%;
  animation-delay: 4s;
}

.hero {
  position: relative;
  padding: 36px 8vw 80px;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 35px;
}

.logo {
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.logo span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.6em;
  color: var(--gray);
  margin-top: 6px;
}

.hero__content {
  max-width: 620px;
}

.hero__main {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}

.hero__actions-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.4em;
  font-size: 12px;
  margin-bottom: 24px;
}

h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.05;
  margin: 0 0 24px;
}

p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 32px;
}

p span {
  display: block;
  margin-bottom: 8px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  justify-items: center;
}

.action-grid .cta {
  width: 100%;
  min-height: 48px;
  font-size: 14px;
  max-width: 320px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 0 30px rgba(224, 26, 43, 0.35);
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(224, 26, 43, 0.6);
}

.cta--ghost {
  background: transparent;
  border-color: var(--border);
  box-shadow: none;
}

.cta--ghost:hover {
  background: var(--glass);
}

.cta--accent {
  background: linear-gradient(120deg, #e01a2b 0%, #ff453a 100%);
}

.cta--small {
  padding: 10px 16px;
  font-size: 13px;
}

.hero__cards {
  margin-top: 64px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  padding: 22px;
  background: linear-gradient(135deg, rgba(224, 26, 43, 0.14), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(224, 26, 43, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 20px rgba(224, 26, 43, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 26, 43, 0.7);
}

.highlight-card__title {
  font-weight: 600;
  margin-bottom: 12px;
}

.highlight-card__desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.highlight-card--stat {
  text-align: center;
}

.highlight-card__value {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-card__label {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

main {
  padding: 0 8vw 60px;
  position: relative;
  z-index: 1;
}

.rates-carousel {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 0 40px;
  position: relative;
  z-index: 1;
}

.rates-carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rates-carousel__frame {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 6px 8vw;
  min-height: 91px;
  display: flex;
  align-items: center;
}

.rates-carousel__frame::before,
.rates-carousel__frame::after {
  content: none;
}

.rates-carousel__track {
  display: flex;
  gap: 12px;
  align-items: center;
  width: max-content;
  height: 101.5px;
  padding: 6px 0;
  animation: rates-scroll 26s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.rates-carousel__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.rates-carousel__loader span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(224, 26, 43, 0.65);
  animation: loader-pulse 1.2s ease-in-out infinite;
}

.rates-carousel__loader span:nth-child(2) {
  animation-delay: 0.15s;
}

.rates-carousel__loader span:nth-child(3) {
  animation-delay: 0.3s;
}

.rates-carousel__frame.is-ready .rates-carousel__loader {
  opacity: 0;
}

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.rates-card {
  flex: 0 0 auto;
  min-width: 180px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(224, 26, 43, 0.4);
  background: transparent;
  box-shadow: 0 0 18px rgba(224, 26, 43, 0.25);
  text-align: center;
}

.rates-card__pair {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.rates-card__rate {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.rates-card__meta {
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes rates-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.section__title {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 18px;
}

.contacts {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.address {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.address__text {
  font-size: 18px;
  font-weight: 600;
}

.address__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.managers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.manager {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(6, 6, 6, 0.6);
}

.manager__label {
  margin-bottom: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
}


.footer {
  padding: 30px 8vw 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.footer__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

[dir="rtl"] .nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero__content,
[dir="rtl"] .contacts,
[dir="rtl"] .footer {
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-80px, 40px, 0) scale(1.1);
  }
}

@keyframes ribbon {
  0% {
    transform: translateX(-30vw);
  }
  100% {
    transform: translateX(130vw);
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: row;
    align-items: center;
    margin-bottom: 5px;
  }

  .logo {
    font-size: 18px;
  }

  .logo span {
    font-size: 10px;
  }

  h1 {
    font-size: clamp(22px, 7vw, 34px);
  }

  p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero {
    padding: 18px 5vw 36px;
  }

  .lang-switch {
    display: none;
  }

  .lang-select {
    display: inline-flex;
  }

  .hero__main {
    flex-direction: column;
  }

  .hero__actions-wrap {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-items: stretch;
    width: 100%;
  }

  .action-grid .cta {
    min-height: 42px;
    font-size: 13px;
    padding: 10px 18px;
    max-width: none;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .highlight-card {
    padding: 16px;
  }

  .highlight-card__value {
    font-size: 20px;
  }

  .highlight-card__label {
    font-size: 10px;
  }

  .rates-carousel {
    padding-bottom: 5px;
  }

  .rates-card {
    min-width: 150px;
    padding: 10px 12px;
  }

  .rates-card__pair {
    font-size: 11px;
  }

  .rates-card__rate {
    font-size: 16px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.lang-switch__btn {
  border: none;
  background: transparent;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch__btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch__btn.is-active {
  color: var(--white);
  background: rgba(224, 26, 43, 0.25);
  box-shadow: inset 0 0 10px rgba(224, 26, 43, 0.35);
}

.lang-select {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.lang-select__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

.lang-select__control {
  background: transparent;
  border: none;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 12px;
  outline: none;
  appearance: none;
}
