/* ─── Pricing Page Styles ─── */

:root {
  --primary: #3B9E3E;
  --primary-hover: #76BB78;
  --design1: #D8ECD8;
  --design2: #ECF5EC;
  --white: #ffffff;
  --fg: #1a2e1a;
  --fg-muted: #4a6b4a;
  --border: #b8d4b0;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ─── Hero ─── */
.pricing-hero {
  background: var(--primary);
  padding: 4rem 2.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.pricing-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--design1);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.pricing-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--design1);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pricing-tagline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ─── Pricing Sections ─── */
.pricing-section {
  padding: 4rem 2.5rem;
  background: var(--white);
}
.pricing-section--alt {
  background: var(--design2);
}
.pricing-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ─── Category Header ─── */
.cat-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
}
.cat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 0.2rem;
}
.cat-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 0.3rem;
}
.cat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ─── Price Table ─── */
.price-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
}
.price-row--header {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: transparent;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--primary);
}
.price-row--header span:last-child {
  flex-shrink: 0;
}
.price-row--free {
  background: var(--design1);
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.price-row:hover {
  background: var(--design2);
  border-radius: 4px;
}
.price-row--header:hover {
  background: transparent;
  border-radius: 0;
}

.price-service {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.price-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}
.price-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  text-align: right;
}
.price-amount--free {
  color: var(--primary-hover);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.price-unit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--fg-muted);
}

/* ─── Disclaimer ─── */
.pricing-disclaimer-section {
  padding: 3rem 2.5rem;
  background: var(--design1);
}
.pricing-disclaimer-inner {
  max-width: 900px;
  margin: 0 auto;
}
.disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
}
.disclaimer-icon {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.1rem;
}
.disclaimer-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.disclaimer-cta {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-top: 0.4rem;
}
.disclaimer-cta a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.disclaimer-cta a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* ─── Bottom CTA ─── */
.pricing-cta-section {
  background: var(--primary);
  padding: 4rem 2.5rem;
  text-align: center;
}
.pricing-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.pricing-cta-headline {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.pricing-cta-sub {
  font-size: 1rem;
  color: var(--design1);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.9rem 2.5rem;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.pricing-cta-btn:hover {
  background: var(--design1);
  transform: translateY(-2px);
}

/* ─── Mobile ─── */
@media (max-width: 640px) {
  .pricing-hero { padding: 3rem 1.25rem 2.5rem; }
  .pricing-headline { font-size: 2.2rem; }
  .pricing-section { padding: 3rem 1.25rem; }
  .cat-header { gap: 0.75rem; }
  .cat-icon { width: 40px; height: 40px; }
  .cat-title { font-size: 1.25rem; }
  .price-row {
    padding: 0.8rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .price-service { flex: 1 1 100%; }
  .price-amount { font-size: 1rem; }
  .pricing-disclaimer-section { padding: 2.5rem 1.25rem; }
  .pricing-cta-section { padding: 3rem 1.25rem; }
  .pricing-cta-headline { font-size: 1.8rem; }
  .pricing-cta-btn { display: block; text-align: center; padding: 0.85rem 2rem; }
  .disclaimer-box { flex-direction: column; }
}