/* ════════════════════════════════════════════════════
   GOOGLE ADS — page-specific styles only
   (Shared service-detail patterns live in service-detail.css)
   ════════════════════════════════════════════════════ */

/* ─── §02 · Funnel-stages sidebar (unique to GA) ─── */
.ga-funnel {
  padding: 32px 30px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 18px;
}
.ga-funnel__label {
  font-size: 10px;
  color: var(--gold-2);
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}
.ga-funnel__stage { margin-bottom: 14px; }
.ga-funnel__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.ga-funnel__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.ga-funnel__channel {
  font-size: 10px;
  color: var(--ink-2);
  opacity: .6;
  letter-spacing: 0.08em;
  font-family: 'JetBrains Mono', monospace;
}
.ga-funnel__bar {
  height: 6px;
  background: var(--paper);
  border-radius: 3px;
  overflow: hidden;
}
.ga-funnel__bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--teal);
  transition: width .4s;
}
.ga-funnel__bar-fill--gold { background: var(--gold); }
.ga-funnel__note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
