:root {
  --bg: #f4f4f4;
  --surface: #ffffff;
  --ink: #151515;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --lime: #b7ff3c;
  --black: #101010;
  --yellow-soft: #fff3be;
  --lilac-soft: #d5c8ff;
  --rose-soft: #f8d7d1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.ru-locale {
  font-family: "Manrope", "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.header {
  position: relative;
  padding: 14px 0;
  background: linear-gradient(to bottom, rgba(244, 244, 244, 0.96), rgba(244, 244, 244, 0.8));
}

.nav-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: #4b4b4b;
  font-size: 0.95rem;
}

.nav-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch a {
  font-size: 0.8rem;
  font-weight: 700;
  color: #626262;
  border-radius: 999px;
  padding: 7px 10px;
}

.lang-switch a.active {
  color: #121212;
  background: #f1f1f1;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: #fff;
  border-radius: 999px;
  padding: 8px 10px 8px 15px;
  font-size: 0.85rem;
  font-weight: 700;
}

.btn-download .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #111;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 36px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 10ch;
}

.hero p {
  margin: 18px 0 0;
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 48ch;
}

.store-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-btn {
  background: linear-gradient(135deg, #d8ff63 0%, #b7ff3c 100%);
  color: #101010;
  border: 1px solid #9ee22f;
  box-shadow: 0 12px 26px rgba(139, 201, 46, 0.34);
  border-radius: 999px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-1px);
}

.store-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #101010;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.ring {
  position: absolute;
  width: min(560px, 100%);
  aspect-ratio: 1/1;
  border: 1px dashed #dadada;
  border-radius: 50%;
}

.ring::before,
.ring::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
}

.ring::after {
  inset: 20%;
}

.phone {
  position: relative;
  z-index: 2;
  width: clamp(220px, 34vw, 320px);
  max-width: 100%;
  border-radius: 36px;
  border: 0;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.32);
}

.phone img {
  width: 100%;
  height: auto;
}

.phone-wrap.hero-fan {
  min-height: 0;
}

.hero-fan .ring {
  width: min(660px, 100%);
}

.fan-stage {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
  aspect-ratio: 66 / 76;
}

.fan-shot {
  position: absolute;
  width: min(38%, 250px);
  min-width: 140px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.35);
  transform-origin: center center;
}

.fan-shot img {
  width: 100%;
  height: auto;
}

.fan-shot.center {
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 34px 68px rgba(0, 0, 0, 0.42);
}

.fan-shot.left {
  left: 19%;
  bottom: 3%;
  transform: translateX(-50%) rotate(-15deg);
  z-index: 2;
}

.fan-shot.right {
  left: 81%;
  bottom: 3%;
  transform: translateX(-50%) rotate(15deg);
  z-index: 1;
}

.section-head.left {
  margin: 0;
  text-align: left;
}

.stacked-splits {
  display: grid;
  gap: 42px;
}

.module-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.module-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-shot {
  border-radius: 16px;
  overflow: hidden;
  background: #080815;
}

.module-shot img {
  width: 100%;
  aspect-ratio: 9/20;
  object-fit: cover;
  object-position: top center;
}

.module-copy h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.module-copy p {
  margin: 8px 0 0;
  color: #5c5c5c;
  font-size: 0.95rem;
}

.module-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f5f5f5;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.intent-box {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(18px, 3vw, 28px);
}

.intent-box h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.12;
}

.intent-note {
  margin: 10px 0 0;
  color: #5f5f5f;
}

