/* =========================================================
   Stanizai Group — Pricing page
   Page-specific styles only. All colors/tokens come from
   styles.css (:root). No new design language introduced.
   ========================================================= */

/* ---------- Active nav link ---------- */
.nav__active { color: var(--text) !important; }
.nav__active::after { width: 100% !important; }

/* ===================== HERO ===================== */
.pricing-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(120px, 18vw, 180px);
  padding-bottom: clamp(56px, 9vw, 96px);
}
.pricing-hero__media { position: absolute; inset: 0; z-index: -1; }
.pricing-hero__media .grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.pricing-hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(216,180,106,.20), transparent 60%),
    radial-gradient(45% 40% at 0% 100%, rgba(216,180,106,.06), transparent 72%),
    linear-gradient(180deg, #120f0b 0%, var(--bg) 70%);
}

.pricing-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.pricing-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.pricing-hero__sub {
  margin-top: 22px;
  max-width: 52ch;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-muted);
}
.pricing-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ===================== PRICE CARDS ===================== */
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.price-card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(216,180,106,.12); color: var(--gold);
  margin-bottom: 22px;
}
.price-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.price-card__from {
  display: flex; flex-direction: column; gap: 2px;
  margin: 14px 0 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.price-card__label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--text-muted);
}
.price-card__amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.05;
  color: var(--gold);
}
.price-card__list {
  list-style: none; padding: 0;
  margin: 20px 0 24px;
  display: grid; gap: 10px;
}
.price-card__list li {
  font-size: 14px; color: var(--text-muted);
  padding-left: 24px; position: relative;
}
.price-card__list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.price-card__cta {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 500; font-size: 14px;
  color: var(--gold);
  display: inline-flex; gap: 6px;
  min-height: 44px; align-items: center;
  transition: gap .2s var(--ease);
}
.price-card__cta:hover { gap: 12px; }

.price-note {
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 70ch;
}
.price-note a { color: var(--gold); }
.price-note a:hover { color: var(--gold-bright); }

/* ===================== ADD-ONS ===================== */
.addon-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.addon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name  price"
    "benefit benefit";
  align-items: baseline;
  gap: 4px 14px;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.addon:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.addon__name {
  grid-area: name;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -0.01em;
}
.addon__benefit {
  grid-area: benefit;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}
.addon__price {
  grid-area: price;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  white-space: nowrap;
}

/* ===================== HOW IT WORKS ===================== */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.step:hover { border-color: var(--border-strong); background: var(--surface-2); }
.step__num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(216,180,106,.12);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600; font-size: 18px;
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em;
}
.step__desc {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ===================== FAQ ===================== */
.faq { max-width: 820px; }
.faq__list { display: grid; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 16.5px;
  letter-spacing: -0.01em;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; border-radius: var(--radius); }
.faq__q:hover { color: var(--gold); }
.faq__chev {
  flex: none; color: var(--text-muted);
  transition: transform .3s var(--ease), color .25s var(--ease);
}
.faq__item[open] .faq__chev { transform: rotate(180deg); color: var(--gold); }
.faq__a {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq__a a { color: var(--gold); }
.faq__a a:hover { color: var(--gold-bright); }
.faq__a strong { color: var(--text); font-weight: 600; }
.faq .section__lead a { color: var(--gold); }
.faq .section__lead a:hover { color: var(--gold-bright); }

/* ===================== CTA BAND ===================== */
.cta-band { padding-block: var(--section-y); }
.cta-band__inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 76px) clamp(24px, 5vw, 56px);
}
.cta-band__glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(55% 120% at 50% -10%, rgba(216,180,106,.18), transparent 60%),
    radial-gradient(40% 100% at 50% 120%, rgba(216,180,106,.08), transparent 60%);
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.cta-band__sub {
  margin: 16px auto 0;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: clamp(15px, 1.6vw, 18px);
}
.cta-band__cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 30px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .pricing-hero__sub { max-width: 100%; }
}

@media (max-width: 560px) {
  .price-cards { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .pricing-hero__cta .btn,
  .cta-band__cta .btn { flex: 1 1 auto; justify-content: center; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  .price-card, .addon, .step, .faq__item, .faq__chev, .price-card__cta { transition: none; }
}
