* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #0f0f10;
  color: #1c1c1c;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.hero-section {
  background: radial-gradient(circle at center, #ffffff 0%, #ffffff 50%, #f0f0f0 100%);
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  overflow: hidden;
}

.hero-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 0 48px;
}

.hero-nav {
  width: 1140px;
  height: 78px;
  margin: 0 auto;
  padding: 0 36px;
  background: #141414;
  border-radius: 160px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-nav__link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.hero-nav__link:hover {
  opacity: 0.75;
}

.hero-nav__logo {
  flex: 0 0 auto;
}

.hero-nav__logo img {
  width: 206px;
  height: 41px;
  object-fit: contain;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 0 0;
  min-height: 590px;
}

.hero-center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-title__dark {
  color: #1c1c1c;
}

.hero-title__pink {
  color: #ff17e0;
}

.hero-title__green {
  color: #92d83c;
}

.hero-subtitle {
  width: 100%;
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: #1d1d1d;
}

section {
  scroll-margin-top: 100px;
}


.hero-buttons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.hero-btn {
  width: 178px;
  height: 54px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.hero-btn--windows {
  background: #008abc;
}

.hero-btn--mac {
  background: #181818;
}

.hero-bar-wrap {
  width: 850px;
  margin: 42px auto 0;
}

.hero-bar-image {
  width: 850px;
  height: 185px;
  object-fit: contain;
}

.hero-tiktok {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.hero-tiktok--left {
  width: 392px;
  height: 376px;
  left: -36px;
  top: 88px;
  object-fit: contain;
}

.hero-tiktok--right {
  width: 273px;
  height: 297px;
  right: 28px;
  top: 136px;
  object-fit: contain;
}

@media (max-width: 1280px) {
  .hero-nav {
    width: calc(100% - 48px);
  }

  .hero-tiktok--left {
    left: -70px;
    transform: scale(0.9);
    transform-origin: left top;
  }

  .hero-tiktok--right {
    right: -8px;
    transform: scale(0.9);
    transform-origin: right top;
  }
}

@media (max-width: 1024px) {
  .hero-shell {
    padding-top: 16px;
  }

  .hero-nav {
    width: calc(100% - 32px);
    height: auto;
    min-height: 72px;
    padding: 14px 22px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 14px;
  }

  .hero-nav__logo {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-content {
    padding-top: 44px;
    min-height: auto;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    max-width: 680px;
    font-size: 18px;
  }

  .hero-bar-wrap,
  .hero-bar-image {
    width: min(850px, calc(100% - 32px));
    height: auto;
  }

  .hero-tiktok--left,
  .hero-tiktok--right {
    opacity: 0.35;
  }
}

@media (max-width: 768px) {
  .hero-section {
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
  }

  .hero-shell {
    padding-top: 14px;
    padding-bottom: 34px;
  }

  .hero-nav {
    width: calc(100% - 24px);
    padding: 14px 18px;
    border-radius: 28px;
  }

  .hero-nav__link {
    font-size: 13px;
  }

  .hero-nav__logo img {
    width: 170px;
    height: auto;
  }

  .hero-content {
    padding-top: 28px;
  }

  .hero-center {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-buttons {
    margin-top: 28px;
    flex-direction: column;
    gap: 14px;
  }

  .hero-btn {
    width: 178px;
    height: 52px;
  }

  .hero-bar-wrap {
    margin-top: 30px;
  }

  .hero-tiktok--left {
    width: 220px;
    height: auto;
    left: -70px;
    top: 130px;
  }

  .hero-tiktok--right {
    width: 180px;
    height: auto;
    right: -42px;
    top: 170px;
  }
}

@media (max-width: 560px) {
  .hero-nav {
    gap: 10px 18px;
  }

  .hero-title {
    font-size: 29px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-tiktok--left,
  .hero-tiktok--right {
    display: none;
  }

  .hero-bar-wrap {
    width: calc(100% - 24px);
  }

  .hero-bar-image {
    width: 100%;
  }
}


.about-section {
  background: #181818;
  padding: 84px 0;
}

.about-wrapper {
  width: 1140px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.about-title {
  margin: 0 0 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
}

.about-title--center {
  text-align: center;
  margin-bottom: 48px;
}

.about-title__white {
  color: #ffffff;
}

.about-title__green {
  color: #92d83c;
}

.about-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.about-text {
  width: 100%;
  max-width: 470px;
}

.about-description {
  margin: 0 0 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  color: #ffffff;
}

.about-highlight {
  color: #92d83c;
}

.about-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.about-btn {
  width: 178px;
  height: 54px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.about-btn--windows {
  background: #008abc;
  color: #ffffff;
}

.about-btn--mac {
  background: #ffffff;
  color: #181818;
}

.about-visual {
  flex: 0 0 auto;
  width: 561px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-visual img {
  width: 561px;
  height: 268px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .about-wrapper {
    width: calc(100% - 48px);
  }

  .about-container {
    gap: 32px;
  }

  .about-text {
    max-width: 440px;
  }

  .about-visual {
    width: 500px;
  }

  .about-visual img {
    width: 500px;
    height: auto;
  }
}

@media (max-width: 900px) {
  .about-section {
    padding: 64px 0;
  }

  .about-wrapper {
    width: calc(100% - 32px);
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 36px;
  }

  .about-text {
    max-width: 680px;
  }

  .about-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-visual {
    width: 100%;
    justify-content: center;
  }

  .about-visual img {
    width: min(561px, 100%);
  }
}

@media (max-width: 560px) {
  .about-wrapper {
    width: calc(100% - 24px);
  }

  .about-title {
    font-size: 28px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-buttons {
    gap: 14px;
  }

  .about-btn {
    width: 160px;
    height: 50px;
  }
}





.how-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  border-radius: 72px;
  background: #101010;
}

.how-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.how-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.21;
  filter: blur(4px);
  transform: scale(1.04);
}

.how-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.how-wrapper {
  position: relative;
  z-index: 2;
  width: 1140px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.how-title {
  margin: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.how-title__green {
  color: #92d83c;
}

.how-title__white {
  color: #ffffff;
}

.how-subtitle {
  margin: 22px 0 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: #ffffff;
}

.how-content {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.how-steps {
  flex: 0 0 auto;
  width: 419px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.how-step {
  width: 419px;
  height: 63px;
  padding: 0 28px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #ffffff;

  background: rgba(26, 26, 26, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    inset 3px 3px 0.5px -3.5px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    color 0.45s ease,
    transform 0.35s ease,
    box-shadow 0.45s ease;
}

.how-step.is-active {
  background: #92d83c;
  border-color: #92d83c;
  color: #ffffff;
  box-shadow:
    0 10px 30px rgba(146, 216, 60, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.how-video-box {
  flex: 0 0 auto;
  width: 669px;
  height: 389px;
  border-radius: 34px;
  overflow: hidden;
  background: #d9d9d9;
}

.how-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== adaptive ===== */

@media (max-width: 1200px) {
  .how-wrapper {
    width: calc(100% - 48px);
  }

  .how-content {
    gap: 28px;
  }

  .how-steps,
  .how-step {
    width: 380px;
  }

  .how-video-box {
    width: 580px;
    height: 338px;
  }
}

@media (max-width: 980px) {
  .how-section {
    width: calc(100% - 32px);
    margin: 32px auto 0;
    padding: 60px 0 64px;
    border-radius: 42px;
  }

  .how-wrapper {
    width: calc(100% - 32px);
  }

  .how-content {
    flex-direction: column;
    align-items: center;
  }

  .how-steps {
    width: min(419px, 100%);
  }

  .how-step {
    width: 100%;
  }

  .how-video-box {
    width: min(669px, 100%);
    height: auto;
    aspect-ratio: 669 / 389;
  }
}

@media (max-width: 640px) {

  .how-section {
    width: calc(100% - 24px);
    margin: 24px auto 0;
    border-radius: 28px;
  }
  
  .how-title {
    font-size: 28px;
  }

  .how-subtitle {
    font-size: 17px;
  }

  .how-content {
    margin-top: 34px;
  }

  .how-step {
    height: 58px;
    padding: 0 20px;
    font-size: 14px;
  }

  .how-video-box {
    border-radius: 24px;
  }
}

.how-section-shell {
  width: 100%;
  max-width: 1440px;
  margin: 40px auto 0;
  padding: 0 32px;
}

@media (max-width: 980px) {
  .how-section-shell {
    margin-top: 32px;
    padding: 0 16px;
  }

  .how-section {
    padding: 60px 0 64px;
    border-radius: 42px;
  }
}

@media (max-width: 640px) {
  .how-section-shell {
    margin-top: 24px;
    padding: 0 12px;
  }

  .how-section {
    border-radius: 28px;
  }
}




.advantages-section {
  padding: 110px 20px 120px;
  background: #111111;
}

.advantages-shell {
  max-width: 1160px;
  margin: 0 auto;
}

.advantages-title {
  margin: 0 0 48px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.advantages-title span {
  color: #92d83c;
}

.advantages-title strong {
  color: #ffffff;
  font-weight: 800;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 561px);
  justify-content: center;
  gap: 26px 26px;
}

.advantages-grid .adv-card:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: center;
}

.adv-card {
  width: 561px;
  min-height: 134px;
  background: #212121;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 26px 20px 22px;
  box-sizing: border-box;
}

.adv-icon {
  flex-shrink: 0;
  width: 123px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.adv-icon img {
  display: block;
  max-width: 123px;
  max-height: 97px;
  width: auto;
  height: auto;
}

.adv-content h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  color: #92d83c;
}

.adv-content p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: #ffffff;
  opacity: 1;
}

@media (max-width: 640px) {
  .advantages-title {
    font-size: 26px;
  }

  .adv-card {
    width: 100%;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    gap: 18px;
  }

  .adv-icon {
    width: 100%;
    justify-content: flex-start;
  }
}



.limits-section {
  background: #282828;
  padding: 92px 0 104px;
}

.limits-shell {
  width: 1140px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.limits-title {
  margin: 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
}

.limits-subtitle {
  width: 100%;
  max-width: 920px;
  margin: 22px auto 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: #ffffff;
}

.limits-list {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.limits-card {
  width: 1140px;
  max-width: 100%;
  min-height: 128px;
  background: #212121;
  border-radius: 32px;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

.limits-card__icon {
  width: 104px;
  min-width: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.limits-card__icon img {
  display: block;
  max-width: 82px;
  max-height: 82px;
  width: auto;
  height: auto;
}

.limits-card__divider {
  width: 1px;
  height: 77px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 24px 0 0;
}

.limits-card__text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
  color: #ffffff;
  max-width: 860px;
}

@media (max-width: 980px) {
  .limits-section {
    padding: 72px 0 84px;
  }

  .limits-shell {
    max-width: calc(100% - 32px);
  }

  .limits-card {
    min-height: auto;
    padding: 24px 24px;
    align-items: flex-start;
  }

  .limits-card__text {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .limits-shell {
    max-width: calc(100% - 24px);
  }

  .limits-title {
    font-size: 28px;
  }

  .limits-subtitle {
    font-size: 17px;
  }

  .limits-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border-radius: 24px;
  }

  .limits-card__icon {
    width: auto;
    min-width: 0;
  }

  .limits-card__divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .limits-card__text {
    font-size: 17px;
  }
}

/* FAQ */

.faq-section {
  background: #111111;
  padding: 92px 0 110px;
}

.faq-shell {
  width: 1140px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-badge {
  width: 84px;
  height: 26px;
  border-radius: 999px;
  background: #92d83c;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  color: #111111;
}

.faq-title {
  margin: 18px 0 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.faq-title__white {
  color: #ffffff;
}

.faq-title__green {
  color: #92d83c;
}

.faq-subtitle {
  margin: 16px 0 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
  color: #ffffff;
}

.faq-grid {
  width: 100%;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 552px);
  justify-content: center;
  gap: 20px 20px;
}

.faq-card {
  width: 552px;
  min-height: 137px;
  background: #212121;
  border: 1px solid #424242;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 0 26px;
}

.faq-card__icon {
  width: 110px;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-card__icon img {
  width: auto;
  height: auto;
  max-width: 98px;
  max-height: 91px;
  display: block;
}

.faq-card__divider {
  width: 1px;
  height: 69px;
  background: #424242;
  margin-right: 18px;
}

.faq-card__content h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  color: #92d83c;
}

.faq-card__content p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}

.faq-cta {
  width: 946px;
  min-height: 99px;
  margin: 30px auto 0;
  padding: 0 24px 0 28px;
  background: #212121;
  border: 1px solid #424242;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-cta__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-cta__icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-cta__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.faq-cta__content h3 {
  margin: 0 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
}

.faq-cta__content p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}

.faq-cta__button {
  width: 259px;
  min-width: 259px;
  height: 55px;
  border-radius: 999px;
  background: #92d83c;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-cta__button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

@media (max-width: 1200px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-card {
    width: 100%;
  }

  .faq-cta {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .faq-shell {
    max-width: calc(100% - 32px);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-subtitle {
    font-size: 18px;
  }

  .faq-cta {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-cta__button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .faq-shell {
    max-width: calc(100% - 24px);
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 17px;
  }

  .faq-card {
    min-height: auto;
    padding: 22px;
  }

  .faq-card__icon {
    width: 92px;
    min-width: 92px;
  }

  .faq-card__divider {
    margin-right: 14px;
  }

  .faq-card__content h3 {
    font-size: 18px;
  }

  .faq-card__content p,
  .faq-cta__content p {
    font-size: 15px;
  }

  .faq-cta__content h3 {
    font-size: 18px;
  }
}





/* СТА */
.cta-download-section {
  background: radial-gradient(circle at center, #160c27 0%, #160c27 52%, #400283 100%);
  padding: 78px 0 96px;
}

.cta-download-shell {
  width: 1140px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-download-badge {
  width: 465px;
  max-width: 100%;
  height: 49px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(208, 180, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cta-download-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.cta-download-badge span {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #d0b4ff;
}

.cta-download-title {
  margin: 38px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-download-title__white {
  color: #ffffff;
}

.cta-download-title__pink {
  color: #ff17e0;
}

.cta-download-title__green {
  color: #92d83c;
}

.cta-download-subtitle {
  max-width: 780px;
  margin: 26px auto 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: #ffffff;
}

.cta-download-buttons {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

@media (max-width: 1024px) {
  .cta-download-title {
    font-size: 40px;
  }

  .cta-download-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .cta-download-section {
    padding: 64px 0 78px;
  }

  .cta-download-shell {
    max-width: calc(100% - 24px);
  }

  .cta-download-badge {
    width: 100%;
    min-height: 49px;
    height: auto;
    padding: 12px 18px;
  }

  .cta-download-badge span {
    font-size: 14px;
    line-height: 1.2;
  }

  .cta-download-title {
    margin-top: 28px;
    font-size: 34px;
    line-height: 1.08;
  }

  .cta-download-subtitle {
    margin-top: 20px;
    font-size: 17px;
  }

  .cta-download-buttons {
    margin-top: 30px;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .cta-download-title {
    font-size: 29px;
  }

  .cta-download-subtitle br {
    display: none;
  }
}






/* Footer */

.site-footer {
  background: #111111;
  padding: 34px 0 36px;
}

.site-footer__shell {
  width: 1140px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.site-footer__brand {
  flex: 0 0 auto;
  min-width: 163px;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo img {
  width: 163px;
  height: 33px;
  object-fit: contain;
}

.site-footer__copyright {
  margin: 18px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  color: #7e7e7e;
}

.site-footer__links {
  display: flex;
  align-items: flex-start;
  gap: 76px;
  flex: 1 1 auto;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__column h3 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.site-footer__column a {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  color: #7e7e7e;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__column a:last-child {
  margin-bottom: 0;
}

.site-footer__column a:hover {
  color: #ffffff;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .site-footer__shell {
    max-width: calc(100% - 32px);
    flex-direction: column;
    gap: 32px;
  }

  .site-footer__links {
    gap: 48px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 28px 0 30px;
  }

  .site-footer__shell {
    max-width: calc(100% - 24px);
    gap: 28px;
  }

  .site-footer__links {
    flex-direction: column;
    gap: 28px;
  }

  .site-footer__copyright {
    margin-top: 14px;
  }
}








