:root {
  --gradient: radial-gradient(circle at right, #67bff3 0%, #7877e4 25%, #b474b8 50%, #f98a7e 75%, #f3854a 100%);
  --primary-color-start: #7877e4;
  --primary-color-end: #f98a7e;
  --bg-color: #090009;
  --surface-color: #0f0c0f;
  --surface-hover-color: #1b141b;
  --border-color: #1e1c1e;
  --text-primary: #FFFFFF;
  --text-secondary: #BDBDBD;
  --max-width: 1280px;
  --gap: 20px;
  --border-radius: 8px;
  --section-padding: 6em 0
}

@media (max-width:1024px) {
  :root {
    --section-padding: 3em 1.125em;
    --gap: 10px
  }

  .card {
    padding: 1em !important
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body,
html {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-secondary);
  line-height: 1.5;
  text-wrap: balance;
  overflow-x: hidden !important;
  -webkit-tap-highlight-color: #fff0;
  width: 100%;
  font-display: swap
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url(/assets/fonts/montserrat-v25-latin-600.woff2) format('woff2');
  font-display: swap
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url(/assets/fonts/montserrat-v25-latin-300.woff2) format('woff2');
  font-display: swap
}

@media (min-width:1024px) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) var(--bg-color)
  }

  *::-webkit-scrollbar {
    width: 8px
  }

  *::-webkit-scrollbar-track {
    background: var(--bg-color)
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 4px
  }
}

h1,
h2,
h3,
h4,
strong {
  font-weight: 600;
  color: var(--text-primary)
}

@media(max-width:767px) {
  h1 {
    font-size: 1.9rem
  }

  h2 {
    font-size: 1.6rem
  }

  h3 {
    font-size: 1.1rem
  }

  h4 {
    font-size: 1rem
  }

  p,
  li {
    font-size: 1rem
  }
}

@media (min-width:768px) and (max-width:1024px) {
  h1 {
    font-size: 1.9rem
  }

  h2 {
    font-size: 1.6rem
  }

  h3 {
    font-size: 1.125rem
  }

  h4 {
    font-size: 1.1rem
  }

  p,
  li {
    font-size: 1.1rem
  }
}

@media (min-width:1025px) and (max-width:1366px) {
  h1 {
    font-size: 2.1rem
  }

  h2 {
    font-size: 1.6rem
  }

  h3 {
    font-size: 1.3rem
  }

  h4 {
    font-size: 1.1rem
  }

  p,
  li {
    font-size: 1.1rem
  }

  :root {
    --max-width: 80vw;
    --gap: 10px
  }

  .card {
    padding: 1.5em !important
  }
}

@media (min-width:1367px) {
  h1 {
    font-size: 3.1rem
  }

  h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.3rem
  }

  h4 {
    font-size: 1.125rem
  }

  p,
  li {
    font-size: 1.125rem
  }
}

a {
  color: var(--primary-color-start);
  text-decoration: none;
  transition: color 0.3s ease
}

ul,
ol {
  padding-left: 20px
}

li {
  margin-bottom: 1rem
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  -webkit-text-fill-color: #fff0
}

.section {
  padding: var(--section-padding)
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap)
}

.title-wrapper {
  text-align: center;
  max-width: 1140px;
  user-select: none !important;
  margin-bottom: 1rem;
}

.section-hero {
  padding-top: calc(160px + 4%);
}

.hero__description {
  user-select: none !important
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 20px 40px;
  border-radius: var(--border-radius);
  font-weight: 300;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap
}

.btn--primary {
  background: var(--gradient);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(180, 116, 184, 0.2);
  padding: 20px 40px;
  font-size: 1rem;
  width: 100%;
  max-width: 450px
}

.btn--primary:hover {
  box-shadow: 0 7px 25px rgba(180, 116, 184, 0.3);
  color: var(--text-primary)
}

.btn--secondary {
  background-color: #fff0;
  color: var(--text-primary);
  border-color: var(--border-color)
}

.btn--secondary:hover {
  background-color: var(--surface-color);
  border-color: var(--text-secondary);
  color: var(--text-primary)
}

