/* Static Pages - Help, Terms, Privacy */

.static-page {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  padding: 40px 20px;
}

.static-container {
  max-width: 1040px;
  margin: 0 auto;
}

/* Header */
.static-header {
  margin-bottom: 32px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.back-link:hover {
  background: #fff;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

/* Content */
.static-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px 56px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.static-title {
  font-size: 42px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  letter-spacing: -1px;
}

.static-title i {
  color: var(--primary);
  filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.3));
}

.static-subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0 0 40px;
  font-weight: 500;
}

/* Sections */
.static-section {
  margin-bottom: 40px;
}

.static-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid #e2e8f0;
}

.static-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #334155;
  margin: 24px 0 12px;
}

.static-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin: 0 0 16px;
}

.static-section ul,
.static-section ol {
  margin: 16px 0;
  padding-left: 28px;
}

.static-section li {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 8px;
}

.static-section a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.static-section a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* FAQ Items */
.faq-item {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
  transform: translateY(-2px);
}

.faq-item h3 {
  margin-top: 0;
  color: var(--primary);
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.contact-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid rgba(14, 165, 233, 0.3);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
  border-color: var(--primary);
}

.contact-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.contact-card a {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.contact-card a:hover {
  color: var(--primary-hover);
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.contact-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Footer */
.static-footer {
  margin-top: 40px;
  text-align: center;
}

.static-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  border: none;
}

.static-footer .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.5);
}

/* Responsive */

/* Dark theme overrides */
.theme-dark .static-page { background: linear-gradient(135deg, #0b1220 0%, #0f172a 100%); }
.theme-dark .back-link { background: rgba(17,24,39,0.75); border-color: var(--border); color: #cbd5e1; box-shadow: 0 2px 8px rgba(2,6,23,0.35); }
.theme-dark .back-link:hover { background: rgba(28,43,69,0.75); }

.theme-dark .static-content {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: none;
  box-shadow: 0 8px 32px rgba(2,6,23,0.35);
}
.theme-dark .static-title { color: var(--text); }
.theme-dark .static-subtitle { color: #94a3b8; }
.theme-dark .static-section h2 { color: var(--text); border-bottom-color: var(--border); }
.theme-dark .static-section h3 { color: #cbd5e1; }
.theme-dark .static-section p, .theme-dark .static-section li { color: #94a3b8; }
.theme-dark .static-section a { color: #7dd3fc; }
.theme-dark .static-section a:hover { color: #bae6fd; }

.theme-dark .faq-item { background: rgba(17,24,39,0.55); border-color: var(--border); }
.theme-dark .contact-card { background: linear-gradient(135deg, rgba(2,132,199,0.12) 0%, rgba(30,64,175,0.12) 100%); border-color: rgba(14,165,233,0.35); }
.theme-dark .contact-card h3 { color: var(--text); }
.theme-dark .contact-card p { color: #94a3b8; }
