.pricing {
  background: var(--blue-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(242,106,31,.18), transparent 40%),
    radial-gradient(circle at 10% 85%, rgba(26,79,209,.35), transparent 45%);
  pointer-events: none;
}
.pricing .wrap { position: relative; z-index: 2; }
.pricing h2.section-title { color: #fff; }
.pricing h2.section-title .accent-soft { color: var(--orange-soft); }
.pricing .section-head .eyebrow { color: var(--orange-soft); background: rgba(242,106,31,.1); }
.pricing .section-head .eyebrow::before { background: var(--orange-soft); }
.pricing .section-head p { color: rgba(255,255,255,.7); }

.price-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
}
.price-card {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.35);
}
.price-card .ribbon {
  position: absolute; top: -12px; left: 32px;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
}
.price-card .label {
  font-size: 13px; color: var(--ink-muted); margin-bottom: 6px; font-weight: 500;
}
.price-card h3 {
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em; margin: 0 0 24px;
}
.price-big {
  display: flex; align-items: baseline; gap: 8px; padding-bottom: 6px;
}
.price-big .amt {
  font-size: 88px; font-weight: 700;
  letter-spacing: -0.04em; line-height: .9;
}
.price-sub {
  font-size: 13px; color: var(--ink-muted);
  margin: 6px 0 28px; font-weight: 500;
}
.price-list {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: grid; gap: 12px;
}
.price-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
  font-size: 15px; color: var(--ink);
}
.price-list .tick {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-size: 11px;
  margin-top: 2px;
}
.price-cta { width: 100%; justify-content: center; }

.price-notes { padding: 12px 0 0; }
.price-notes h3 {
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.1; font-weight: 700; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 18px;
}
.price-notes h3 em { font-style: normal; color: var(--orange-soft); }
.price-notes p { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.78); margin: 0 0 16px; max-width: 32em; }
.price-notes p strong { color: #fff; font-weight: 600; }

.guarantee {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex; gap: 14px; align-items: center;
  background: rgba(255,255,255,.04);
}
.guarantee .seal {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-weight: 700;
  flex-shrink: 0;
}
.guarantee strong { display: block; color: #fff; margin-bottom: 2px; font-size: 15px; }
.guarantee span { font-size: 13px; color: rgba(255,255,255,.65); }

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