/* ═══════════════════════════════════════════════════════
   DECIDR — Static Pages CSS (static.css)
   Shared by: About, Pricing, Privacy, Imprint, Blog, etc.
   ═══════════════════════════════════════════════════════ */

.static-hero {
  padding: 80px 0 64px;
  background: #F8FAFC;
  border-bottom: 1px solid #EEF2F7;
}
.static-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.static-subline {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.static-body { padding: 72px 0 80px; }

.static-content { max-width: 780px; }

.static-section {
  margin-bottom: 52px;
}
.static-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.static-section p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.static-section p:last-child { margin-bottom: 0; }

.static-cta-block {
  background: #F8FAFC;
  border: 1.5px solid #DDE2EE;
  border-radius: 16px;
  padding: 40px;
  margin-top: 52px;
  text-align: center;
}
.static-cta-block h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.static-cta-block p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
}

/* ─── Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.team-card {
  background: #F8FAFC;
  border: 1.5px solid #DDE2EE;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 20px;
  color: #fff;
  margin: 0 auto 14px;
}
.team-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px; font-weight: 600;
  color: var(--amber);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}
.team-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Values ─── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.value-item {
  display: flex; gap: 16px;
  padding: 20px;
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid #EEF2F7;
}
.value-icon { font-size: 24px; flex-shrink: 0; }
.value-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.value-item p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.5; }

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid #DDE2EE;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.pricing-card-featured {
  border-color: var(--amber);
  box-shadow: 0 8px 32px rgba(212,139,0,0.12);
}
.pricing-popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 14px; border-radius: 9999px;
  white-space: nowrap; letter-spacing: 0.06em;
}
.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--text-primary); margin-bottom: 12px;
}
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.price-period { font-size: 14px; color: var(--text-muted); }
.pricing-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.pricing-btn {
  display: block; text-align: center;
  padding: 11px 20px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; margin-bottom: 24px;
  transition: all 0.18s;
}
.pricing-btn-solid { background: var(--amber); color: #fff; box-shadow: 0 4px 16px rgba(212,139,0,0.25); }
.pricing-btn-solid:hover { background: #C07B00; }
.pricing-btn-outline { border: 1.5px solid var(--border); color: var(--text-secondary); }
.pricing-btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; gap: 8px; font-size: 14px; color: var(--text-secondary); align-items: flex-start; }
.pf-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pf-cross  { color: var(--text-muted); flex-shrink: 0; }

.pricing-toggle {
  padding: 8px 20px; border-radius: 9999px;
  border: none; background: transparent;
  font-size: 14px; font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer; transition: all 0.18s;
}
.pricing-toggle.active { background: #fff; color: var(--text-primary); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }

/* ─── FAQ ─── */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 32px;
}
.faq-item {
  background: #F8FAFC; border-radius: 12px;
  padding: 24px; border: 1px solid #EEF2F7;
}
.faq-q {
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  color: var(--text-primary); margin-bottom: 10px;
}
.faq-a { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── Legal ─── */
.legal-content { max-width: 700px; }
.legal-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  margin: 12px 0 16px;
}
.legal-list li { display: flex; gap: 10px; font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.legal-list li::before { content: '—'; color: var(--amber); flex-shrink: 0; }
.legal-content a { color: var(--amber); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ─── Dark theme overrides ─── */
[data-theme="dark"] .static-hero { background: #0D1220; border-color: #1E2D47; }
[data-theme="dark"] .static-cta-block,
[data-theme="dark"] .team-card,
[data-theme="dark"] .value-item,
[data-theme="dark"] .faq-item { background: #131929; border-color: #1E2D47; }
[data-theme="dark"] .pricing-card { background: #131929; border-color: #1E2D47; }
[data-theme="dark"] .pricing-card-featured { border-color: var(--amber); }
[data-theme="dark"] .pricing-toggle.active { background: #1A2236; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .static-hero { padding: 52px 0 40px; }
  .static-body { padding: 48px 0 60px; }
}