/* ============ Fonts: Involve (self-hosted, SIL OFL) ============ */
@font-face {
  font-family: 'Involve';
  src: url('../assets/fonts/Involve-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('../assets/fonts/Involve-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('../assets/fonts/Involve-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('../assets/fonts/Involve-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* ============ Tokens ============ */
:root {
  --blue: #398BFF;
  --blue-dark: #1655E4;
  --ink: #101c3d;
  --ink-soft: #4a5878;
  --bg: #ffffff;
  --bg-tint: #f2f7ff;
  --line: #e3ecfb;
  --radius: 20px;
  --grad: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  --shadow: 0 12px 40px rgba(22, 85, 228, 0.10);
  --font: 'Involve', 'Noto Sans Georgian', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1140px, 100% - 48px);
  margin-inline: auto;
}

/* ============ Header ============ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.25s;
}
.header.is-scrolled { box-shadow: 0 4px 24px rgba(16, 28, 61, 0.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__pic { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--blue-dark); }

.nav__cta {
  color: #fff !important;
  background: var(--grad);
  padding: 9px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(22, 85, 228, 0.30);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(22, 85, 228, 0.40); }

.header__controls { display: flex; align-items: center; gap: 14px; }

/* Language dropdown */
.lang-dd { position: relative; }
.lang-dd__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lang-dd__toggle:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(57, 139, 255, 0.18); }
.lang-dd__chev { transition: transform 0.25s; }
.lang-dd.is-open .lang-dd__chev { transform: rotate(180deg); }
.lang-dd__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 176px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(16, 28, 61, 0.14);
  padding: 6px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 110;
}
.lang-dd.is-open .lang-dd__menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-dd__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  border-radius: 9px;
  padding: 9px 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.lang-dd__item:hover { background: var(--bg-tint); }
.lang-dd__abbr {
  width: 32px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
}
.lang-dd__item.is-active { color: var(--blue-dark); font-weight: 600; }
.lang-dd__item.is-active .lang-dd__abbr { background: var(--grad); border-color: transparent; color: #fff; }
.lang-dd__item.is-active::after {
  content: '';
  margin-left: auto;
  width: 16px;
  height: 16px;
  background: var(--blue-dark);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 5 5L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 5 5L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn--white {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 10px 30px rgba(6, 22, 68, 0.25);
}
.btn--ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn--play {
  background: var(--ink);
  color: #fff;
  padding: 12px 26px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(16, 28, 61, 0.25);
}
.btn--play__text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.btn--play__text small { font-size: 11px; font-weight: 400; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.06em; }
.btn--play__text span { font-size: 18px; font-weight: 600; }

/* ============ Hero ============ */
.hero {
  position: relative;
  background: var(--grad);
  color: #fff;
  padding: 160px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
  top: -200px; right: -140px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
  bottom: -220px; left: -120px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  max-width: 480px;
  opacity: 0.92;
  margin-bottom: 32px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num { font-size: 32px; font-weight: 700; line-height: 1.1; }
.hero__stat-label { font-size: 13.5px; opacity: 0.85; max-width: 140px; }

/* Phone mockup */
.hero__visual { display: flex; justify-content: center; }
.phone {
  width: 260px;
  height: 520px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 40px 80px rgba(6, 22, 68, 0.35);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 30px;
  background: var(--grad);
  overflow: hidden;
}
.phone__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============ Sections ============ */
.section { padding: 96px 0; }
.section--tint { background: var(--bg-tint); }

.section__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  text-align: center;
}
.section__title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 17px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.section__subtitle--left { text-align: left; margin: 0 0 32px; }

/* Grid + cards */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--ink-soft); }

.card--big { padding: 38px 32px; }
.card--big h3 { font-size: 21px; }
.card--big p { font-size: 15.5px; }

.card__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--bg-tint);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon--grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 20px rgba(22, 85, 228, 0.30);
}

