.pricing-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  padding: 30px clamp(20px, 4vw, 48px) 54px;
}

.pricing-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.96;
}

.pricing-intro p {
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.35;
}

.pricing-proof {
  display: grid;
  gap: 4px;
  margin: 24px 0;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
}

.pricing-proof strong {
  color: var(--ink);
}

.pricing-proof span {
  color: var(--muted);
}

.pricing-content {
  display: grid;
  gap: 22px;
}

.pricing-legend {
  display: flex;
  justify-content: center;
  gap: 0;
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pricing-legend span {
  padding: 14px 24px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.pricing-legend span:last-child {
  border-right: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 18px;
}

.price-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.05);
}

.price-card h2 {
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.22rem;
  text-align: center;
  text-transform: uppercase;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  text-align: left;
}

.price-table th {
  color: var(--ink);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.price-table td:nth-child(2),
.price-table td:nth-child(3),
.price-table td:nth-child(4),
.price-table th:nth-child(2),
.price-table th:nth-child(3),
.price-table th:nth-child(4) {
  text-align: right;
  white-space: nowrap;
}

.price-table strong {
  color: var(--ink);
}

.request-row-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 12px;
  border: 1px solid var(--orange);
  background: var(--white);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.request-row-button:hover {
  background: #fff1e8;
}

.pricing-status {
  min-height: 24px;
  margin: 0;
  color: var(--orange-dark);
  font-weight: 850;
  text-align: center;
}

.pricing-note,
.pricing-extra {
  border: 1px solid rgba(255, 101, 15, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.pricing-note h2,
.pricing-extra strong {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.4rem;
}

.pricing-note p,
.pricing-extra span {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.45;
}

.pricing-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pricing-extra span {
  color: var(--orange);
  font-size: 2.4rem;
  font-weight: 950;
}

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
  }
}

@media (max-width: 820px) {
  .pricing-shell,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-legend,
  .pricing-extra {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-legend span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
