/* /listings-app/public/assets/prices.css */

.page-prices {
  --prices-ink: #141414;
  --prices-muted: rgba(20, 20, 20, 0.68);
  --prices-line: rgba(20, 20, 20, 0.1);
  --prices-soft: #faf7f1;
  --prices-card: rgba(255, 255, 255, 0.86);
  --prices-red: #9b1c22;
  --prices-red-dark: #751217;
  --prices-gold: #c9a15b;
  --prices-green: #1f7a59;
}

.prices-shell {
  gap: 48;
}

.prices-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 0 34px 30px;
  overflow: hidden;
  margin-top: -40px;
}

.prices-hero__copy {
  position: relative;
  z-index: 2;
}

.prices-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 8px 13px;
  border: 1px solid rgba(155, 28, 34, 0.16);
  border-radius: 999px;
  color: var(--prices-red);
  background: rgba(155, 28, 34, 0.06);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.prices-hero__title {
  margin: 18px 0 0;
  color: var(--prices-ink);
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.prices-hero__title span,
.prices-hero__title strong {
  display: block;
}

.prices-hero__title strong {
  color: var(--prices-red);
  letter-spacing: -0.06em;
  margin-top: 10px;
}

.prices-hero__subtitle {
  width: min(690px, 100%);
  margin: 22px 0 0;
  color: var(--prices-muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
  font-weight: 450;
}

.prices-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 15px 10px 11px;
  border-radius: 18px;
  border: 1px solid rgba(31, 122, 89, 0.16);
  background: rgba(31, 122, 89, 0.07);
  color: #174b39;
  font-size: 14px;
  font-weight: 800;
}

.prices-free-badge span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--prices-green);
  font-size: 18px;
  line-height: 1;
}

.prices-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.prices-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.prices-btn:hover {
  transform: translateY(-1px);
}

.prices-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--prices-red), var(--prices-red-dark));
  box-shadow: 0 16px 34px rgba(117, 18, 23, 0.18);
}

.prices-btn--secondary,
.prices-btn--ghost {
  color: var(--prices-ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--prices-line);
  box-shadow: 0 12px 26px rgba(20, 20, 20, 0.06);
}

.prices-hero__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.prices-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.72;
}

.prices-hero__orb--one {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 161, 91, 0.34), rgba(201, 161, 91, 0));
}

.prices-hero__orb--two {
  width: 240px;
  height: 240px;
  transform: translate(90px, 70px);
  background: radial-gradient(circle, rgba(155, 28, 34, 0.24), rgba(155, 28, 34, 0));
}

.prices-usage-card {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  padding: 22px;
  border: 1px solid rgba(20, 20, 20, 0.09);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 70px rgba(20, 20, 20, 0.12);
  backdrop-filter: blur(18px);
}

.prices-usage-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.prices-usage-card__top span {
  color: var(--prices-red);
  font-weight: 900;
  letter-spacing: 0.1em;
  font-size: 13px;
}

.prices-usage-card__top strong {
  color: var(--prices-ink);
  font-size: 22px;
}

.prices-usage-card__line {
  height: 1px;
  background: var(--prices-line);
  margin-bottom: 10px;
}

.prices-usage-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  color: var(--prices-muted);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}

.prices-usage-card__row strong {
  color: var(--prices-green);
}

.prices-usage-card__row.is-muted strong {
  color: var(--prices-red);
}

.prices-section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.prices-section-head h2 {
  margin: 0;
  color: var(--prices-ink);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.prices-section-head p {
  margin: 12px 0 0;
  color: var(--prices-muted);
  font-size: 17px;
  line-height: 1.65;
}

.prices-tools,
.prices-how,
.prices-access,
.prices-note {
  padding: 34px;
}

.prices-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.prices-tool-card,
.prices-how-card,
.prices-access-box,
.prices-note {
  border: 1px solid var(--prices-line);
  border-radius: 26px;
  background: var(--prices-card);
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.055);
}

.prices-tool-card {
  padding: 20px;
  min-height: 190px;
}

.prices-tool-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  border-radius: 999px;
  margin-bottom: 16px;
  color: var(--prices-red);
  background: rgba(155, 28, 34, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.prices-tool-card h3,
.prices-how-card h3,
.prices-access-box h3,
.prices-note h2 {
  margin: 0;
  color: var(--prices-ink);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.prices-tool-card p,
.prices-how-card p,
.prices-access-box p,
.prices-note p {
  margin: 10px 0 0;
  color: var(--prices-muted);
  font-size: 14px;
  line-height: 1.65;
}

.prices-how__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.prices-how-card {
  padding: 22px;
}

.prices-how-card__step {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(155, 28, 34, 0.11), rgba(201, 161, 91, 0.18));
  color: var(--prices-red);
  font-weight: 900;
}

.prices-access {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.25fr);
  gap: 18px;
  align-items: start;
}

.prices-access__copy {
  padding: 8px 0;
}

.prices-access__copy h2 {
  margin: 0;
  color: var(--prices-ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.prices-access__copy p {
  margin: 12px 0 0;
  color: var(--prices-muted);
  font-size: 16px;
  line-height: 1.7;
}

.prices-access-box {
  padding: 24px;
}

.prices-access-box .prices-btn {
  margin-top: 18px;
}

.prices-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(31, 122, 89, 0.08);
  color: #174b39;
  font-size: 13px;
  font-weight: 800;
}

.prices-table-wrap {
  width: 100%;
  margin-top: 18px;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--prices-line);
}

.prices-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.74);
}

.prices-table th,
.prices-table td {
  padding: 14px 16px;
  text-align: start;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  font-size: 14px;
}

.prices-table th {
  color: var(--prices-ink);
  background: rgba(20, 20, 20, 0.035);
  font-weight: 900;
}

.prices-table td {
  color: var(--prices-muted);
}

.prices-table td strong {
  color: var(--prices-red);
}

.prices-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 12px 34px 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(155, 28, 34, 0.065), rgba(201, 161, 91, 0.095));
}

.prices-note p {
  max-width: 760px;
}

html[dir="rtl"] .prices-hero__title {
  letter-spacing: -0.035em;
}

html[dir="rtl"] .prices-tool-card,
html[dir="rtl"] .prices-how-card,
html[dir="rtl"] .prices-access__copy,
html[dir="rtl"] .prices-access-box,
html[dir="rtl"] .prices-note {
  text-align: right;
}

@media (max-width: 980px) {
  .prices-hero {
    grid-template-columns: 1fr;
    padding: 34px 22px 22px;
  }

  .prices-hero__visual {
    min-height: 280px;
  }

  .prices-tools,
  .prices-how,
  .prices-access {
    padding: 28px 22px;
  }

  .prices-tools__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prices-access {
    grid-template-columns: 1fr;
  }

  .prices-note {
    margin: 12px 22px 34px;
  }
}

@media (max-width: 680px) {
  .prices-hero {
    gap: 14px;
  }

  .prices-hero__title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .prices-hero__actions,
  .prices-note {
    flex-direction: column;
    align-items: stretch;
  }

  .prices-btn {
    width: 100%;
  }

  .prices-tools__grid,
  .prices-how__grid {
    grid-template-columns: 1fr;
  }

  .prices-tool-card {
    min-height: 0;
  }

  .prices-hero__visual {
    display: none;
  }

  .prices-tools,
  .prices-how,
  .prices-access {
    padding: 24px 14px;
  }

  .prices-note {
    margin: 10px 14px 28px;
    padding: 20px;
  }
}




