﻿:root {
  --bg: #fcf9fb;
  --bg-soft: #fffdfd;
  --surface: #ffffff;
  --surface-soft: #fff8fb;
  --navy: #252251;
  --text: #413f68;
  --muted: #74718e;
  --pink: #ff4f84;
  --pink-2: #ff6a98;
  --line: #f0dbe4;
  --shadow: 0 18px 45px rgba(43, 28, 83, .08);
  --shadow-soft: 0 12px 28px rgba(43, 28, 83, .06);
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, rgba(255, 235, 242, .9), transparent 24%), linear-gradient(180deg, #fffefe 0%, #fbf7fb 100%);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240,219,228,.85);
}
.header__inner {
  min-height: 92px; display: flex; align-items: center; gap: 24px; justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; gap: 14px; }
.logo__mark { width: 56px; height: 56px; border-radius: 16px; overflow: hidden; box-shadow: 0 14px 28px rgba(255,79,132,.25); flex-shrink: 0; }
.logo__mark img { width: 100%; height: 100%; object-fit: cover; }
.logo__text { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.logo__text small { font-size: 13px; font-weight: 700; color: var(--muted); }
.logo__text strong { font-family: 'DM Sans', sans-serif; font-size: 34px; color: var(--pink); letter-spacing: -.03em; }
.logo__text strong span { color: var(--navy); }
.nav { display: flex; align-items: center; gap: 40px; }
.nav a { font-weight: 600; color: #615d7d; }
.nav a:hover { color: var(--navy); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 22px; border-radius: 15px; font-weight: 700; border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--pink-2), var(--pink)); color: #fff; box-shadow: 0 14px 28px rgba(255,79,132,.22); }
.btn--secondary { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-soft); }
.btn--ghost { min-width: 78px; background: #fff; color: var(--navy); border-color: var(--line); }
.btn--white { background: #fff; color: var(--pink); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.store-pill { font-weight: 800; }
.burger { display: none; width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line); background: #fff; padding: 0; }
.burger span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px auto; border-radius: 3px; }

.hero { padding: 46px 0 30px; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 36px; align-items: center; }
.eyebrow { margin: 0 0 14px; font-size: 23px; font-weight: 700; color: var(--pink); }
.hero h1 { margin: 0; font-family: 'DM Sans', sans-serif; font-size: clamp(44px, 4.7vw, 74px); line-height: .96; letter-spacing: -.045em; color: var(--navy); }
.hero h1 span { display: block; color: var(--pink); margin-top: 8px; }
.hero__text { margin: 22px 0 0; max-width: 620px; font-size: 18px; line-height: 1.82; color: var(--muted); }
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.stores { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.store-card { min-width: 160px; padding: 14px 16px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.store-card span { display: block; font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.store-card strong { display: block; margin-top: 6px; font-size: 20px; color: var(--navy); }
.store-card--android { background: linear-gradient(135deg, var(--pink-2), var(--pink)); }
.store-card--android span, .store-card--android strong { color: #fff; }
.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stat b { display: block; font-family: 'DM Sans', sans-serif; font-size: 32px; color: var(--navy); }
.stat span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.hero__visual { background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,250,.96)); padding: 8px; border-radius: 32px; box-shadow: 0 28px 70px rgba(242,127,161,.18); }
.hero__visual img { width: 100%; border-radius: 26px; }

.section { padding: 56px 0; }
.section--light { background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,249,251,.88)); }
.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2 { margin: 0; font-family: 'DM Sans', sans-serif; font-size: clamp(34px, 3.2vw, 54px); line-height: 1.06; color: var(--navy); letter-spacing: -.03em; }
.section-title h2 em { font-style: normal; color: var(--pink); }
.section-title span { display: inline-block; width: 64px; height: 5px; border-radius: 999px; background: linear-gradient(90deg, var(--pink-2), var(--pink)); margin-top: 14px; }
.section-action { display: flex; justify-content: center; margin-top: 30px; }

.legal-hero {
  padding: 62px 0 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,249,251,.9));
}
.legal-hero__inner {
  max-width: 900px;
}
.legal-hero h1 {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.04;
  color: var(--navy);
  letter-spacing: -.03em;
}
.legal-hero p {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}
.legal-content {
  padding: 34px 0 70px;
}
.legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.legal-document h2 {
  margin: 34px 0 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  line-height: 1.15;
  color: var(--navy);
}
.legal-document h2:first-child { margin-top: 0; }
.legal-document p,
.legal-document li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.legal-document p { margin: 0 0 16px; }
.legal-document ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-document a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.audience-grid, .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card, .review-card, .feature-card, .service-card, .faq-item { background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.audience-card { padding: 26px 22px 28px; text-align: center; }
.audience-card__image { width: 126px; height: 126px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; background: #fff3f0; }
.audience-card__image img { width: 100%; height: 100%; object-fit: cover; }
.audience-card p { margin: 0; font-size: 21px; line-height: 1.45; font-weight: 600; color: var(--navy); }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { position: relative; padding: 22px 20px 24px; }
.feature-card img { width: 92px; height: 92px; object-fit: contain; margin-bottom: 18px; }
.feature-card__num { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--pink-2), var(--pink)); color: #fff; font-weight: 800; box-shadow: 0 10px 16px rgba(255,79,132,.18); }
.feature-card h3 { margin: 0 0 12px; font-family: 'DM Sans', sans-serif; font-size: 27px; line-height: 1.14; color: var(--navy); letter-spacing: -.02em; }
.feature-card p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { display: grid; grid-template-columns: 48% 52%; overflow: hidden; }
.service-card__image { padding: 18px 0 18px 18px; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.service-card__content { padding: 24px 24px 24px 18px; }
.service-card__badge { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--pink-2), var(--pink)); margin-bottom: 16px; }
.service-card h3 { margin: 0 0 12px; font-family: 'DM Sans', sans-serif; font-size: clamp(25px, 2.6vw, 32px); line-height: 1.08; color: var(--navy); }
.service-card h3 a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  white-space: nowrap;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.service-card h3 a:hover {
  color: var(--navy);
  text-decoration-color: var(--navy);
}
.service-card p { margin: 0; font-size: 16px; line-height: 1.72; color: var(--muted); }

