@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #05070f;
  --app-height: 100vh;
  --surface: rgba(10, 15, 30, 0.68);
  --surface-strong: rgba(13, 18, 35, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.08);
  --text: #f7f8fc;
  --muted: rgba(247, 248, 252, 0.7);
  --line: rgba(255, 255, 255, 0.12);
  --gold-start: #c4985e;
  --gold-end: #f7dfb4;
  --gold-text: #2d1a07;
  --accent: #6f88ff;
  --accent-strong: #2b47da;
  --success: #33d69f;
  --danger: #ff7f7f;
  --warning: #ffcf5a;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.24);
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(14px, 1.1vw, 18px);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg) url('../images/bg.png') center/cover no-repeat fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  overscroll-behavior: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(111, 136, 255, 0.45);
  color: #fff;
}

.page-shell,
.section,
.hero,
.hero .container {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.video-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
  filter: saturate(1.06) contrast(1.05);
}

.page-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at top right, rgba(111, 136, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 15, 0.35) 0%, rgba(5, 7, 15, 0.78) 45%, rgba(5, 7, 15, 0.95) 100%);
}

._mobile {
  display: none !important;
}

._desk {
  display: block;
}

[data-show] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-show].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--gold-text);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.btn--wide {
  width: 100%;
}

.section {
  padding: 5.5rem 0;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff6d9, #d8b382 45%, #fff6d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(244, 217, 167, 0.18);
}

.section-title--xl {
  font-size: clamp(2rem, 5vw, 4.25rem);
}

.section-title--md {
  font-size: clamp(1.25rem, 3vw, 2.15rem);
  margin-top: 1rem;
}

.section-text {
  text-align: center;
  color: var(--muted);
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.header {
  position: absolute;
  inset: 0 0 auto 0;
  padding: 1.25rem 0;
  z-index: 5;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(10, 14, 27, 0.48);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.nav-logo .logo {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex: 1;
}

.nav-menu__list {
  display: flex;
  gap: clamp(1rem, 2vw, 2.25rem);
  list-style: none;
  margin: 0 auto;
}

.nav-menu__list a {
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  position: relative;
}

.nav-menu__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-menu__list a:hover::after,
.nav-menu__list a:focus-visible::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 70px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.hero-bottom {
  margin-top: 0px;
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
}

.hero-left {
  position: relative;
  min-height: 520px;
}

.hero-kv {
  position: absolute;
  left: -1rem;
  right: 0;
  top: 80px;
}

.hero-kv img {
  width: 100%;
}

.hero-right {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
}

.hero-title {
  width: min(520px, 100%);
  height: auto;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-bottom {
  padding-bottom: 3rem;
}

.car-light {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.45) 30%, rgba(255, 255, 255, 0) 72%);
  filter: blur(2px);
  mix-blend-mode: screen;
  animation: headlightPulse 1.6s infinite ease-in-out;
}

.car-light-right {
  right: 27%;
  top: 47%;
}

.car-light-left {
  right: -7%;
  top: 47%;
  animation-delay: .15s;
}

.car-light-top1 {
  right: 13%;
  top: 27%;
  animation-delay: .35s;
}

.car-light-top2 {
  right: -10%;
  top: 25%;
  animation-delay: .2s;
}

@keyframes headlightPulse {

  0%,
  100% {
    opacity: .25;
    transform: scale(.9);
  }

  50% {
    opacity: .95;
    transform: scale(1.08);
  }
}

.prizes-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.prize-card,
.products-slider-slide__img-wrapper,
.search-result-card,
.modal-content,
.faq-question,
.faq-answer,
.search-popup-inner {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.prize-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.prize-card::before {
  content: '';
  position: absolute;
  inset: auto -35% -35% auto;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 152, 94, 0.26), transparent 70%);
}

.prize-step {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  color: var(--gold-end);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.prize-content h3 {
  font-size: 1.5rem;
  margin-bottom: .85rem;
}

.prize-content p,
.prizes-note {
  color: var(--muted);
}

.prize-card-img {
  margin-top: 1.5rem;
  width: min(260px, 100%);
  margin-inline: auto;
}

.prizes-note,
.steps-buttons {
  margin-top: 2rem;
  text-align: center;
}

.products {
  overflow: hidden;
}

.products-slider-slide {
  padding: 1rem;
  text-align: center;
}

.products-slider-slide__img-wrapper {
  height: 17rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.products-slider-slide__img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.products-slider-slide__text {
  color: var(--muted);
  margin-bottom: .5rem;
}

.products-slider-slide__title {
  font-weight: 700;
  color: #fff8e7;
  line-height: 1.35;
}

.slick-arrow {
  position: absolute;
  top: 40%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 13, 27, 0.78);
  z-index: 2;
}

.slick-prev {
  left: -10px;
}

.slick-next {
  right: -10px;
}

.search-popup {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 8;
}

.slick-prev,
.slick-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-popup-inner {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.search-popup-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
}

.search-popup-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--gold-text);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--app-height);
  min-height: var(--app-height);
  padding: 1.25rem;
  z-index: 20;
  overscroll-behavior: contain;
}

