@import url("/services/service.css");

.prices-hero {
  min-height: 390px;
  padding: 90px max(20px, calc((100% - 980px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #fff 15%, var(--purple-soft));
}
.prices-hero h1 { margin: 14px 0; font-size: clamp(48px, 7vw, 78px); line-height: 1.15; letter-spacing: -.05em; }
.prices-hero h1 em { color: var(--purple); font-style: normal; }
.prices-hero p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 2; }
.prices-section { width: min(1050px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0 110px; }
.prices-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 35px; }
.prices-heading h2 { margin: 8px 0 0; font-size: clamp(30px, 4vw, 44px); }
.prices-heading > p { max-width: 510px; margin: 0; color: var(--muted); line-height: 1.9; }
.price-status { min-height: 110px; display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--muted); }
.spinner { width: 22px; height: 22px; border: 3px solid var(--purple-soft); border-top-color: var(--purple); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.price-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.price-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 18px 45px rgba(62, 40, 76, .06); }
.price-card-header { display: flex; align-items: center; gap: 14px; padding: 20px 22px; background: var(--purple-soft); }
.price-card-header img { width: 52px; height: 52px; object-fit: contain; }
.price-card-header h2 { margin: 0; font-size: 20px; }
.price-list { margin: 0; padding: 0; list-style: none; }
.price-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; padding: 15px 22px; border-top: 1px solid var(--line); }
.price-row:first-child { border-top: 0; }
.price-name { display: flex; flex-direction: column; gap: 4px; font-size: 14px; font-weight: 800; }
.price-category { color: var(--muted); font-size: 11px; font-weight: 600; }
.price-value { direction: rtl; color: var(--purple-dark); font-size: 15px; font-weight: 900; white-space: nowrap; }
.prices-cta { width: min(1120px, calc(100% - 40px)); margin: 0 auto 90px; padding: 48px 55px; display: flex; justify-content: space-between; align-items: center; gap: 30px; border-radius: 32px; color: #fff; background: linear-gradient(135deg, var(--purple-dark), var(--purple)); }
.prices-cta h2 { margin: 8px 0; font-size: clamp(28px, 4vw, 42px); }
.prices-cta p { margin: 0; color: rgba(255,255,255,.82); }
@media (max-width: 760px) {
  .prices-hero { min-height: 330px; padding-top: 65px; padding-bottom: 65px; }
  .prices-heading, .prices-cta { align-items: flex-start; flex-direction: column; }
  .price-groups { grid-template-columns: 1fr; }
  .prices-cta { padding: 35px 28px; }
}