/* ============ Legal ============ */
.legal {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.legal .section__eyebrow,
.legal .section__title { text-align: left; }
.legal__no {
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 8px;
}
.legal__right p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 18px; }
.legal__list { margin-top: 26px; display: grid; gap: 14px; }
.legal__list li {
  position: relative;
  padding-left: 34px;
  font-size: 15.5px;
  font-weight: 500;
}
.legal__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad) ;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m8.5 12 2.5 2.5 5-5.5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m8.5 12 2.5 2.5 5-5.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============ Policy banner ============ */
.policy {
  background: var(--grad);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.policy::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  top: -260px; left: 50%;
  transform: translateX(-50%);
}
.policy__inner { position: relative; text-align: center; max-width: 820px; margin-inline: auto; }
.policy__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
}
.policy__slogan {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.policy__text { font-size: 17px; opacity: 0.92; margin-bottom: 36px; }
.policy__badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.policy__badge {
  font-size: 14.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  padding: 10px 22px;
}

/* ============ Download ============ */
.download__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}
.download__content .section__eyebrow,
.download__content .section__title { text-align: left; }
.download__note { font-size: 13.5px; color: var(--ink-soft); margin-top: 16px; }

.download__visual { display: flex; justify-content: center; }
.download__circle {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.download__circle::before,
.download__circle::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1.5px dashed rgba(57, 139, 255, 0.35);
  animation: spin 30s linear infinite;
}
.download__circle::after { inset: -60px; border-color: rgba(57, 139, 255, 0.18); animation-duration: 50s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.download__circle img { width: 185px; height: auto; filter: drop-shadow(0 18px 32px rgba(22, 85, 228, 0.35)); }

/* ============ TV version ============ */
.tv__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}
.tv__content .section__eyebrow,
.tv__content .section__title { text-align: left; }
.tv__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-dark);
  background: #e6efff;
  border: 1px solid #cadeff;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.tv__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.tv__text { font-size: 17px; color: var(--ink-soft); max-width: 480px; }