.main-header {
  position: fixed;
  top: 20px;
  transform: translate(-50%);
  left: 50%;
  width: calc(100% - 2.250em);
  max-width: var(--max-width);
  border-radius: var(--border-radius);
  z-index: 1000;
  padding: 0 1.125em;
  overflow: hidden;
  box-shadow: 0 4px 4px rgb(0 0 0 / .1), 0 0 10px rgb(0 0 0 / .01);
  transition: all 0.4s cubic-bezier(.175, .885, .32, 2.2)
}

.header-container {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  z-index: 4
}

.effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  filter: url(#glass-distortion);
  -webkit-filter: url(#glass-distortion);
  overflow: hidden
}

.tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgb(13 13 15 / .5)
}

.shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 1px 1px 4px rgb(255 255 255 / .2), inset 0 0 30px rgb(255 255 255 / .1)
}

.logo-header {
  height: 30px;
  width: auto;
  transition: all 0.3s ease
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: var(--gap);
  padding-top: 10px
}

nav.main-nav {
  transform: translate(24%);
}

.main-nav a {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-primary);
  transition: width 0.3s ease
}

.main-nav a:hover {
  color: var(--text-primary);
  transform: translateY(-2px)
}

.main-nav a:hover::after {
  width: 100%
}

.header-container-button {
  display: flex;
  gap: var(--gap) !important;
}

.btn--header {
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--gradient);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(180, 116, 184, 0.2);
  font-weight: 300;
  transition: all 0.3s cubic-bezier(.175, .885, .32, 2.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px)
}

.btn--header-login {
  padding: 12px 24px;
  color: #BDBDBD;
  font-weight: 300;
}

.btn--header-login:hover {
  padding: 12px 24px;
  color: var(--text-primary);
}

.btn--header:hover {
  box-shadow: 0 7px 25px rgba(180, 116, 184, 0.3);
}

.hero {
  padding-top: calc(150px + 4%);
  background: radial-gradient(circle at 50% 0%, rgba(180, 116, 184, 0.1), transparent 40%);
}

.hero-container {
  text-align: center;
  width: 1010px;
  max-width: 100%;
}

.hero__title {
  max-width: 1020px
}

.hero__description {
  max-width: 950px
}

.hero__checklist {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: var(--gap);
  flex-wrap: wrap
}

.hero__checklist li {
  display: flex;
  align-items: center
}

.hero__buttons {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  width: 100%
}

.hero__player-mockup {
  margin-top: 1rem;
  max-width: 1050px;
  width: 80%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 1px solid var(--bg-color);
  background: var(--surface-color);
  outline: 2px solid var(--border-color);
  outline-offset: .7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  align-items: center
}

.vsl-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center
}

.lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
  background: #f0f0f0
}

.lazy.loaded {
  opacity: 1
}

.img-placeholder {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  border-radius: 8px;
  overflow: hidden
}

.img-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fff0 0%, rgb(255 255 255 / .8) 50%, #fff0 100%);
  animation: shimmer 1.5s infinite
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  gap: var(--gap);
  flex-direction: column;
  transition: transform 0.3s ease, background-color 0.3s ease
}

.card:hover {
  transform: translateY(0);
  background-color: var(--surface-hover-color)
}

.card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: -10px
}

.card__title {
  margin-top: .5rem
}

.benefits-grid,
.features-grid {
  width: 100%;
  display: grid;
  gap: var(--gap)
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr))
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr))
}

.for-whom-section {
  background-color: var(--surface-color)
}

.for-whom-container {
  flex-direction: row;
  align-items: center
}

.for-whom-content {
  flex: 1;
  margin-top: -10px
}

.for-whom-content .card {
  flex: 1;
  max-width: 600px;
  text-wrap: wrap
}

.for-whom-image {
  flex: 1;
  width: 100%;
  max-width: 600px;
  margin-bottom: 2rem
}

.for-whom-image img {
  width: 100%
}

.for-whom-title.icon-list {
  margin-bottom: 1rem !important;
  max-width: 600px;
  text-wrap: wrap
}

.icon-list {
  list-style: none;
  padding: 0
}

.interactive-graph-section {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  padding: var(--section-padding)
}

.graph-text-content {
  flex: 1
}

.graph-text-content .icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5
}

.emoji {
  font-size: 1.5rem
}

.graph-visual-content {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center
}

