:root {
  --bg: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-tertiary: #F0F0F0;
  --text: #1A1A1A;
  --text-secondary: #888;
  --text-tertiary: #999;
  --text-muted: #BBB;
  --accent: #5E76FF;
  --accent-hover: #4c63e6;
  --card-border: rgba(0, 0, 0, 0.06);
  --feature-check: #5E76FF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F0F0F;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #252525;
    --text: #F0F0F0;
    --text-secondary: #A0A0A0;
    --text-tertiary: #808080;
    --text-muted: #555;
    --card-border: rgba(255, 255, 255, 0.08);
    --feature-check: #8B9DFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: -apple-system, 'SF Pro', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, color 0.3s;
}

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

ul, li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  width: 100%;
  height: 72px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 300;
  transition: background 0.3s;
}

.header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.logo__text {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-tertiary);
  transition: color 0.2s;
  border-radius: 8px;
}

.nav__link:hover {
  color: var(--accent);
}

.btn-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9px 16px;
  gap: 8px;
  background: var(--accent);
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-header:hover {
  opacity: 0.9;
}

.btn-header svg,
.btn-header img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__link {
  font-weight: 500;
  font-size: 24px;
  color: var(--text);
  padding: 16px 32px;
  border-radius: 16px;
  transition: color 0.2s;
}

.mobile-nav__link:hover {
  color: var(--accent);
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px 0;
  gap: 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  max-width: 500px;
  flex-shrink: 0;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-weight: 400;
  font-size: 26px;
  line-height: 1.25;
  color: var(--text-secondary);
}

.hero__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.hero__image img {
  max-width: 700px;
  width: 100%;
  height: auto;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  align-content: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 500px;
}

.download-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 18px;
  gap: 16px;
  border-radius: 18px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s;
}

.download-btn:hover {
  opacity: 0.85;
}

.download-buttons .download-btn:first-child {
  width: 100%;
  background: var(--accent);
}

.download-buttons .download-btn:first-child .download-btn__label {
  color: rgba(255, 255, 255, 0.5);
}

.download-buttons .download-btn:first-child .download-btn__platform {
  color: #FFFFFF;
}

.download-buttons .download-btn:first-child .download-btn__icon img {
  filter: brightness(0) invert(1);
}

.download-buttons .download-btn:not(:first-child) {
  flex: 1;
  min-width: 200px;
  background: var(--bg-tertiary);
}

.download-buttons .download-btn:not(:first-child) .download-btn__label {
  color: var(--text-tertiary);
}

.download-buttons .download-btn:not(:first-child) .download-btn__platform {
  color: var(--text);
}

.download-btn__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-btn__icon svg,
.download-btn__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-btn__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.download-btn__label {
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
}

.download-btn__platform {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
}

.features {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.features__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features__title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.features__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.feature-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}

.feature-card__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text);
}

.feature-card__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.steps {
  width: 100%;
  background: var(--bg-secondary);
  transition: background 0.3s;
}

.steps__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.steps__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.steps__title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.steps__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 800px;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step-card__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text);
}

.step-card__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.stats {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 700px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stat-card__number {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat-card__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.reviews {
  width: 100%;
  background: var(--bg-secondary);
  transition: background 0.3s;
}

.reviews__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.reviews__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews__title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.reviews__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.review-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: #FFB800;
  font-size: 16px;
}

.review-card__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__name {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}

.review-card__date {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
}

.download-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  gap: 48px;
}

.download-section__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  text-align: center;
}

.download-section__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.download-section__subtitle {
  font-weight: 400;
  font-size: 26px;
  line-height: 1.25;
  color: var(--text-secondary);
}

.download-section .download-buttons {
  justify-content: center;
}

.pricing {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  flex: 1;
}

.pricing__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pricing__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.pricing__cards {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}

.pricing-card {
  flex: 1;
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.2s, background 0.3s;
  position: relative;
}

.pricing-card--popular {
  background: var(--accent);
}

.pricing-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-weight: 500;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.3;
}

.pricing-card__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text);
}

.pricing-card--popular .pricing-card__name {
  color: #FFFFFF;
}

.pricing-card__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-tertiary);
}

