/* ===== STATIC PAGES ===== */
.static-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 36px) 24px 64px;
}
.static-hero {
  margin-bottom: 28px;
}
.static-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.static-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.static-hero p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}
.static-panel {
  background: var(--card-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.static-panel h2 {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 14px;
}
.static-panel h3 {
  font-size: 18px;
  color: var(--text);
  margin: 22px 0 10px;
}
.static-panel p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.static-panel ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.static-panel li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.75;
}
.static-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.static-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
}
.contact-card h2 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-card p,
.contact-card a {
  color: var(--text-muted);
  line-height: 1.75;
}
.contact-card a:hover {
  color: var(--accent);
}
.policy-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.not-found-page {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  min-height: calc(100vh - 280px);
}
.not-found-hero {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.not-found-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
  color: var(--accent);
  font-size: clamp(92px, 18vw, 164px);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -5px;
  margin-bottom: 22px;
}
.not-found-ball {
  position: relative;
  display: inline-block;
  width: clamp(72px, 12vw, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f7f3e7;
  box-shadow: inset -10px -8px 0 rgba(15, 27, 40, .12), 0 12px 32px rgba(0, 0, 0, .25);
}
.not-found-ball::before,
.not-found-ball::after {
  content: '';
  position: absolute;
  top: 13%;
  bottom: 13%;
  width: 28%;
  border: 3px dashed #cc4d3e;
}
.not-found-ball::before {
  left: 15%;
  border-width: 0 3px 0 0;
  border-radius: 0 50% 50% 0;
}
.not-found-ball::after {
  right: 15%;
  border-width: 0 0 0 3px;
  border-radius: 50% 0 0 50%;
}
.not-found-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
  margin-bottom: 14px;
}
.not-found-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}
.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.not-found-primary,
.not-found-secondary {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 650;
  transition: transform .16s, background .16s, border-color .16s;
}
.not-found-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.not-found-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--card-bg);
}
.not-found-primary:hover,
.not-found-secondary:hover {
  transform: translateY(-2px);
}
.not-found-secondary:hover {
  border-color: var(--accent);
  background: var(--hover-bg);
}
.not-found-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.not-found-links a {
  background: var(--card-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color .16s, background .16s;
}
.not-found-links a:hover {
  background: var(--hover-bg);
  border-color: rgba(var(--accent-rgb), .42);
}
.not-found-links span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.not-found-links strong {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .static-page {
    padding: calc(var(--nav-h) + 24px) 12px 40px;
  }
  .static-grid {
    grid-template-columns: 1fr;
  }
  .static-panel {
    padding: 18px;
  }
  .not-found-page {
    min-height: auto;
    gap: 26px;
    padding-top: calc(var(--nav-h) + 46px);
  }
  .not-found-mark {
    margin-bottom: 18px;
  }
  .not-found-actions {
    flex-direction: column;
    margin-top: 24px;
  }
  .not-found-links {
    grid-template-columns: 1fr;
  }
}
