:root {
  --color-black: #000000;
  --color-gold: #d1b684;
  --color-gold-light: #fcf5b8;
  --color-red: #d2252a;
  --color-green: #0ce51e;
  --color-white: #efefef;
  --color-gray: #cacaca;
  --color-gray-mid: #7c7c7c;
  --color-gray-footer: #9b9b9b;
  --color-gray-social: #777777;
  --color-header-link: #d0b583;
  --color-footer-bg: #151515;
  --color-social-bg: rgba(224, 1, 9, 0.2);
  --color-step-bg: rgba(224, 1, 9, 0.1);
  --font-gotham: 'Montserrat', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
  --font-arial: 'Arial', sans-serif;
  --gradient-gold: linear-gradient(180deg, #fcf5b8 0%, #d1b684 50.48%, #d1b684 100%);
  --gradient-hero-bottom: linear-gradient(-1.8434265892339283deg, rgb(0, 0, 0) 10.695%, rgba(0, 0, 0, 0) 91.66%);
  --gradient-hero-bottom-desk: linear-gradient(-1.5493980166199037deg, rgb(0, 0, 0) 17.058%, rgba(0, 0, 0, 0) 87.86%);
  --gradient-hero-left-desk: linear-gradient(-3.219229625341498deg, rgb(0, 0, 0) 2.9581%, rgba(0, 0, 0, 0) 87.86%);
  --radius-pill-mob: 4.226px;
  --radius-pill-wide-mob: 4.759px;
  --radius-pill-desk: 9.059px;
  --radius-pill-wide-desk: 10.203px;
  --radius-cta-mob: 24px;
  --radius-cta-desk: 64px;
  --radius-step: 4px;
  --transition-btn: transform 0.15s ease, box-shadow 0.15s ease;
  --max-width: 1920px;
  --bp-desktop: 1024px;
  --z-header: 10;
  --z-hero-content: 2;
  --z-hero-bg: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-poppins);
  line-height: 1.4;
}

.main {
  background-image: url(../assets/img/bg-hero-desktop.avif);
  background-size: cover;
  background-position: center;
  margin-bottom: 27px;
  position: relative;
}

.main-content {
  width: 731px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 94px 0 60px;
  margin-left: 176px;
}

.main::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(transparent, black);
  pointer-events: none;
}

.bg-hero-mobile {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 76px;
  gap: 16px;
}

.logo span {
  width: 2px;
  height: 75px;
  background: #292929;
}

.logo a {
  display: none;
}

.logo-img {
  width: 234px;
  height: 52px;
  aspect-ratio: 9/2;
}

.logo-icon2 {
  width: 75px;
  height: 75px;
  aspect-ratio: 1/1;
}

.bg-offer-desktop {
  margin-bottom: 32px;
}

.terms-and-conditions-mobile {
  display: none;
}

.hero-cta {
  padding: 19px 16px;
  border-radius: 64px;
  background: var(--color-green);
  position: relative;
  color: var(--color-black);
  font-family: var(--font-poppins);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
  text-decoration: none;
  isolation: isolate;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  animation: heroCtaBreath 2.2s ease-in-out infinite;
}

.terms-and-conditions {
  color: #D1B684;
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 34px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 64px;
  border: 1px solid var(--color-green);
  pointer-events: none;
  animation: heroCtaRing 2.2s ease-out infinite;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 22px rgba(12, 229, 30, 0.45);
}

.hero-cta:active {
  transform: scale(0.98);
}

.hero-cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 6px;
}

