body { background: var(--d-bg); color: var(--d-text); }

/* ── 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(16,185,129,.11) 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: #10B981; top: -120px; left: -80px; }
.detail-hero .o2 { width: 300px; height: 300px; background: #6366F1; 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: var(--amber); 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, #34D399 0%, #6EE7B7 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: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: #6EE7B7;
  letter-spacing: .01em;
}

/* ── PRICING SECTION ── */
.pricing-section {
  background: var(--l-bg);
  padding: 80px 5vw 90px;
}
.pricing-header { text-align: center; margin-bottom: 3rem; }
.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: #10B981;
  box-shadow: 0 0 0 1px rgba(16,185,129,.3), 0 20px 48px rgba(16,185,129,.1);
}
.price-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(16,185,129,.4), 0 28px 64px rgba(16,185,129,.18);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #10B981, #34D399);
  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: #10B981;
  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: #10B981; }
.price-currency {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--l-muted);
  margin-bottom: .4rem;
}
.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(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: #10B981;
  margin-top: .1rem;
}
.price-features li.dim .chk {
  background: rgba(99,102,241,.1);
  border-color: rgba(99,102,241,.25);
  color: #6366F1;
}
.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: #10B981;
  color: #fff;
  box-shadow: 0 4px 18px rgba(16,185,129,.3);
}
.price-cta.primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16,185,129,.45);
}
.price-cta.ghost {
  background: transparent;
  color: var(--l-text);
  border: 1.5px solid var(--l-border);
}
.price-cta.ghost:hover {
  border-color: #10B981;
  color: #10B981;
  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); }

/* ── 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: #34D399; }
.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: #10B981; font-size: 1rem; }
.compare-cross { color: var(--d-muted); font-size: 1rem; opacity: .4; }
.compare-value { color: #34D399; font-weight: 600; font-family: 'Cabinet Grotesk', sans-serif; }

/* ── STEPS ── */
.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: #10B981;
  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(16,185,129,.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, #34D399 0%, #6EE7B7 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-green {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #10B981;
  color: #fff;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: var(--r-md);
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(16,185,129,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-green:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(16,185,129,.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; }
}
