.hero {
  padding: 72px 0 56px 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
  align-items: center;
}

.hero__badge {
  margin-bottom: var(--space-3);
}

.hero__title {
  margin: 0 0 var(--space-3) 0;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-0);
}

.hero__subtitle {
  margin: 0 0 var(--space-4) 0;
  color: var(--text-2);
  font-size: 17px;
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-strip {
  margin-top: var(--space-4);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__art {
  justify-self: end;
}

.phone-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 420px;
}

.phone-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.steps {
  margin-top: var(--space-5);
}

.steps .card__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-0);
  color: #fff;
  font-weight: 850;
  font-size: 13px;
}

.screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.screen {
  overflow: hidden;
}

.screen__cap {
  padding: 14px 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--bg-1) 92%, transparent);
  font-weight: 750;
  color: var(--text-0);
  letter-spacing: -0.02em;
}

.screen__img {
  padding: 16px;
  background: color-mix(in srgb, var(--bg-0) 55%, var(--bg-1));
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  align-items: stretch;
}

.price-card {
  padding: var(--space-4);
}

.price-card--featured {
  background: linear-gradient(135deg, rgba(11, 91, 211, 0.98), rgba(47, 125, 242, 0.98));
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.price-card--featured .card__title,
.price-card--featured .price {
  color: #fff;
}

.price {
  margin: 10px 0 0 0;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-0);
}

.price small {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
}

.price-card--featured .price small {
  color: rgba(255, 255, 255, 0.82);
}

.bullets {
  margin: var(--space-4) 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: inherit;
  opacity: 0.92;
}

.bullets li::before {
  content: "✓";
  font-weight: 900;
  color: var(--success-0);
}

.price-card--featured .bullets li::before {
  color: rgba(255, 255, 255, 0.9);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--warning-0) 20%, transparent);
  color: color-mix(in srgb, var(--warning-0) 80%, var(--text-0));
  font-weight: 850;
  font-size: 12px;
  border: 1px solid color-mix(in srgb, var(--warning-0) 35%, transparent);
}

.price-card--featured .badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid color-mix(in srgb, var(--border) 90%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--bg-1) 92%, transparent);
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 780;
  color: var(--text-0);
  letter-spacing: -0.02em;
}

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

.faq__answer {
  padding: 0 16px 16px 16px;
  color: var(--text-2);
}

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

  .hero__art {
    justify-self: start;
  }

  .hero__title {
    font-size: 44px;
  }

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

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