.review-card { padding: 22px; }
.review-stars { color: #ffbf2e; font-size: 25px; letter-spacing: .08em; margin-bottom: 14px; }
.review-card__top { display: flex; align-items: flex-start; gap: 14px; }
.review-card__top img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-card__top p { margin: 0; font-size: 18px; line-height: 1.58; color: var(--navy); }
.review-card b { display: block; margin-top: 16px; color: var(--navy); font-size: 17px; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.faq-column { display: grid; gap: 16px; }
.faq-item { padding: 0 20px; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 700; color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: '+'; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #fff2f7; color: var(--pink); font-weight: 800; }
.faq-item[open] summary::before { content: '\2013'; }
.faq-item p { margin: 0; padding: 0 0 22px 40px; font-size: 16px; line-height: 1.72; color: var(--muted); }

.cta { padding: 52px 0; background: linear-gradient(135deg, #ff4e83 0%, #ff6695 52%, #ff5a89 100%); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px); background-size: 18px 18px; opacity: .35; transform: translateX(-20%); }
.cta__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; align-items: center; }
.cta__content h2 { margin: 0 0 16px; font-family: 'DM Sans', sans-serif; font-size: clamp(34px, 3.2vw, 52px); line-height: 1.06; color: #fff; }
.cta__content p { margin: 0; color: rgba(255,255,255,.9); font-size: 18px; line-height: 1.76; max-width: 560px; }
.cta__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.cta__links { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.cta__links a { color: rgba(255,255,255,.92); font-weight: 600; }
.cta__media { display: flex; justify-content: flex-end; }
.cta__media img { max-width: 520px; width: 100%; }

.footer { background: #1d1c49; color: #fff; padding: 18px 0 24px; }
.footer__inner { display: flex; justify-content: space-between; gap: 24px; align-items: flex-end; }
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.logo--footer .logo__text small { color: rgba(255,255,255,.72); }
.logo--footer .logo__text strong { color: var(--pink); }
.logo--footer .logo__text strong span { color: #fff; }
.footer__domain { color: rgba(255,255,255,.72); font-weight: 600; padding-left: 70px; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { color: rgba(255,255,255,.92); font-weight: 600; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .nav { gap: 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .faq-grid, .cta__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .header__inner { min-height: 78px; }
  .burger { display: inline-block; }
  .nav { display: none; position: absolute; top: 76px; left: 20px; right: 20px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 18px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .nav.nav--open { display: flex; }
  .header__actions { margin-left: auto; }
  .hero__grid, .audience-grid, .review-grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__domain { padding-left: 0; }
}
@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .hero { padding-top: 28px; }
  .logo__mark { width: 48px; height: 48px; }
  .logo__text strong { font-size: 28px; }
  .header__actions .store-pill { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .service-card__image { padding: 18px 18px 0; }
  .service-card__content { padding: 18px 20px 22px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
  .review-card__top { flex-direction: column; }
  .review-card__top img { width: 72px; height: 72px; }
  .faq-item p { padding-left: 0; }
  .section, .cta { padding: 42px 0; }
  .legal-document { padding: 24px 18px; }
}