.interactive-graph-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem 1rem
}

.conversion-graph-svg {
  width: 100%;
  height: auto;
  overflow: visible
}

.conversion-line {
  fill: none;
  stroke: url(#graph-gradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 2s cubic-bezier(.25, 1, .5, 1)
}

.conversion-fill {
  fill: url(#graph-fill-gradient)
}

.grid-lines line {
  stroke: var(--border-color);
  stroke-width: 1;
  stroke-dasharray: 2 4
}

.interactive-elements {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none
}

.interactive-graph-container:hover .interactive-elements {
  opacity: 1
}

.tracker-ball {
  fill: #fff;
  stroke: url(#graph-gradient);
  stroke-width: 2
}

.tracker-line {
  stroke: var(--border-color);
  stroke-width: 1
}

.graph-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  color: var(--bg-color);
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  transform: translate(-50%, -120%)
}

.interactive-graph-container:hover .graph-tooltip {
  opacity: 1
}

.graph-labels {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-secondary);
  padding: .5rem .5rem 0 .5rem
}

.for-whom-image .interactive-graph-container {
  max-width: none;
  width: 100%
}

@media (max-width:900px) {
  .interactive-graph-section {
    flex-direction: column
  }
}

.swiper {
  width: 100%;
  padding-bottom: 3rem !important;
  cursor: grab
}

.swiper:active {
  cursor: grabbing
}

.swiper-slide {
  height: auto
}

.swiper-wrapper {
  margin-left: 10px
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  flex-grow: 1
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color)
}

.author-name {
  font-weight: 600;
  color: var(--text-primary)
}

.author-title {
  font-size: .9rem
}

.swiper-slide {
  margin-right: 20px !important
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center
}

.swiper-pagination-bullet {
  background-color: var(--text-secondary) !important;
  transition: all 0.5s !important;
  margin: 2px !important
}

.swiper-pagination-bullet-active {
  width: 20px !important;
  border-radius: 3px !important;
  background: var(--gradient) !important;
  transition: all 0.5s !important
}

.offer-section {
  background: radial-gradient(circle at 50% 20%, rgba(180, 116, 184, 0.08), transparent 50%)
}

.offer-container {
  width: 100%;
  max-width: 1050px;
  flex-direction: row;
  align-items: stretch
}

.offer-box {
  flex: 1.2;
  background: var(--surface-color);
  border: 1px solid var(--primary-color-start);
  border-radius: 12px;
  text-align: center;
  display: flex;
  gap: var(--gap);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(180, 116, 184, 0.15);
  position: relative;
  overflow: hidden
}

.offer-tag {
  position: absolute;
  top: 50px;
  right: -50px;
  background: var(--gradient);
  color: var(--text-primary);
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: .8rem;
  font-weight: 600
}

.price-strikethrough {
  text-decoration: line-through;
  color: var(--text-secondary)
}

.price-display {
  font-size: 5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1
}

.price-display span:first-child {
  font-size: 1.8rem;
  vertical-align: top
}

.price-display span:last-child {
  font-size: 1.5rem;
  color: var(--text-secondary)
}

.annual-offer {
  font-size: 1.1rem;
  padding-bottom: 1rem
}

.offer-checklist {
  list-style: none;
  margin: 1rem 0;
  text-align: left;
  width: 100%;
  max-width: 380px
}

.offer-checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: var(--gap)
}

.payment-methods {
  max-width: 350px;
  width: 100%;
  height: auto
}

.guarantee-bonus-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap)
}

.guarantee-box,
.bonus-box {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem
}

.guarantee-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap)
}

h2.guarantee-title {
  margin-bottom: 0;
}

h2.bonus-title {
  margin-bottom: 0;
}

.guarantee-seal {
  width: 100%;
  height: auto;
  max-width: 250px;
  max-height: auto
}

.about-title {
  max-width: 400px
}

.about-container {
  flex-direction: row;
  align-items: center;
  text-wrap: wrap;
  gap: 8%;
}

.about-container video {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.equal-width {
  flex: 1 !important;
  min-width: 0 !important;
}

.about-image {
  flex: 1;
  max-width: 528px
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius)
}

.about-content {
  flex: 1
}

.about-content p {
  margin-bottom: 1rem
}

