/* ================================================================
   MaD Development — Services / Pricing Page CSS
   /public_html/assets/css/services.css
   ================================================================ */

/* ─── SERVICES HERO ─── */
.svc-hero {
  position: relative;
  z-index: 1;
  padding: 9rem 0 5rem;
  text-align: center;
}

.svc-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.svc-hero-title .highlight {
  color: var(--blue-light);
  font-style: italic;
}

.svc-hero-sub {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.svc-hero .hero-ctas {
  justify-content: center;
  opacity: 1;
  animation: none;
}

.svc-hero .hero-eyebrow {
  text-align: center;
}

/* ─── Section helpers ─── */
.section-sub.mx-auto {
  max-width: 580px;
}

/* ─── PRICING CARDS ─── */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(74, 138, 255, 0.15);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 138, 255, 0.35);
}

.pricing-card-featured {
  background: rgba(15, 76, 219, 0.08);
  border: 1.5px solid var(--blue);
  box-shadow: 0 0 40px rgba(15, 76, 219, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-head { margin-bottom: 1.25rem; }

.pricing-tier-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pricing-tier-desc {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--blue-light);
  letter-spacing: 0.04em;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.pricing-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-setup {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--soft);
  font-weight: 300;
  line-height: 1.5;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(74, 138, 255, 0.08);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
  color: var(--blue-light);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.pricing-features li.not-included {
  color: var(--muted);
  opacity: 0.6;
}

.pricing-features li.not-included i {
  color: var(--muted);
}

.pricing-footnote {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── CHECK LIST (HIPAA section) ─── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--soft);
  font-weight: 300;
  padding: 0.55rem 0;
}

.check-list li i {
  color: var(--blue-light);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.text-muted-mad {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ─── HIPAA Card ─── */
.hipaa-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(74, 138, 255, 0.15);
  border-radius: 18px;
  padding: 2.5rem;
  text-align: center;
}

.hipaa-card-icon {
  font-size: 3rem;
  color: var(--blue-light);
  margin-bottom: 1rem;
  display: block;
}

.hipaa-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.hipaa-card p { margin-bottom: 1.5rem; }

.hipaa-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 76, 219, 0.1);
  border: 1px solid rgba(74, 138, 255, 0.2);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  color: var(--soft);
}

.hipaa-addon strong {
  color: var(--blue-light);
  font-family: 'DM Mono', monospace;
}

/* ─── REFERRAL STATS ─── */
.referral-stat {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(74, 138, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.referral-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.referral-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

.referral-example {
  max-width: 680px;
  margin: 3rem auto 0;
  background: rgba(15, 76, 219, 0.06);
  border: 1px solid rgba(74, 138, 255, 0.18);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  position: relative;
}

.referral-quote-icon {
  font-size: 1.75rem;
  color: var(--blue-light);
  opacity: 0.5;
  margin-bottom: 0.5rem;
  display: block;
}

.referral-example p {
  color: var(--soft);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
}

.referral-example strong {
  color: var(--blue-light);
}

/* ─── MIGRATION STEPS ─── */
.migration-step {
  padding: 1.5rem 0;
}

.migration-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: var(--blue-light);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.migration-step h6 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.migration-step p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .svc-hero { padding: 7rem 0 3rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .referral-example { padding: 1.5rem; margin-left: 1rem; margin-right: 1rem; }
}
