/* ─────────────────────────────────────────
   PRICING — pricing page specific styles
   ───────────────────────────────────────── */

/* ── Eyebrow (pricing variant) ── */
.eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px; display: block;
}

/* ── Hero ── */
.hero { padding: 140px 0 80px; border-bottom: 1px solid var(--border); text-align: center; }
.hero-headline { font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 20px; }
.hero-sub { font-size: 18px; font-weight: 400; line-height: 1.65; color: var(--ink-3); max-width: 520px; margin: 0 auto 48px; }

/* ── Pricing card layout ── */
.pricing-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); background: var(--bg-card); }

/* Left — price + CTA */
.plan-left { padding: 52px; border-right: 1px solid var(--border); }
.plan-tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-dim); border: 1px solid rgba(232,71,42,0.2);
  padding: 4px 10px; margin-bottom: 28px;
}
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-4); margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-price-amount { font-size: 72px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--ink); }
.plan-price-currency { font-size: 28px; font-weight: 700; color: var(--ink-2); align-self: flex-start; padding-top: 16px; }
.plan-price-period { font-size: 14px; font-weight: 500; color: var(--ink-4); letter-spacing: -0.01em; }
.plan-includes { font-size: 14px; color: var(--ink-3); line-height: 1.6; margin-bottom: 36px; }
.plan-includes strong { color: var(--ink); font-weight: 600; }

.plan-overage { background: var(--bg-warm); border: 1px solid var(--border); padding: 16px 20px; margin-bottom: 36px; }
.plan-overage-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 8px; display: block; }
.plan-overage-row { display: flex; align-items: baseline; gap: 6px; }
.plan-overage-price { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.plan-overage-desc { font-size: 13px; color: var(--ink-3); }

.plan-cta { display: flex; flex-direction: column; gap: 10px; }
.plan-cta .btn { text-align: center; }
.plan-cta-note { font-size: 11px; color: var(--ink-4); text-align: center; letter-spacing: -0.01em; }

/* Right — features + examples */
.plan-right { padding: 52px; display: flex; flex-direction: column; gap: 40px; }
.plan-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 20px; display: block; }

/* Feature checklist */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.feature-check {
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--orange-dim); border: 1px solid rgba(232,71,42,0.2);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.feature-check svg { display: block; }

/* Example costs */
.example-divider { height: 1px; background: var(--border); }
.example-list { display: flex; flex-direction: column; }
.example-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px;
}
.example-row:last-child { border-bottom: none; }
.example-team { color: var(--ink-3); }
.example-team strong { color: var(--ink); font-weight: 600; }
.example-cost { font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.example-breakdown { font-size: 11px; color: var(--ink-4); margin-top: 2px; }

/* ── User counting section ── */
.counted-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.counted-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.hubspot-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg-warm); border: 1px solid var(--border);
  padding: 16px 20px; font-size: 13px; color: var(--ink-3); line-height: 1.6;
}
.hubspot-note-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { padding: 22px 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.faq-a { font-size: 14px; line-height: 1.7; color: var(--ink-3); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .plan-left { border-right: none; border-bottom: 1px solid var(--border); }
  .counted-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .plan-left { padding: 32px 28px; }
  .plan-right { padding: 32px 28px; }
  .plan-price-amount { font-size: 56px; }
}
