/* =============================================================
   PRICING — Two-card pricing tier layout
   ============================================================= */

#pricing {
  padding: 7rem 0 8rem;
}

.pr-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--edge);
}

.pr-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pr-hdr .s-tag { justify-content: center; }
.pr-hdr .s-sub { margin-left: auto; margin-right: auto; }

/* ── Grid ──────────────────────────────────────────────────── */

.pr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

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

/* ── Pricing Card ──────────────────────────────────────────── */

.pr-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 2.8rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pr-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 141, 0.35);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45),
              0 0 30px rgba(255, 45, 141, 0.12);
}

.pr-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
}

.pr-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.35);
  letter-spacing: 0.05em;
  margin-bottom: 1.3rem;
}

/* ── Price block ───────────────────────────────────────────── */

.pr-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pr-from {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(170, 185, 230, 0.55);
  font-family: var(--font-display);
  flex-basis: 100%;
  margin-bottom: 0.3rem;
}

.pr-amt {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--pink);
  text-shadow: 0 0 22px rgba(255, 45, 141, 0.55);
  line-height: 1;
}

.pr-unit {
  font-size: 0.85rem;
  color: rgba(170, 185, 230, 0.65);
  letter-spacing: 0.05em;
}

/* ── Feature list ──────────────────────────────────────────── */

.pr-feats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pr-feats li {
  font-size: 0.95rem;
  color: rgba(200, 210, 240, 0.78);
  line-height: 1.55;
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
}

.pr-feats li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
  font-size: 0.85rem;
}

/* ── Footer note ───────────────────────────────────────────── */

.pr-note {
  text-align: center;
  margin-top: 2.8rem;
  font-size: 0.95rem;
  color: rgba(170, 185, 230, 0.65);
}

.pr-note a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 240, 255, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.pr-note a:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* ── Tagline under card title ──────────────────────────────── */
.pr-tagline {
  font-size: 0.95rem;
  color: rgba(200, 210, 240, 0.7);
  line-height: 1.45;
  margin: 0.4rem 0 1.6rem;
  font-style: italic;
}

/* ── Section headers within a card ────────────────────────── */
.pr-feat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 1.6rem 0 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.35);
}
.pr-feat-label:first-of-type {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

/* ── Featured card (Multi-Page, pink glow) ────────────────── */
.pr-card-featured {
  border-color: rgba(255, 45, 141, 0.35);
  background: linear-gradient(180deg, rgba(255, 45, 141, 0.04) 0%, rgba(255, 255, 255, 0.02) 60%);
}
.pr-card-featured:hover {
  border-color: rgba(255, 45, 141, 0.55);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45),
              0 0 40px rgba(255, 45, 141, 0.20);
}
.pr-card-featured .pr-feat-label {
  color: var(--pink);
  text-shadow: 0 0 6px rgba(255, 45, 141, 0.35);
}
.pr-card-featured .pr-feats li::before {
  color: var(--pink);
  text-shadow: 0 0 8px rgba(255, 45, 141, 0.6);
}

/* ── Marketing card (purple glow) ─────────────────────────── */
.pr-card-marketing {
  border-color: rgba(168, 85, 247, 0.35);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.04) 0%, rgba(255, 255, 255, 0.02) 60%);
}
.pr-card-marketing:hover {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45),
              0 0 40px rgba(168, 85, 247, 0.20);
}
.pr-card-marketing .pr-feat-label {
  color: var(--purple);
  text-shadow: 0 0 6px rgba(168, 85, 247, 0.35);
}
.pr-card-marketing .pr-feats li::before {
  color: var(--purple);
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

/* ── Badges (Most popular / Get found on Google) ──────────── */
.pr-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--pink);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(255, 45, 141, 0.45);
}
.pr-badge-blue {
  background: var(--purple);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.45);
}

/* ── Price Comparison Section ─────────────────────────────── */
.cmp-hdr {
  text-align: center;
  margin-bottom: 3rem;
}
.cmp-sub {
  font-size: 1rem;
  color: rgba(170, 185, 230, 0.65);
  margin-top: 0.75rem;
  font-style: italic;
}

.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

.cmp-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(170, 185, 230, 0.5);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cmp-label:first-of-type { border-top: none; padding-top: 0; }

.cmp-col {
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.cmp-col-them {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}
.cmp-col-us {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.08);
}

.cmp-city {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(170, 185, 230, 0.5);
  font-family: var(--font-display);
  margin-bottom: 0.6rem;
}

.cmp-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.cmp-price span {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.6;
}
.cmp-price-them {
  color: rgba(200, 210, 240, 0.45);
  text-decoration: line-through;
  text-decoration-color: rgba(200,210,240,0.25);
}
.cmp-price-us {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.5);
}

.cmp-save {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255, 45, 141, 0.4);
  margin-top: 0.5rem;
}

.cmp-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(170, 185, 230, 0.4);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .cmp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cmp-label {
    grid-column: 1 / -1;
  }
}
