/* ─────────────────────────────────────────────────────────
   GROWTH DIAGNOSTIC & ADVISORY PAGE
   Minimal overrides — primary styles from positioning.css
   ───────────────────────────────────────────────────────── */

/* Method pills — shared styling for the methodology tag row */
.gd-pill {
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--rule);
  transition: border-color 300ms var(--ease-out-strong), color 300ms var(--ease-out-strong);
}
.gd-pill:hover {
  border-color: var(--accent);
  color: var(--ink);
}
html.dark .gd-pill:hover {
  color: oklch(0.8 0 0);
}

/* Advisory section header — visual separator from diagnostic stack */
.gd-advisory-intro {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 2px solid var(--rule);
}

/* Advisory pricing bar — side-by-side layout */
.gd-advisory-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 20px);
  margin-top: 32px;
}
.gd-advisory-pricing__main {
  border: 2px solid var(--ink);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gd-advisory-pricing__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.gd-advisory-pricing__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.gd-advisory-pricing__terms {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 4px;
}

/* Dual guarantee layout */
.gd-guarantee-addon {
  margin-top: 24px;
  padding: 20px 28px;
  border: 1px solid var(--rule);
  background: var(--paper-deeper);
  text-align: left;
  max-width: 56ch;
  margin-inline: auto;
}
.gd-guarantee-addon__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}
.gd-guarantee-addon p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

html.dark .gd-advisory-pricing__main {
  border-color: oklch(1 0 0 / 0.15);
}
html.dark .gd-advisory-pricing__price {
  color: oklch(0.95 0 0);
}
html.dark .gd-guarantee-addon {
  border-color: oklch(1 0 0 / 0.08);
  background: oklch(0.10 0.02 260);
}

@media (max-width: 900px) {
  .gd-advisory-pricing {
    grid-template-columns: 1fr;
  }
}
