/* Shared styles for service pages */

.page-hero {
  padding: 48px 0 40px;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.08; letter-spacing: -0.03em; font-weight: 500;
  max-width: 22ch;
}
.page-hero .lead { margin-top: 16px; }

/* Pricing table */
.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 32px;
}
.pkg {
  border: 1px solid var(--border); background: var(--bg-elevated);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color .15s ease, transform .15s ease;
}
.pkg:hover { border-color: var(--ink); transform: translateY(-2px); }
.pkg.featured { border-color: var(--accent); border-width: 2px; }
.pkg-label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; color: var(--accent);
}
.pkg h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.015em; }
.pkg .pkg-price {
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.pkg .pkg-price small { font-size: 14px; color: var(--text-muted); font-weight: 400; display: block; margin-top: 2px; }
.pkg .pkg-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.pkg-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.pkg-features li {
  padding: 8px 0; border-bottom: 1px dashed var(--border);
  font-size: 14px; display: flex; gap: 10px; align-items: baseline;
}
.pkg-features li:last-child { border-bottom: 0; }
.pkg-features li::before { content: "✓"; color: var(--accent); font-weight: 600; flex-shrink: 0; }
.pkg .btn { margin-top: auto; width: 100%; justify-content: center; }

/* Content sections on service pages */
.srv-section { padding: 48px 0; border-top: 1px solid var(--border); }
.srv-section h2 {
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.02em; font-weight: 500; margin-bottom: 24px;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 24px; } }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .three-col { grid-template-columns: 1fr; } }

.info-card {
  padding: 24px; border: 1px solid var(--border); background: var(--bg-elevated);
}
.info-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* Comparison table */
.cmp-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.cmp-table th, .cmp-table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border);
  font-size: 14px; vertical-align: top;
}
.cmp-table th { font-weight: 500; font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; border-bottom-color: var(--ink); }
.cmp-table td:first-child { font-weight: 500; }
.cmp-table tr:hover td { background: var(--bg-soft); }

/* CTA bottom */
/* Vertical cards (used on solutions pages) */
.vert-card {
  display: flex; flex-direction: column;
  padding: 22px 20px;
  border: 1px solid var(--border); background: var(--bg-elevated);
  text-decoration: none; color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
.vert-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.vert-card .vc-num { font-size: 12px; color: var(--text-muted); font-variant-numeric: tabular-nums; margin-bottom: 12px; }
.vert-card .vc-ttl { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.vert-card .vc-desc { font-size: 13px; color: var(--text-muted); margin-top: 6px; line-height: 1.5; flex: 1; }
.vert-card .vc-foot { font-size: 13px; color: var(--accent); margin-top: 14px; font-weight: 500; }

.page-cta {
  background: var(--ink); color: white; padding: 48px 0; margin-top: 48px;
}
.page-cta h2 { color: white; font-size: clamp(24px, 2.8vw, 40px); letter-spacing: -0.02em; font-weight: 500; }
.page-cta p { color: rgba(255,255,255,.65); margin-top: 10px; }
.page-cta .btn { margin-top: 20px; }
