/* ── Page-level overrides ── */
body { background: var(--d-bg); color: var(--d-text); }

/* Accent: violet */
:root { --accent: #8B5CF6; --accent2: #A78BFA; --accent-dim: rgba(139,92,246,.12); }

/* ── HERO ── */
.detail-hero {
  background: var(--d-bg);
  padding: 140px 5vw 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(139,92,246,.13) 0%, transparent 70%);
  pointer-events: none;
}
.detail-hero .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .18; pointer-events: none; }
.detail-hero .o1 { width: 420px; height: 420px; background: #8B5CF6; top: -120px; left: -80px; }
.detail-hero .o2 { width: 300px; height: 300px; background: #F59E0B; bottom: -60px; right: -60px; }
.detail-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--d-muted);
  margin-bottom: 1.5rem;
  font-family: 'Instrument Sans', sans-serif;
}
.detail-breadcrumb a { color: #A78BFA; text-decoration: none; }
.detail-breadcrumb a:hover { text-decoration: underline; }
.detail-hero-h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  background: linear-gradient(100deg, #8B5CF6 0%, #A78BFA 45%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.detail-hero-sub {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--d-muted);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.hero-badge {
  background: var(--accent-dim);
  border: 1px solid rgba(139,92,246,.25);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: #A78BFA;
  letter-spacing: .01em;
}
.hero-badge-cta {
  background: #8B5CF6;
  color: #fff;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  padding: .95rem 1.9rem;
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: .97rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.hero-badge-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(139,92,246,.45); }

/* ── PRICING SECTION ── */
.pricing-section { background: var(--l-bg); padding: 80px 5vw 90px; }
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-header .sec-eyebrow { color: #8B5CF6; }
.pricing-header .sec-eyebrow::before { background: #8B5CF6; }
.pricing-header .sec-title { color: var(--l-text); }
.pricing-header .sec-sub-center { color: var(--l-muted); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.price-card {
  background: var(--l-surface);
  border: 1.5px solid var(--l-border);
  border-radius: var(--r-xl);
  padding: 2rem 1.8rem 2.2rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,.1); }
.price-card.featured {
  border-color: #8B5CF6;
  box-shadow: 0 0 0 1px rgba(139,92,246,.3), 0 20px 48px rgba(139,92,246,.1);
}
.price-card.featured:hover { box-shadow: 0 0 0 1px rgba(139,92,246,.4), 0 28px 64px rgba(139,92,246,.18); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #8B5CF6, #A78BFA);
  color: #fff;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.price-tier-label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8B5CF6;
  margin-bottom: .6rem;
}
.price-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--l-text);
  margin-bottom: .4rem;
  line-height: 1.2;
}
.price-desc {
  font-size: .88rem;
  color: var(--l-muted);
  line-height: 1.55;
  margin-bottom: 1.4rem;
  font-family: 'Instrument Sans', sans-serif;
  min-height: 52px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--l-border);
}
.price-from { font-size: .8rem; color: var(--l-muted); font-family: 'Instrument Sans', sans-serif; }
.price-value {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--l-text);
  line-height: 1;
}
.price-value.custom-price { font-size: 1.8rem; color: #8B5CF6; }
.price-currency { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--l-muted); margin-bottom: .4rem; }
.price-period { font-size: .78rem; color: var(--l-muted); font-family: 'Instrument Sans', sans-serif; margin-left: .15rem; }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--l-text);
  font-family: 'Instrument Sans', sans-serif;
  line-height: 1.45;
}
.price-features li .chk {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: #8B5CF6;
  margin-top: .1rem;
}
.price-features li.dim .chk { background: rgba(139,92,246,.07); border-color: rgba(139,92,246,.2); color: #A78BFA; }
.price-features li.dim { color: var(--l-muted); }
.price-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: .85rem 1rem;
  border-radius: var(--r-md);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
}
.price-cta.primary { background: #8B5CF6; color: #fff; box-shadow: 0 4px 18px rgba(139,92,246,.3); }
.price-cta.primary:hover { background: #A78BFA; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,92,246,.45); }
.price-cta.ghost { background: transparent; color: var(--l-text); border: 1.5px solid var(--l-border); }
.price-cta.ghost:hover { border-color: #8B5CF6; color: #8B5CF6; transform: translateY(-2px); }
.pricing-note { text-align: center; margin-top: 2rem; font-size: .85rem; color: var(--l-muted); font-family: 'Instrument Sans', sans-serif; }
.pricing-note strong { color: var(--l-text); }

/* ── WHAT'S INCLUDED ── */
.included-section { background: var(--d-bg); padding: 80px 5vw; }
.included-inner { max-width: 1100px; margin: 0 auto; }
.included-header { text-align: center; margin-bottom: 3rem; }
.compare-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border: 1px solid var(--d-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare-header-row { display: contents; }
.compare-header-row > div {
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--d-border);
  padding: .9rem 1.1rem;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.compare-header-row > div:first-child { color: var(--d-muted); }
.compare-header-row > div:nth-child(2) { text-align: center; color: var(--d-muted); }
.compare-header-row > div:nth-child(3) { text-align: center; color: #A78BFA; }
.compare-header-row > div:nth-child(4) { text-align: center; color: var(--d-muted); }
.compare-row { display: contents; }
.compare-row > div {
  padding: .8rem 1.1rem;
  border-bottom: 1px solid var(--d-border);
  font-family: 'Instrument Sans', sans-serif;
  font-size: .88rem;
  display: flex;
  align-items: center;
}
.compare-row:last-child > div { border-bottom: none; }
.compare-row > div:first-child { color: var(--d-text); }
.compare-row > div:not(:first-child) { justify-content: center; color: var(--d-muted); }
.compare-tick { color: #8B5CF6; font-size: 1rem; }
.compare-cross { color: var(--d-muted); font-size: 1rem; opacity: .4; }
.compare-value { color: #A78BFA; font-weight: 600; font-family: 'Cabinet Grotesk', sans-serif; }

/* ── PROCESS MINI ── */
.steps-section { background: var(--l-bg); padding: 70px 5vw; }
.steps-inner { max-width: 1100px; margin: 0 auto; }
.steps-header { text-align: center; margin-bottom: 2.5rem; }
.steps-header .sec-title { color: var(--l-text); }
.mini-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.mini-step {
  background: var(--l-surface);
  border: 1px solid var(--l-border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform .2s ease;
}
.mini-step:hover { transform: translateY(-4px); }
.mini-step-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #8B5CF6;
  opacity: .35;
  line-height: 1;
  margin-bottom: .5rem;
}
.mini-step-title { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; font-size: 1rem; color: var(--l-text); margin-bottom: .4rem; }
.mini-step-desc { font-size: .83rem; color: var(--l-muted); line-height: 1.5; font-family: 'Instrument Sans', sans-serif; }

/* ── BOTTOM CTA ── */
.bottom-cta {
  background: var(--d-bg);
  padding: 80px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(139,92,246,.1) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  background: linear-gradient(100deg, #8B5CF6, #A78BFA 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bottom-cta p { color: var(--d-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; font-family: 'Instrument Sans', sans-serif; line-height: 1.6; }
.bottom-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-violet {
  background: #8B5CF6;
  color: #fff;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  padding: .95rem 1.9rem;
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: .97rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-violet:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(139,92,246,.45); }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .compare-grid { grid-template-columns: 1.4fr repeat(3,1fr); font-size:.8rem; }
  .mini-steps { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:600px) {
  .compare-grid { display: none; }
  .mini-steps { grid-template-columns: 1fr; }
  .detail-hero { padding: 110px 5vw 60px; }
}