#about-title {
  margin-bottom: 20px
}

.faq-container {
  max-width: 1050px
}

.accordion-wrapper {
  width: 100%
}

.accordion {
  width: 100%;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--surface-color);
  transition: background-color 0.3s
}

.accordion:hover {
  background-color: var(--surface-hover-color)
}

.accordion-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--gradient);
  transition: transform 0.4s ease
}

.accordion-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%)
}

.accordion-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%)
}

.accordion.active .accordion-icon {
  transform: rotate(135deg)
}

.accordion-question {
  font-size: 1.1rem
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out
}

.accordion-content p {
  padding: 2rem
}

.accordion.active .accordion-content {
  border-top: 1px solid var(--border-color)
}

.final-cta-section {
  background: var(--gradient);
  color: var(--text-primary)
}

.final-cta-container {
  text-align: center
}

.final-cta-container h2,
.final-cta-container p {
  color: var(--text-primary)
}

.final-cta-container .gradient-text {
  -webkit-text-fill-color: initial;
  background: none
}

.final-cta-container .btn--primary {
  background: var(--text-primary);
  color: var(--primary-color-start);
  box-shadow: 0 4px 20px rgb(0 0 0 / .2)
}

.final-quote {
  margin-top: 2rem;
  font-style: italic;
  opacity: .9
}

.logo-footer {
  height: 30px;
  width: auto;
  transition: all 0.3s ease
}

.footer {
  background-color: var(--surface-color);
  padding: 4em 2em 2em;
  border-top: 1px solid var(--border-color)
}

.footer-container {
  gap: var(--gap)
}

.footer-top {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr
}

.footer-logo {
  height: 35px;
  margin-bottom: 1rem
}

.footer ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1em
}

.footer ul li {
  margin-bottom: .5rem
}

.footer a,
.footer p {
  font-size: .95rem;
  color: var(--text-secondary)
}

.footer a:hover {
  color: var(--text-primary)
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 4rem;
  margin-top: 2rem
}

.footer-social ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: var(--gap)
}

.footer-social li {
  background-color: rgb(26 26 26 / .5);
  border: 1px solid var(--border-color);
  border-radius: 100%;
  transition: 0.3s
}

.footer-social li:hover {
  background-color: var(--surface-hover-color);
  border: 1px solid var(--border-color);
  cursor: pointer
}

.footer-social li a {
  display: inline-block;
  padding: 10px 10px 5px 10px
}

.footer-social li:hover img {
  transition: transform 0.3s ease
}

.security-info {
  font-size: .9rem
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgb(0 0 0 / .2);
  z-index: 100;
  transition: transform 0.3s ease
}

.whatsapp-float:hover {
  transform: scale(1.1)
}

html {
  scroll-behavior: auto !important
}

html.lenis {
  height: auto
}

.lenis.lenis-smooth {
  scroll-behavior: auto
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain
}

.lenis.lenis-stopped {
  overflow: hidden
}

.up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out
}

.up.active {
  opacity: 1;
  transform: translateY(0)
}

.page {
  padding: 4em 1.125em;
  align-items: flex-start
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #fff0;
  border: none;
  cursor: pointer;
  z-index: 1002;
  position: relative
}

.mobile-menu-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(.25, .46, .45, .94);
  border-radius: 2px
}

.mobile-menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.mobile-menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(20px)
}

.mobile-menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px)
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgb(13 13 15 / .7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  transition: right 0.3s cubic-bezier(.25, .46, .45, .94) 0.2s;
  padding-top: 6em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center
}

.mobile-nav-panel.active {
  right: 0
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #fff0;
  border: none;
  cursor: pointer;
  z-index: 1003;
  opacity: 0;
  transform: rotate(180deg);
  transition: all 0.3s ease
}

.mobile-nav-panel.active .mobile-menu-close {
  opacity: 1;
  transform: rotate(0deg);
  transition-delay: 0.2s
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease
}

.mobile-menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg)
}

.mobile-menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg)
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
  background: var(--primary-color-start)
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 ! important
}

.mobile-nav a {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(50px)
}

.mobile-nav-panel.active .mobile-nav a {
  opacity: 1;
  transform: translateX(0);
  animation: slideInFromRight 0.6s cubic-bezier(.25, .46, .45, .94) forwards
}