@keyframes heroCtaBreath {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes heroCtaRing {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  70% {
    opacity: 0;
    transform: scale(1.12);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-cta,
  .hero-cta::before {
    animation: none;
  }

  .hero-cta {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }
}

.hero-subtitle {
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FCF5B8 0%, #D1B684 50.48%, #D1B684 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
}

.social {
  display: flex;
  gap: 35px;
  justify-content: center;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.social-item span {
  color: var(--color-gray-social);
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.125px;
}

.social-item img {
  width: 78px;
  height: 78px;
}

.section-title {
  text-align: center;
  font-family: var(--font-gotham);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FCF5B8 0%, #D1B684 50.48%, #D1B684 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 27px;
}

.steps {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 1647px;
  margin: 0 auto 80px;
}

.step {
  flex: 1 1 300px;
  display: flex;
  gap: 12px;
  padding-inline: 16px;
}

.step-number {
  color: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-step);
  background: rgba(224, 1, 9, 0.10);
  border: 1px solid #ffffff3f;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-title {
  color: var(--color-gold);
  font-family: var(--font-poppins);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}

.step-description {
  color: var(--color-gray);
  font-family: var(--font-poppins);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.footer {
  display: flex;
  justify-content: center;
  padding: 54px 16px;
  background-color: var(--color-footer-bg);
}

.footer-inner {
  max-width: 1600px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.dmca-img-mobile {
  display: none;
}

.dmca-img-desktop {
  width: 357px;
  margin-bottom: 33px;
}

.footer-coll h4 {
  color: #D1B684;
  font-family: var(--font-arial);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 18px;
  margin-top: 0;
}

.footer-coll:has(h4) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-nav a {
  color: var(--color-gray-footer);
  font-family: var(--font-arial);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  padding-block: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-license {
  color: #DA3437;
  font-family: var(--font-arial);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.footer-coll-description {
  flex: 1 1 280px;
  max-width: 562px;
  min-width: 0;
  width: 100%;
}

.footer-coll-description p {
  color: #9B9B9B;
  font-family: var(--font-arial);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  overflow-wrap: break-word;
}

.f-text1 {
  margin-bottom: 24px;
}

.f-text2 {
  margin-bottom: 14px;
}

.f-text3 {
  margin-bottom: 33px;
}

.f-text4 {
  margin-bottom: 10px;
}

.footer-coll-description p a {
  color: var(--color-white);
  font-family: var(--font-arial);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.footer-inner>img {
  width: 225px;
  height: 50px;
  aspect-ratio: 9/2;
}

.mobile-steps-head {
  display: none;
}

.mobile-slot {
  display: none;
}

.hero-cta-mobile {
  display: none;
}

@media (max-width: 1480px) {
  .main-content {
    zoom: 0.8;
  }
}

@media (max-width: 1280px) {
  .steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
    padding-inline: 16px;
  }

  .step {
    min-width: 0;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-inner>img {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .footer-coll {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .footer-coll-description {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-slot {
    display: contents;
  }

  .main {
    background-image: none;
    margin-bottom: 0;
  }

  .main-content {
    padding: 10px 16px;
    width: 100%;
    padding-inline: 0;
    margin-left: 0;
    zoom: 1;
  }

  .hero-social {
    width: 100%;
    padding: 0 16px 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .step-title {
    font-size: 15px;
  }

  .step-description {
    font-size: 14px;
    line-height: 23px;
  }

  .bg-offer-desktop {
    display: none;
  }

  .logo {
    width: 100%;
    margin-bottom: 10px;
    padding-inline: 16px;
    gap: 8px;
  }

  .logo a {
    display: block;
    color: #D0B583;
    font-family: var(--font-roboto);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: underline;
    text-underline-offset: 3px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .bg-hero-mobile {
    display: block;
  }

  .section-title-desktop {
    display: none;
  }

  .mobile-steps-head {
    display: block;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .mobile-steps-head p {
    color: #FFF;
    text-align: center;
    font-family: var(--font-gotham);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 16px;
  }

  .footer {
    background-color: transparent;
    padding-block: 34px;
  }


  .footer-inner>img {
    display: none;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-coll {
    align-items: center;
  }

  .footer-coll-legal,
  .footer-coll-dmca {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-coll-description p {
    text-align: center;
  }

  .dmca-img-desktop {
    display: none;
  }

  .dmca-img-mobile {
    display: block;
    width: 65%;
    margin-inline: auto;
  }

  .footer-coll-legal h4 {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 8px;
  }

  .footer-coll p {
    font-weight: 400;
    font-size: 16px;
  }

  .dmca-img-mobile {
    margin-bottom: 24px;
  }

  .social {
    gap: 20px;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 24px;
    width: 210px;
    margin-inline: auto;
  }

  .social-item {
    gap: 4px;
  }

  .social-item img {
    width: 44px;
    height: 44px;
  }

  .social-item span {
    font-size: 10px;
  }

  .hero-cta-mobile {
    display: block;
    margin: 0 auto;
    width: fit-content;
    margin-bottom: 24px;
  }

  .footer-coll-description p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
  }

  .footer-nav {
    gap: 8px;
    margin-bottom: 12px;
  }

  .footer-nav a {
    color: var(--color-gray-footer);
    text-align: center;
    font-family: var(--font-arial);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 4px 20px;
  }

  .footer-inner {
    gap: 12px;
  }

  .footer-inner .f-text5 {
    color: #9B9B9B;
    font-size: 16px;
  }

  .f-text2,
  .f-text1 {
    margin-bottom: 14px;
  }

  .f-text4 {
    margin-bottom: 33px;
  }

  .footer-license {
    color: #DA3437;
    text-align: center;

    /* Txt mob */
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */

    margin-bottom: 12px;
  }

  .logo-img {
    width: 108px;
    height: 24px;
    aspect-ratio: 9/2;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    flex: 1;
  }

  .logo span {
    height: 33px;
  }

  .logo-icon2 {
    width: 34px;
    height: 34px;
  }

  .terms-and-conditions {
    display: none;
  }

  .terms-and-conditions-mobile {
    display: block;
    margin-bottom: 40px;
    font-size: 15px;
  }

  .footer-coll-description {
    flex: none;
    order: -1;
  }
}

@media (max-width: 540px) {}

@media (max-width: 480px) {
  .hero-cta {
    font-size: 15px;
    padding: 11px 22px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }
}