/* ==========================================================================
   Pricing — dedicated stylesheet. Unlike the service-detail pages, this
   page's components (pricing cards, plan CTA with checklist, mini service
   grid) don't fit the service-page.css template, so they live here instead.
   Reuses shared style.css tokens (colors, buttons, spacing) throughout.
   ========================================================================== */

/* ---------- Hero: short, centered, no photo — a subtle gradient stands
   in for the "curved transition" into the pricing cards below. ---------- */
.hero--pricing {
  background: linear-gradient(180deg, var(--gray-100), var(--white));
  padding: 56px 0 28px;
  text-align: center;
}
.hero--pricing .hero-text {
  max-width: 640px;
  margin: 0 auto;
}
.hero--pricing h1 {
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
}
.hero--pricing h1 .accent { color: var(--green-accent); }
.hero--pricing .hero-body {
  color: var(--ink-soft);
  margin-top: 14px;
  font-size: 1.05rem;
}
.hero--pricing .hero-actions {
  justify-content: center;
  margin-top: 26px;
}
.hero-note {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* ---------- Pricing cards ---------- */
.pricing { padding: 12px 0 72px; background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
  position: relative;
  border: 2px solid var(--green-accent);
  box-shadow: var(--shadow-md);
  padding-top: 0;
  overflow: hidden;
}
.pricing-badge {
  display: block;
  margin: 0 -28px 24px;
  padding: 11px 0;
  background: var(--green-accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.pricing-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pricing-subtitle { color: var(--green-600); font-weight: 600; font-size: 0.9rem; margin-bottom: 18px; }
.pricing-price { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: var(--ink); }
.pricing-desc { color: var(--ink-soft); font-size: 1rem; margin-top: 8px; margin-bottom: 20px; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
  color: var(--ink);
}
.pricing-features svg { width: 18px; height: 18px; color: var(--green-accent); flex-shrink: 0; margin-top: 2px; }

.pricing-cta { width: 100%; }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ---------- Tax services (separate, deliberately lighter treatment) ---------- */
.tax-services { padding: 64px 0; background: var(--gray-100); }

.tax-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}
.tax-service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.tax-service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.tax-service-card p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 14px; }
.tax-service-card a {
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.95rem;
}
.tax-service-card a:hover { color: var(--green-800); }

@media (max-width: 640px) {
  .tax-services-grid { grid-template-columns: 1fr; }
}

/* ---------- Additional services: intentionally smaller/lighter than the
   pricing cards above — no shadow, thin border, compact padding. ---------- */
.mini-services { padding: 64px 0; background: var(--white); }

.mini-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mini-service {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
}
.mini-service .icon-wrap { width: 40px; height: 40px; margin-bottom: 0; flex-shrink: 0; }
.mini-service .icon-wrap svg { width: 18px; height: 18px; }
.mini-service h3 { font-size: 0.98rem; margin-bottom: 4px; }
.mini-service p { color: var(--ink-soft); font-size: 0.94rem; }
.mini-service a { color: inherit; }

@media (max-width: 900px) {
  .mini-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .mini-services-grid { grid-template-columns: 1fr; }
}

/* ---------- Plan-selection CTA: dark green, centered, with a checklist —
   distinct from the standard .cta-banner (which has no checklist). ---------- */
.plan-cta {
  background: linear-gradient(120deg, var(--green-700), var(--green-800));
  padding: 64px 0;
  text-align: center;
}
.plan-cta-label {
  color: var(--green-accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.plan-cta h2 { color: var(--white); font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.plan-cta > .container > p:not(.plan-cta-label) {
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 14px auto 0;
}
.plan-cta-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  margin: 26px 0 30px;
}
.plan-cta-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}
.plan-cta-checklist svg { width: 18px; height: 18px; color: var(--green-accent); flex-shrink: 0; }

@media (max-width: 640px) {
  .plan-cta-checklist { flex-direction: column; align-items: center; gap: 12px; }
}