.mobile-nav a:hover {
  color: var(--text-primary);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  transform: scale(1.1)
}

.mobile-nav a:nth-child(1) {
  animation-delay: 0.1s
}

.mobile-nav a:nth-child(2) {
  animation-delay: 0.2s
}

.mobile-nav a:nth-child(3) {
  animation-delay: 0.3s
}

.mobile-nav a:nth-child(4) {
  animation-delay: 0.4s
}

.mobile-nav a:nth-child(5) {
  animation-delay: 0.5s
}

.btn--mobile-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 8px;
  background: var(--gradient);
  color: var(--text-primary) !important;
  font-weight: 300 !important;
  font-size: 1rem !important;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  opacity: 0
}

.mobile-nav-panel.active .btn--mobile-nav {
  opacity: 1;
  transform: translateY(0);
  animation: slideInFromBottom 0.6s cubic-bezier(.25, .46, .45, .94) 0.6s forwards
}

.btn--mobile-nav:hover {
  box-shadow: 0 7px 25px rgba(180, 116, 184, 0.3);
  color: var(--text-primary)
}

@keyframes slideInFromRight {
  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideInFromBottom {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.mobile-nav-panel:not(.active) .mobile-nav a,
.mobile-nav-panel:not(.active) .btn--mobile-nav,
.mobile-nav-panel:not(.active) .footer-social,
.mobile-nav-panel:not(.active) .logo-header-mob {
  opacity: 0;
  animation: none
}

@media (max-width:1024px) {
  .main-header {
    top: 10px;
    padding: 0 1em
  }

  .hero {
    height: 100%;
    width: 100%;
  }

  .hero__player-mockup {
    width: 100%;
  }

  .emoji {
    font-size: 1.3rem
  }

  .page {
    padding: 3em .6em 2em .6em;
    align-items: flex-start
  }

  .header-container .header-container-button {
    display: none;
  }

  .header-container {
    height: 60px
  }

  .header-container-button {
    margin-top: 1em;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px !important;
  }

  .btn--header-login {
    font-size: 1em !important;
    text-align: center;
  }

  .logo-header-mob {
    position: absolute;
    top: 26px;
    left: 20px;
    height: 30px;
    width: auto;
    transition: all 0.3s ease
  }

  .for-whom-container,
  .offer-container,
  .about-container {
    flex-direction: column;
    gap: var(--gap) !important;
  }

  .for-whom-image {
    order: -1
  }

  .offer-box {
    width: 100%;
    padding: 1rem
  }

  .guarantee-bonus-box {
    width: 100%
  }

  .guarantee-box,
  .bonus-box {
    padding: 1rem
  }

  .bonus-list li {
    margin-bottom: 0rem
  }

  .accordion-header {
    padding: 1rem
  }

  .accordion-content p {
    padding: 1rem
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .footer-about {
    grid-column: 1 / -1
  }

  .main-nav {
    display: none
  }

  .btn--header {
    display: none
  }

  .mobile-menu-toggle {
    display: flex
  }

  .footer-social li {
    margin-top: 0em
  }
}

@media (max-width:767px) {
  .btn--header {
    display: none
  }

  .hero {
    padding-top: calc(60px + 2em);
    height: 100%;
    width: 100%;
  }

  .hero__checklist {
    flex-direction: column;
    align-items: flex-start;
    font-size: .9rem;
    gap: 0;
    padding: 0
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%
  }

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

  .benefits-grid .card {
    text-align: center;
    align-items: center
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr))
  }

  .offer-box {
    width: 100%;
    padding: 4rem 1rem 1.5rem 1rem !important;
  }

  .offer-tag {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: var(--gradient);
    color: var(--text-primary);
    padding: 8px 40px;
    transform: rotate(0deg);
    font-size: 1rem
  }

  .annual-offer {
    font-size: 1rem;
    padding-bottom: 0rem
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--gap)
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--gap);
    text-align: center;
    margin-top: 3em
  }

  .btn--header {
    padding: 10px 16px;
    font-size: .9rem
  }

  .mobile-nav a {
    font-size: 1.3rem
  }

  .mobile-nav ul {
    gap: var(--gap);
    padding: 0 ! important
  }
}