/* ═══════════════════════════════════════════════════════════════
   PRICING PAGE — Scoped Styles (.pr-*)
   Redesigned 2026-02-25 — Urbance Pricing Philosophy
   ═══════════════════════════════════════════════════════════════ */

.pr-page {
  --pr-blue:     #2F80ED;
  --pr-blue-lt:  #EAF2FF;
  --pr-blue-dk:  #1a6bd4;
  --pr-blue-mid: #4a9cf5;
  --pr-text:     #0f172a;
  --pr-muted:    #475569;
  --pr-light:    #94a3b8;
  --pr-border:   #e2e8f0;
  --pr-bg:       #f8fafc;
  --pr-white:    #ffffff;
  --pr-radius:   16px;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.pr-hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a8a 55%, #2F80ED 100%);
  padding: 148px 24px 108px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(96,165,250,.2) 0%, transparent 70%);
  pointer-events: none;
}

.pr-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(to bottom, transparent, var(--pr-bg));
  pointer-events: none;
}

.pr-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}

.pr-hero__badge svg { width: 13px; height: 13px; flex-shrink: 0; }

.pr-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 0 20px;
}

.pr-hero__title em {
  font-style: normal;
  color: #93c5fd;
}

.pr-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 38px;
}

.pr-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.pr-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .17s, box-shadow .17s, background .17s, border-color .17s;
  font-family: inherit;
}

.pr-hero__btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.pr-hero__btn--primary {
  background: #fff;
  color: #1d4ed8;
  box-shadow: 0 3px 14px rgba(0,0,0,.16);
}

.pr-hero__btn--primary:hover {
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

.pr-hero__btn--secondary {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.92);
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}

.pr-hero__btn--secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.46);
  color: #fff;
  transform: translateY(-2px);
}

.pr-hero__reassurance {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pr-hero__reassurance svg { width: 13px; height: 13px; color: #86efac; flex-shrink: 0; }

/* ─── SECTION SHARED ─────────────────────────────────────────── */
.pr-section {
  padding: 80px 24px;
  scroll-margin-top: 88px;
}

.pr-section--alt {
  background: var(--pr-bg);
}

.pr-section__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.pr-section__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-blue);
  margin-bottom: 12px;
}

.pr-section__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--pr-text);
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.pr-section__intro {
  font-size: 1rem;
  color: var(--pr-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 52px;
}

/* ─── HOW PRICING IS SET — 4 CARDS ──────────────────────────── */
.pr-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.pr-method-card {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}

.pr-method-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: #c7dcff;
}

.pr-method-card__icon {
  width: 44px;
  height: 44px;
  background: var(--pr-blue-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pr-method-card__icon svg { width: 20px; height: 20px; color: var(--pr-blue); }

.pr-method-card__title {
  font-size: .98rem;
  font-weight: 800;
  color: var(--pr-text);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}

.pr-method-card__text {
  font-size: .88rem;
  color: var(--pr-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── WHAT AFFECTS PRICE — 2 COLUMNS ────────────────────────── */
.pr-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pr-factors__col {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  padding: 36px 32px;
}

.pr-factors__col--clean {
  border-top: 3px solid var(--pr-blue);
}

.pr-factors__col--promise {
  border-top: 3px solid #22c55e;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.pr-factors__col-title {
  font-size: .98rem;
  font-weight: 800;
  color: var(--pr-text);
  margin: 0 0 20px;
  letter-spacing: -.01em;
}

.pr-factors__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pr-factors__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--pr-muted);
  line-height: 1.55;
}

.pr-factors__item-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pr-factors__col--clean .pr-factors__item-icon {
  background: var(--pr-blue-lt);
}

.pr-factors__col--clean .pr-factors__item-icon svg {
  width: 11px;
  height: 11px;
  color: var(--pr-blue);
}

.pr-factors__col--promise .pr-factors__item-icon {
  background: #dcfce7;
}

.pr-factors__col--promise .pr-factors__item-icon svg {
  width: 11px;
  height: 11px;
  color: #16a34a;
}

.pr-factors__col--promise .pr-factors__item {
  color: #166534;
  font-weight: 500;
}

/* ─── SERVICE CARDS ──────────────────────────────────────────── */
.pr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.pr-svc-card {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}

.pr-svc-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
  transform: translateY(-3px);
  border-color: #c7dcff;
}

.pr-svc-card__head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--pr-border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.pr-svc-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--pr-blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-svc-card__icon svg { width: 22px; height: 22px; color: var(--pr-blue); }

.pr-svc-card__name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--pr-text);
  margin: 0 0 3px;
  letter-spacing: -.01em;
}

.pr-svc-card__desc {
  font-size: .8rem;
  color: var(--pr-light);
  margin: 0;
  line-height: 1.45;
}

.pr-svc-card__body {
  padding: 22px 28px;
  flex: 1;
}

.pr-svc-card__model-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pr-light);
  margin-bottom: 12px;
}

.pr-svc-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pr-svc-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .85rem;
  color: var(--pr-muted);
  line-height: 1.5;
}