.modal.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 17, 0.78);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: min(560px, 100%);
  max-height: min(calc(var(--app-height) - 2.5rem), 900px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 22, 44, 0.94), rgba(10, 14, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

.search-modal {
  width: min(620px, 100%);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.7rem;
  line-height: 1;
}

.modal-eyebrow {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-end);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

.modal-content h3 {
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  margin-bottom: .6rem;
}

.modal-subtitle {
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.modal-body,
.search-form {
  display: grid;
  gap: 1rem;
}

.input-group {
  display: grid;
  gap: .45rem;
}

.input-group label {
  color: rgba(255, 255, 255, 0.88);
  font-size: .94rem;
}

input,
textarea,
select {
  font-size: 16px;
}

input {
  width: 100%;
  min-height: 58px;
  padding: 0 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: max(16px, 1rem);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input:focus {
  outline: none;
  border-color: rgba(247, 223, 180, 0.65);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(247, 223, 180, 0.12);
}

.field-error {
  min-height: 1.1rem;
  color: var(--danger);
  font-size: .82rem;
}

.input-error {
  border-color: rgba(255, 127, 127, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 127, 127, 0.12);
}

.form-status {
  min-height: 1.4rem;
  font-size: .92rem;
  color: var(--muted);
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.form-status.loading {
  color: var(--warning);
}

.search-result {
  margin-top: 1.25rem;
}

.search-result-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-result-card.success {
  border-color: rgba(51, 214, 159, 0.28);
}

.search-result-card.error {
  border-color: rgba(255, 207, 90, 0.24);
}

.search-result-header {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1rem;
}

.search-result-headline {
  display: grid;
  gap: .35rem;
}

.search-result-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
}

.search-result-card.success .search-result-icon {
  color: var(--success);
}

.search-result-card.error .search-result-icon {
  color: var(--warning);
}

.search-result-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.search-result-description {
  color: var(--muted);
  line-height: 1.55;
}

.result-info-card {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(111, 136, 255, 0.14), rgba(111, 136, 255, 0.05));
  border: 1px solid rgba(111, 136, 255, 0.18);
}

.result-info-card.is-empty {
  background: linear-gradient(135deg, rgba(255, 207, 90, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 207, 90, 0.18);
}

.result-info-header {
  display: grid;
  gap: .35rem;
}

.result-info-kicker {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.58);
}

.result-info-name {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff8e4;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.result-item {
  padding: .95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-item--featured {
  background: linear-gradient(135deg, rgba(247, 223, 180, 0.12), rgba(255, 255, 255, 0.04));
  border-color: rgba(247, 223, 180, 0.22);
}

.result-item--description {
  grid-column: 1 / -1;
}

.result-item-label,
.result-ticket-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: .35rem;
}

.result-item-value {
  font-weight: 600;
  line-height: 1.45;
  word-break: break-word;
}

.result-ticket {
  display: grid;
  gap: .35rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(247, 223, 180, 0.28);
  background: linear-gradient(135deg, rgba(196, 152, 94, 0.32), rgba(247, 223, 180, 0.14));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.result-ticket.is-highlighted {
  background: linear-gradient(135deg, rgba(196, 152, 94, 0.4), rgba(255, 222, 152, 0.18));
}

.result-ticket.is-empty {
  background: linear-gradient(135deg, rgba(90, 96, 122, 0.34), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.1);
}

.result-ticket-value {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: .95;
  color: #fff7df;
}

.result-ticket-text {
  color: rgba(255, 248, 228, 0.78);
  line-height: 1.45;
}

.success-content {
  text-align: center;
}

.checkmark-circle {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 214, 159, .18), rgba(51, 214, 159, .06));
  display: grid;
  place-items: center;
}

.checkmark-circle svg {
  width: 52px;
  height: 52px;
  stroke: var(--success);
  stroke-width: 3;
}

.shake {
  animation: shake .3s linear;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

@media (max-width: 1024px) {

  .hero-content,
  .prizes-container {
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: 420px;
  }

  .hero-kv {
    position: relative;
    left: 0;
    margin: 0 auto;
    top: 0px;
    width: 80%;
  }

  .hero-right {
    justify-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .header {
    position: absolute;
    padding-top: .9rem;
  }

  .nav {
    border-radius: 28px;
  }

  .hamburger {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(10, 14, 27, 0.96);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu__list {
    flex-direction: column;
    margin: 0;
  }

  .nav-menu .btn {
    width: 100%;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-left {
    min-height: auto;
  }

  ._mobile {
    display: block !important;
  }

  ._desk {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(100% - 20px, 1180px);
  }

  .nav {
    padding: .85rem 1rem;
  }

  .nav-logo .logo {
    height: 48px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .search-popup {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .search-popup-inner {
    width: 100%;
    justify-content: center;
    background-color: rgba(0, 7, 32, 0.152);
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-content {
    width: 100%;
    max-height: calc(var(--app-height) - env(safe-area-inset-top) - 1rem);
    margin-top: auto;
    border-radius: 28px 28px 0 0;
    padding: 1.25rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}


.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.hero-left {
  flex: 1;
  position: relative;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-actions {
  margin-top: 10px;
}

@media (max-width: 820px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    align-items: center;
  }

}

.hero-actions--single {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}