.tv__frame {
  background: var(--ink);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(16, 28, 61, 0.22);
}
.tv__screen {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #eaf2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv__screen img { width: 90px; height: auto; }
.tv__neck {
  width: 46px; height: 22px;
  background: #0c1631;
  margin: 0 auto;
}
.tv__base {
  width: 150px; height: 10px;
  background: #0c1631;
  border-radius: 999px;
  margin: 0 auto;
}

/* ============ Trust numbers ============ */
.trust { padding: 84px 0 8px; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 44px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.trust__item { display: flex; flex-direction: column; gap: 4px; }
.trust__num {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust__label { font-size: 14px; color: var(--ink-soft); }

/* ============ App screens gallery ============ */
.screens__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.screens__item {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(16, 28, 61, 0.14);
  transition: transform 0.25s, box-shadow 0.25s;
}
.screens__item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 54px rgba(22, 85, 228, 0.22);
}

/* ============ Future products ============ */
.product { position: relative; }
.product__soon {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: #e6efff;
  border: 1px solid #cadeff;
  border-radius: 999px;
  padding: 5px 12px;
}

/* ============ Partners lead form ============ */
.partners__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.section__eyebrow--left, .section__title--left { text-align: left; }
.partners__text { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 22px; }
.partners__contact a {
  font-size: 17px;
  font-weight: 600;
  color: var(--blue-dark);
}
.partners__contact a:hover { text-decoration: underline; }
.partners__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}
.partners__field {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.partners__field::placeholder { color: #8b98b8; }
.partners__field:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(57, 139, 255, 0.18);
  background: #fff;
}
.partners__field--area { resize: vertical; min-height: 110px; }
.btn--grad {
  justify-content: center;
  background: var(--grad);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(22, 85, 228, 0.32);
}
.partners__done { font-size: 14px; color: var(--blue-dark); }

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: #c6d2ea;
  padding: 56px 0 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.logo--footer .logo__pic { height: 46px; padding: 9px 13px; background: #fff; border-radius: 12px; }
.footer__tagline { font-size: 14px; margin-top: 12px; opacity: 0.75; }
.footer__company { max-width: 420px; display: flex; flex-direction: column; gap: 8px; }
.footer__company p { font-size: 13.5px; line-height: 1.55; opacity: 0.8; }
.footer__company a { color: #fff; font-weight: 500; }
.footer__company a:hover { text-decoration: underline; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14.5px; transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { padding: 22px 0; font-size: 13px; opacity: 0.6; }

/* ============ Legal pages (privacy / terms) ============ */
.page {
  padding: 140px 0 90px;
  max-width: 760px;
}
.page__back {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 28px;
}
.page__back:hover { text-decoration: underline; }
.page h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; }
.page__updated { font-size: 14px; color: var(--ink-soft); margin-bottom: 40px; }
.page h2 { font-size: 20px; font-weight: 600; margin: 34px 0 10px; }
.page p { font-size: 16px; color: var(--ink-soft); }
.page__text { font-size: 16px; color: var(--ink-soft); }
.page__text ul { margin: 10px 0 14px; padding-left: 24px; }
.page__text li { list-style: disc; margin-bottom: 6px; }
.page__text b { color: var(--ink); font-weight: 600; }
.page__text a { color: var(--blue-dark); font-weight: 500; }
.page__text a:hover { text-decoration: underline; }

/* ============ Delete account page ============ */
.page--delete { max-width: 860px; }

.del-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.del-meta span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
}

.del-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 30px;
  margin-bottom: 44px;
}
.del-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.del-card__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(22, 85, 228, 0.30);
}
.del-card__head h2 { font-size: 21px; font-weight: 600; margin: 0; }

.del-form { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.del-field { display: flex; flex-direction: column; gap: 7px; }
.del-field__label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.del-form__hint { font-size: 13px; color: var(--ink-soft); }
.del-form__done {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-dark);
  background: #e6efff;
  border: 1px solid #cadeff;
  border-radius: 12px;
  padding: 12px 15px;
}

.del-table-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow-x: auto;
  margin: 16px 0 10px;
}
.del-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 14.5px; }
.del-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg-tint);
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}
.del-table td {
  padding: 14px 18px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.del-table td:first-child { color: var(--ink); font-weight: 500; }
.del-table tr:last-child td { border-bottom: none; }

.del-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 5px 12px;
  white-space: nowrap;
}
.del-tag--del { color: #b42318; background: #fef3f2; border: 1px solid #fecdca; }
.del-tag--keep { color: #a15c07; background: #fffaeb; border: 1px solid #fedf89; }
.del-tag--none { color: #067647; background: #ecfdf3; border: 1px solid #abefc6; }

.del-warn {
  background: #fff8f7;
  border: 1px solid #fecdca;
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-top: 16px;
}
.del-warn ul { display: grid; gap: 11px; }
.del-warn li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-soft); }
.del-warn li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 17px; height: 17px;
  background: #d92d20;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M15 9l-6 6M9 9l6 6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M15 9l-6 6M9 9l6 6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.del-steps { display: grid; gap: 14px; margin-top: 16px; }
.del-steps li {
  display: flex;
  gap: 18px;
  align-items: baseline;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
}
.del-steps b { flex: 0 0 190px; font-size: 14.5px; font-weight: 700; color: var(--blue-dark); }
.del-steps span { font-size: 15px; color: var(--ink-soft); }

.del-help { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.del-help a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.del-help a:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(57, 139, 255, 0.18);
  transform: translateY(-1px);
}

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .partners__inner { grid-template-columns: 1fr; gap: 36px; }
  .screens__row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
  }
  .screens__item { width: 240px; flex-shrink: 0; scroll-snap-align: start; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__visual { margin-top: 24px; }
  .legal { grid-template-columns: 1fr; gap: 24px; }
  .download__inner { grid-template-columns: 1fr; }
  .download__visual { margin-top: 32px; }
  .tv__inner { grid-template-columns: 1fr; gap: 40px; }
  .tv__visual { order: 2; max-width: 420px; margin-inline: auto; width: 100%; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(16, 28, 61, 0.12);
    padding: 12px 24px 20px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 13px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .nav__cta { text-align: center; margin-top: 12px; border-radius: 14px; }
  .burger { display: flex; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 36px); }
  .section { padding: 68px 0; }
  .hero { padding: 130px 0 64px; }
  .grid--4, .grid--3 { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  .phone { width: 220px; height: 440px; }
  .logo__pic { height: 26px; }
  .lang-dd__toggle { padding: 7px 11px; font-size: 12.5px; }
  .trust__grid { grid-template-columns: 1fr; padding: 34px 24px; }
  .partners__form { padding: 26px 20px; }
  .del-card { padding: 26px 20px; }
  .del-warn { padding: 20px 18px; }
  .del-steps li { flex-direction: column; gap: 6px; padding: 16px 18px; }
  .del-steps b { flex: none; }
}