.pr-svc-card__bullets li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--pr-blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.pr-svc-card__foot {
  padding: 18px 28px 24px;
  border-top: 1px solid var(--pr-border);
}

.pr-svc-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: var(--pr-blue-lt);
  color: var(--pr-blue);
  font-size: .84rem;
  font-weight: 700;
  border-radius: 9px;
  text-decoration: none;
  transition: background .17s, color .17s, transform .17s;
  border: 1.5px solid rgba(47,128,237,.18);
  font-family: inherit;
}

.pr-svc-card__btn svg { width: 14px; height: 14px; }

.pr-svc-card__btn:hover {
  background: var(--pr-blue);
  color: #fff;
  border-color: var(--pr-blue);
  transform: translateY(-1px);
}

/* ─── PRICE CONFIRMATION PROMISE ─────────────────────────────── */
.pr-promise {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
  border-radius: 20px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(37,99,235,.3);
}

.pr-promise::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}

.pr-promise::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 40%;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}

.pr-promise__icon {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pr-promise__icon svg { width: 26px; height: 26px; color: #fff; }

.pr-promise__body {
  position: relative;
  z-index: 1;
}

.pr-promise__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}

.pr-promise__title {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.pr-promise__copy {
  font-size: .95rem;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin: 0 0 10px;
}

.pr-promise__note {
  font-size: .83rem;
  color: rgba(255,255,255,.62);
  line-height: 1.6;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.14);
}

/* ─── FAQ MINI ───────────────────────────────────────────────── */
.pr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  overflow: hidden;
  background: var(--pr-white);
}

.pr-faq-item {
  border-bottom: 1px solid var(--pr-border);
  border-left: 3px solid transparent;
  transition: border-color .18s;
}

.pr-faq-item:last-child { border-bottom: none; }

.pr-faq-item:hover { border-left-color: #93c5fd; }

.pr-faq-item.open { border-left-color: var(--pr-blue); }

.pr-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: .93rem;
  font-weight: 600;
  color: var(--pr-text);
  cursor: pointer;
  line-height: 1.5;
  transition: background .14s, color .14s;
}

.pr-faq-trigger:hover { background: var(--pr-bg); }

.pr-faq-item.open .pr-faq-trigger {
  background: #eff6ff;
  color: var(--pr-blue);
}

.pr-faq-chevron {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--pr-bg);
  border: 1px solid var(--pr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s, border-color .17s;
}

.pr-faq-chevron svg {
  width: 13px;
  height: 13px;
  color: var(--pr-light);
  transition: transform .22s;
}

.pr-faq-item.open .pr-faq-chevron {
  background: var(--pr-blue);
  border-color: var(--pr-blue);
}

.pr-faq-item.open .pr-faq-chevron svg {
  color: #fff;
  transform: rotate(180deg);
}

.pr-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s cubic-bezier(0,1,0,1);
}

.pr-faq-item.open .pr-faq-panel {
  max-height: 600px;
  transition: max-height .36s ease-in-out;
}

.pr-faq-panel__inner {
  padding: 14px 22px 20px;
  font-size: .9rem;
  color: var(--pr-muted);
  line-height: 1.75;
  border-top: 1px solid var(--pr-border);
}

.pr-faq-panel__inner a { color: var(--pr-blue); font-weight: 600; text-decoration: none; }
.pr-faq-panel__inner a:hover { text-decoration: underline; }

/* ─── PRE-FOOTER ─────────────────────────────────────────────── */
.pr-prefooter {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a8a 55%, #1e3a5f 100%);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pr-prefooter__bg-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.pr-prefooter__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.pr-prefooter__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.pr-prefooter__title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  line-height: 1.1;
}

.pr-prefooter__sub {
  font-size: .97rem;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin: 0 0 34px;
}

.pr-prefooter__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pr-prefooter__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: rgba(255,255,255,.88);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s, color .18s;
}

.pr-prefooter__link:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.32);
  color: #fff;
}

.pr-prefooter__link--primary {
  background: var(--pr-blue);
  border-color: var(--pr-blue);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(47,128,237,.3);
}

.pr-prefooter__link--primary:hover {
  background: var(--pr-blue-dk);
  border-color: var(--pr-blue-dk);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pr-factors { grid-template-columns: 1fr; }
  .pr-promise { grid-template-columns: 1fr; padding: 36px 32px; }
  .pr-promise__icon { display: none; }
}

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

@media (max-width: 600px) {
  .pr-hero { padding: 130px 20px 96px; }
  .pr-hero__title { font-size: 2rem; }
  .pr-hero__btn { width: 100%; justify-content: center; }
  .pr-section { padding: 56px 20px; }
  .pr-method-grid { grid-template-columns: 1fr; }
  .pr-factors__col { padding: 26px 22px; }
  .pr-promise { padding: 28px 22px; }
  .pr-prefooter { padding: 64px 20px; }
  .pr-faq-trigger { font-size: .87rem; padding: 15px 16px; }
  .pr-faq-panel__inner { padding: 12px 16px 18px; }
}
