/**
 * SKILL ERA GLOBAL LTD — Legal Pages Styles
 * Shared styles for Privacy Policy, Terms & Conditions, Cookie Policy
 */

/* ===== Legal Hero ===== */
.legal-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.legal-hero h1 {
  font-size: 2.75rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.025em;
}

.legal-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  position: relative;
  line-height: 1.7;
}

.legal-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
  flex-wrap: wrap;
}

.legal-meta span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
}

/* ===== Legal Content ===== */
.legal-content {
  padding: 4rem 0 5rem;
  background: #ffffff;
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.legal-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 1.5rem 0 0.75rem;
}

.legal-section p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
  list-style: none;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.75;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.legal-section ul li strong {
  color: #1e293b;
}

.legal-section a {
  color: #4f46e5;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: #7c3aed;
  text-decoration: underline;
}

/* ===== Contact Card ===== */
.legal-contact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin: 1.25rem 0;
}

.legal-contact-card p {
  margin-bottom: 0.35rem;
  color: #334155;
  font-size: 0.95rem;
}

.legal-contact-card a {
  color: #4f46e5;
}

/* ===== Cookie Tables ===== */
.cookie-table-wrapper {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cookie-table thead {
  background: #f1f5f9;
}

.cookie-table th {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 700;
  color: #1e293b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #e2e8f0;
}

.cookie-table td {
  padding: 0.8rem 1.25rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.6;
}

.cookie-table tbody tr:last-child td {
  border-bottom: none;
}

.cookie-table tbody tr:hover {
  background: #f8fafc;
}

.cookie-table td:first-child {
  font-weight: 600;
  color: #1e293b;
  font-family: 'Inter', monospace;
  font-size: 0.85rem;
}

/* ===== Legal Page Footer ===== */
.legal-footer-bottom {
  padding: 2rem 0;
  text-align: center;
}

.legal-footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.legal-footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-footer-links a:hover,
.legal-footer-links a.active {
  color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .legal-hero {
    padding: 8rem 0 3rem;
  }

  .legal-hero h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.25rem;
  }

  .legal-body {
    padding: 0 0.5rem;
  }

  .legal-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .legal-contact-card {
    padding: 1.25rem 1.25rem;
  }

  .legal-footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
