/* ── Page-level overrides ── */
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(245,158,11,.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: var(--amber); top: -120px; left: -80px; }
.detail-hero .o2 { width: 300px; height: 300px; background: #3B82F6; 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, var(--amber) 0%, var(--amber2) 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(--amber-dim);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: var(--amber2);
  letter-spacing: .01em;
}

/* ── PRICING SECTION ── */
.pricing-section {
  background: var(--l-bg);
  padding: 80px 5vw 90px;
}
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-header .sec-title {
  color: var(--l-text);
}
.pricing-header .sec-sub-center {
  color: var(--l-muted);
}

/* Vitrine Horizontal Card */
.vitrine-card {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  background: var(--l-surface); /* Keep light background */
  border: 1.5px dashed var(--amber); /* Dashed amber border for "Showcase" feel */
  border-radius: var(--r-xl);
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.vitrine-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--amber); /* Vertical accent bar */
}
.vitrine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.08);
  border-style: solid; /* Solid on hover */
}
.vitrine-info { flex: 1; padding-left: 0.5rem; }
.vitrine-info .price-tier-label { color: var(--amber); }
.vitrine-info .price-name { color: var(--l-text); }
.vitrine-info .price-desc { color: var(--l-muted); }
.vitrine-pricing { text-align: right; min-width: 180px; }
.vitrine-pricing .price-value { color: var(--l-text); }
.vitrine-pricing .price-currency, .vitrine-pricing .price-from { color: var(--l-muted); }
.vitrine-features-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.8rem;
  list-style: none;
  padding: 0;
}
.vitrine-features-mini li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--l-text);
  font-family: 'Instrument Sans', sans-serif;
}
.vitrine-features-mini li .chk {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(245,158,11,0.1);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

@media(max-width: 768px) {
  .vitrine-card { flex-direction: column; text-align: center; align-items: center; }
  .vitrine-pricing { text-align: center; }
  .vitrine-features-mini { justify-content: center; }
}

.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: var(--amber);
  box-shadow: 0 0 0 1px rgba(245,158,11,.3), 0 20px 48px rgba(245,158,11,.1);
}
.price-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(245,158,11,.4), 0 28px 64px rgba(245,158,11,.18);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--amber), var(--amber2));
  color: #000;
  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: var(--amber);
  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: var(--amber);
}
.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(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(245,158,11,.1);
  border-color: rgba(245,158,11,.25);
  color: var(--amber);
}
.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: var(--amber);
  color: #000;
  box-shadow: 0 4px 18px rgba(245,158,11,.3);
}
.price-cta.primary:hover {
  background: var(--amber2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,.45);
}
.price-cta.ghost {
  background: transparent;
  color: var(--l-text);
  border: 1.5px solid var(--l-border);
}
.price-cta.ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  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: var(--amber); }
.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: var(--amber); 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: var(--amber);
  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(245,158,11,.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, var(--amber), var(--amber2) 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;
}

/* ── 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; }
}
