.article {
  padding: clamp(18px, 3vw, 34px);
}

.card.article {
  width: min(1120px, 100%);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(89, 158, 255, 0.18);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(9, 12, 24, 0.72);
  font-size: 13px;
  font-weight: 600;
}

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

.breadcrumb a:hover {
  color: rgba(9, 12, 24, 0.9);
  text-decoration: underline;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(89, 158, 255, 0.18);
  background: rgba(158, 209, 255, 0.18);
  color: rgba(9, 12, 24, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.article h1 {
  margin: 0 auto 12px;
  max-width: 820px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-align: center;
}

.hero-lead {
  margin: 0 auto 18px;
  max-width: 820px;
  text-align: center;
  color: rgba(9, 12, 24, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin: 0 0 22px;
}

.nav-cta,
.hero-cta,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0f152d, #090d1f);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(89, 158, 255, 0.32);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-cta svg,
.cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-cta {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
}

.nav-cta svg {
  display: block;
}

.intro-block {
  margin: 18px 0 10px;
}

.who-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.who-list li {
  margin: 0;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(89, 158, 255, 0.16);
  background: rgba(255, 255, 255, 0.65);
}

.screenshot-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin: 18px 0 8px;
}

.shot {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 12px 0 6px;
}

.reason-card {
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(89, 158, 255, 0.16);
  background: rgba(255, 255, 255, 0.65);
  min-width: 0;
}

.reason-icon {
  display: inline-flex;
  font-size: 20px;
  margin-bottom: 8px;
}

.reason-card h3 {
  margin: 0 0 6px;
}

.reason-card p {
  margin: 0;
}

.compare-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 12px 0 0;
  border-radius: 18px;
  border: 1px solid rgba(89, 158, 255, 0.14);
  background: rgba(255, 255, 255, 0.65);
}

.compare-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-wrap th,
.compare-wrap td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(89, 158, 255, 0.14);
  vertical-align: middle;
}

.compare-wrap th {
  font-size: 13px;
  letter-spacing: 0.01em;
  color: rgba(9, 12, 24, 0.78);
  background: rgba(158, 209, 255, 0.14);
}

.compare-wrap tr:last-child td {
  border-bottom: none;
}

.highlight-row td {
  background: rgba(158, 209, 255, 0.12);
}

.check {
  color: rgba(52, 199, 89, 0.95);
  font-weight: 900;
}

.cross {
  color: rgba(255, 59, 48, 0.9);
  font-weight: 900;
}

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

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(89, 158, 255, 0.16);
  background: rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px;
  cursor: pointer;
  font: inherit;
  color: rgba(9, 12, 24, 0.9);
  font-weight: 800;
  text-align: left;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  stroke: rgba(9, 12, 24, 0.66);
}

.faq-a {
  display: none;
  padding: 0 14px 14px;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.bottom-cta {
  margin-top: 22px;
  padding: 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(89, 158, 255, 0.18);
  background: rgba(158, 209, 255, 0.18);
  text-align: center;
}

.bottom-cta h2 {
  margin-top: 0;
}

.bottom-cta p {
  margin: 6px 0 14px;
}

@media (max-width: 920px) {
  .reasons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .who-list {
    grid-template-columns: 1fr;
  }

  .screenshot-row {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }
}