.pricing-card--popular .pricing-card__desc {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__amount {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pricing-card--popular .pricing-card__amount {
  color: #FFFFFF;
}

.pricing-card__period {
  font-weight: 400;
  font-size: 15px;
  color: var(--text-tertiary);
}

.pricing-card--popular .pricing-card__period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pricing-card__feature {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card--popular .pricing-card__feature {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card__feature::before {
  content: '\2713';
  font-weight: 600;
  font-size: 13px;
  color: var(--feature-check);
  flex-shrink: 0;
}

.pricing-card--popular .pricing-card__feature::before {
  color: #FFFFFF;
}

.pricing-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

.pricing-card__btn:hover {
  opacity: 0.85;
}

.pricing-card .pricing-card__btn {
  background: var(--accent);
  color: #FFFFFF;
}

.pricing-card--popular .pricing-card__btn {
  background: #FFFFFF;
  color: var(--accent);
}

.pricing__note {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.pricing__support-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.pricing__support-link:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

.pricing__loading {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-tertiary);
  text-align: center;
  padding: 40px 0;
}

.help {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  flex: 1;
}

.help__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.help__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.help__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.help__content {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

.faq__item {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.3s;
}

.faq__question {
  width: 100%;
  padding: 18px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}

.faq__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item.active .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer-inner {
  padding: 0 20px 18px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq__answer-inner a {
  color: var(--accent);
}

.help__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.help__contacts-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: var(--text);
}

.help__contacts-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.help__contacts-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.help__contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s;
}

.help__contact-btn:hover {
  opacity: 0.85;
}

.help__contact-btn--tg {
  background: var(--accent);
  color: #FFFFFF;
}

.help__contact-btn--email {
  background: var(--bg-tertiary);
  color: var(--text);
}

.privacy {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.privacy__title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.privacy__updated {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
}

.privacy__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy__section h2 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text);
}

.privacy__section p,
.privacy__section li {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.privacy__section ul {
  padding-left: 20px;
}

.privacy__section li {
  list-style: disc;
  margin-bottom: 4px;
}

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

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  margin-top: 48px;
}

.footer__inner {
  width: 100%;
  max-width: 1200px;
  background: var(--bg-secondary);
  border-radius: 32px 32px 0 0;
  padding: 36px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  transition: background 0.3s;
}

.footer__about {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 300px;
}

.footer__about-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-tertiary);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--text);
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__links-list a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.footer__links-list a:hover {
  color: var(--accent);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contacts-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--text);
}

.footer__contacts-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__contacts-list a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.footer__contacts-list a:hover {
  color: var(--accent);
}

.footer__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--card-border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer__bottom a {
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: var(--accent);
}

@media (max-width: 1060px) {
  .hero {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
  }

  .hero__content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hero__text {
    align-items: center;
  }

  .hero__image {
    justify-content: center;
  }

  .hero__image img {
    max-width: 520px;
  }

  .download-buttons {
    max-width: 500px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero__image {
    display: none;
  }

  .hero__title,
  .download-section__title,
  .pricing__title,
  .help__title {
    font-size: 40px;
  }

  .hero__subtitle,
  .download-section__subtitle {
    font-size: 20px;
  }

  .features__title,
  .steps__title,
  .reviews__title {
    font-size: 34px;
  }

  .pricing__cards {
    flex-direction: column;
  }

  .pricing,
  .help {
    padding: 48px 24px;
    gap: 36px;
  }

  .features,
  .stats {
    padding: 48px 24px;
    gap: 36px;
  }

  .steps__inner,
  .reviews__inner {
    padding: 48px 24px;
    gap: 36px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
    border-radius: 24px 24px 0 0;
  }

  .footer__about {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .burger {
    display: flex;
  }

  .nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header {
    height: 60px;
  }

  .header__inner {
    padding: 0 16px;
  }

  .mobile-nav {
    top: 60px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero__title,
  .download-section__title,
  .pricing__title,
  .help__title {
    font-size: 32px;
  }

  .hero__subtitle,
  .download-section__subtitle {
    font-size: 18px;
  }

  .features__title,
  .steps__title,
  .reviews__title {
    font-size: 28px;
  }

  .hero__content {
    gap: 28px;
  }

  .download-section {
    gap: 28px;
    padding: 40px 16px;
  }

  .pricing,
  .help {
    padding: 36px 16px;
    gap: 28px;
  }

  .features,
  .stats {
    padding: 36px 16px;
    gap: 28px;
  }

  .steps__inner,
  .reviews__inner {
    padding: 36px 16px;
    gap: 28px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-card__number {
    font-size: 36px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-card__amount {
    font-size: 32px;
  }

  .help__contacts-title {
    font-size: 20px;
  }

  .download-btn {
    padding: 14px 16px;
    gap: 14px;
    border-radius: 14px;
  }

  .download-buttons .download-btn:not(:first-child) {
    min-width: 100%;
  }

  .download-btn__icon {
    width: 34px;
    height: 34px;
  }

  .download-btn__platform {
    font-size: 18px;
  }

  .download-btn__label {
    font-size: 12px;
  }

  .logo__icon {
    width: 28px;
    height: 28px;
  }

  .logo__text {
    font-size: 18px;
  }

  .footer {
    padding: 0 16px;
    margin-top: 40px;
  }

  .privacy {
    padding: 36px 16px;
    gap: 24px;
  }

  .privacy__title {
    font-size: 28px;
  }
}

.download-buttons .download-btn:not(:first-child) .download-btn__icon img {
  filter: brightness(0) opacity(0.7);
}

@media (prefers-color-scheme: dark) {
  .download-buttons .download-btn:not(:first-child) .download-btn__icon img {
    filter: brightness(0) invert(1);
  }
}
