/* ── PRICING PAGE ── */

/* Navigation */
.pricing-nav {
  background: var(--teal);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pricing-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.nav-active { color: var(--accent); }

/* Hero */
.pricing-hero {
  background: var(--teal);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.pricing-hero-inner { max-width: 720px; margin: 0 auto; }
.pricing-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,115,74,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.pricing-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.pricing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* Hero CTA button */
.btn-call-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-call-hero:hover { background: var(--accent-dark); }

/* Delivery strip */
.pricing-delivery {
  padding: 3rem 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.pricing-delivery-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.delivery-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.delivery-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
  max-width: 280px;
}
.delivery-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232,115,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.delivery-step-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.delivery-step-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.delivery-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 2rem;
  flex-shrink: 0;
}

/* Plans */
.pricing-plans { padding: 5rem 2rem; background: var(--bg); }
.pricing-plans-inner { max-width: 1100px; margin: 0 auto; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.plan-card:hover {
  box-shadow: 0 8px 40px rgba(13,46,51,0.1);
  transform: translateY(-2px);
}
.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 32px rgba(232,115,74,0.15);
}
.plan-recommended-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 1.5rem; }
.plan-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.25rem;
}
.plan-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* No dollar prices — custom quote model */
.plan-price-block {
  margin-bottom: 1.25rem;
}
.plan-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.25rem;
}
.plan-price-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: var(--teal);
}

.plan-description {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  min-height: 2.8rem;
}

.plan-features {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.feature-included {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg);
}
.feature-included strong { font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; width: auto; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-secondary:hover { background: rgba(13,46,51,0.06); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-call-cta {
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  width: auto;
}
.btn-call-cta:hover { background: var(--accent-dark); }

/* FAQ */
.pricing-faq { padding: 5rem 2rem; background: var(--surface); }
.pricing-faq-inner { max-width: 900px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.faq-header p { font-size: 1rem; color: var(--fg-muted); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}
.faq-item h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.faq-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Booking / Calendly */
.pricing-booking {
  padding: 5rem 2rem;
  background: var(--bg);
}
.pricing-booking-inner {
  max-width: 900px;
  margin: 0 auto;
}
.booking-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.booking-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--teal);
  margin-bottom: 1rem;
}
.booking-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.pricing-booking .calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 59, 62, 0.12);
  min-width: 320px;
  height: 700px;
}

/* CTA */
.pricing-cta { padding: 5rem 2rem; background: var(--teal); text-align: center; }
.pricing-cta-inner { max-width: 640px; margin: 0 auto; }
.pricing-cta h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 1rem;
}
.pricing-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-ghost { width: auto; }

/* Footer (pricing page uses site-footer from theme.css) */
.site-footer {
  padding: 3rem 2rem;
  background: var(--teal);
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.footer-logo { font-family: 'Instrument Serif', serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-meta { text-align: right; }
.footer-compliance { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; justify-content: flex-end; }
.compliance-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); padding: 0.25rem 0.6rem; border-radius: 4px; }
.footer-copy { font-size: 0.75rem; }

/* Responsive */
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-featured { max-width: 480px; }
  .faq-grid { grid-template-columns: 1fr; }
  .delivery-steps { flex-direction: column; gap: 2rem; align-items: flex-start; }
  .delivery-divider { width: 40px; height: 1px; margin: 0; }
}
@media (max-width: 600px) {
  .nav-links { gap: 1rem; }
  .pricing-nav-inner { flex-direction: column; gap: 0.75rem; }
  .pricing-booking .calendly-inline-widget { height: 580px; }
}