.intent-list {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intent-list a,
.intent-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f5f5f5;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.ratings {
  padding-top: 8px;
}

.ratings-grid {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ratings-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: 0.95rem;
  color: #4f4f4f;
}

.ratings-card strong {
  color: #171717;
}

.section-head {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.8vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.feature-cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card-soft {
  border-radius: 24px;
  padding: 24px;
}

.card-soft h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
}

.card-soft p {
  margin: 0;
  color: #454545;
}

.tone-yellow {
  background: var(--yellow-soft);
}

.tone-lilac {
  background: var(--lilac-soft);
}

.tone-rose {
  background: var(--rose-soft);
}

.badge-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.inline-link {
  margin-top: 14px;
  display: inline-block;
  background: #0f0f0f;
  color: #fff;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.76rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 44px;
}

.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split.reverse .split-text {
  order: 1;
}

.split.reverse .phone-wrap {
  order: 2;
}

.split-text h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.split-text p {
  margin: 14px 0 0;
  color: #5a5a5a;
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1b1b1b;
  font-weight: 700;
}

.value-box {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #f0f0f0;
  padding: clamp(20px, 4vw, 34px);
}

.value-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.value-top h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
}

.stat strong {
  display: block;
  font-size: 1.15rem;
}

.stat span {
  color: #666;
  font-size: 0.9rem;
}

.dark-band {
  margin-top: 18px;
  background: #060606;
  color: #fff;
  border-radius: 26px;
}

.dark-inner {
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
  align-items: center;
}

.person {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.person img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.14);
}

.quote {
  margin: 0;
  color: #dbdbdb;
}

.quote strong {
  display: block;
  color: #fff;
  margin-bottom: 9px;
  font-size: 1.12rem;
}

.blog-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.article img {
  width: 100%;
  aspect-ratio: 9/20;
  object-fit: cover;
}

.article-body {
  padding: 16px;
}

.article-date {
  color: #686868;
  font-size: 0.83rem;
}

.article h3 {
  margin: 8px 0 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 14px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 8px 0 0;
  color: #646464;
}

.footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: #616161;
  font-size: 0.9rem;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-cta strong {
  display: block;
  font-size: 0.9rem;
}

.mobile-cta > div > span {
  display: block;
  color: #666;
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.reverse,
  .feature-cards,
  .ratings-grid,
  .stats,
  .dark-inner,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split.reverse .split-text,
  .split.reverse .phone-wrap {
    order: initial;
  }

  .hero-grid {
    align-items: start;
  }

  .phone-wrap {
    min-height: 380px;
  }

  .phone-wrap.hero-fan {
    min-height: 0;
  }

  .fan-stage {
    width: min(580px, 100%);
  }

  .fan-shot {
    width: min(39%, 220px);
  }

  .fan-shot.center {
    bottom: 24px;
  }

  .fan-shot.left {
    left: 22%;
    bottom: 2%;
    transform: translateX(-50%) rotate(-12deg);
  }

  .fan-shot.right {
    left: 78%;
    bottom: 2%;
    transform: translateX(-50%) rotate(12deg);
  }

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

  .nav-links {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 26px));
  }

  .hero-grid,
  .split,
  .split.reverse,
  .feature-cards,
  .ratings-grid,
  .stats,
  .dark-inner,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }

  .nav-shell {
    border-radius: 18px;
  }

  .phone-wrap {
    min-height: 340px;
  }

  .phone-wrap.hero-fan {
    min-height: 0;
  }

  .hero-fan .ring {
    display: none;
  }

  .fan-stage {
    width: min(430px, 100%);
  }

  .fan-shot {
    width: min(42%, 182px);
    min-width: 124px;
    border-radius: 24px;
  }

  .fan-shot.center {
    bottom: 24px;
  }

  .fan-shot.left {
    left: 24%;
    bottom: 14px;
    transform: translateX(-50%) rotate(-9deg);
  }

  .fan-shot.right {
    left: 76%;
    bottom: 14px;
    transform: translateX(-50%) rotate(9deg);
  }

  .nav-right {
    gap: 7px;
  }

  .nav-right .btn-download {
    display: none;
  }

  .mobile-cta .btn-download {
    display: inline-flex;
  }

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

  .mobile-cta {
    display: flex;
  }

  .footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 420px) {
  .nav-right .btn-download {
    display: none;
  }
}
