.pricing-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; }
.pricing-table th, .pricing-table td { border: 1px solid #e2e8f0; padding: 0.65rem 0.75rem; text-align: left; vertical-align: top; }
.pricing-table th { background: #f1f5f9; font-family: Outfit, sans-serif; color: var(--navy); }
.pricing-table .recommended { background: #ecfdf5; border-color: var(--emerald); }
.pricing-table .price { font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.comparison-grid { display: grid; gap: 1rem; margin: 1.5rem 0; }
@media (min-width: 640px) { .comparison-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .comparison-grid { grid-template-columns: repeat(4, 1fr); } }
.comparison-card { background: var(--card); border: 1px solid #e2e8f0; border-radius: 12px; padding: 1rem; }
.comparison-card.recommended { border: 2px solid var(--emerald); background: #ecfdf5; }
.comparison-card h3 { font-family: Outfit, sans-serif; font-size: 1rem; margin: 0 0 0.5rem; color: var(--navy); }
.comparison-card ul { margin: 0; padding-left: 1.1rem; font-size: 0.9rem; }
.avatar-row { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.avatar-row img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--emerald); }
.faq-item { margin-bottom: 1.25rem; }
.faq-item h3 { font-size: 1.05rem; margin: 0 0 0.35rem; color: var(--navy); }
.faq-item p { margin: 0; color: var(--text); }
.site-nav a { margin-left: 0.75rem; }
.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 2rem 1rem;
}
.site-footer button,
.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--emerald);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.static-consent {
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 1rem;
  width: min(760px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 30px rgba(15, 30, 54, 0.3);
}
.static-consent h2 { color: #fff; margin: 0 0 0.35rem; font-size: 1rem; }
.static-consent p { margin: 0; font-size: 0.82rem; line-height: 1.5; }
.static-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
}
.static-consent label span { display: grid; }
.static-consent label small { color: #cbd5e1; }
.static-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.static-consent-actions button {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: var(--emerald);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.static-consent-actions button.secondary {
  border: 1px solid rgba(255,255,255,0.55);
  background: transparent;
}
.static-consent-actions button.link {
  padding-inline: 0.35rem;
  color: #a7f3d0;
  background: transparent;
  text-decoration: underline;
}
@media (max-width: 720px) {
  .static-consent { flex-direction: column; }
  .static-consent-actions { justify-content: flex-start; }
}
