
/* ── POLICY PAGES ──────────────────────────────────────── */

.policy-hero {
  padding: 100px 0 48px;
  background: linear-gradient(160deg, #F0F6FF 0%, #FFFFFF 55%, #F5F0FF 100%);
  border-bottom: 1px solid var(--border);
}
.policy-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); text-decoration: none;
  margin-bottom: 20px; transition: color .2s;
}
.policy-back:hover { color: var(--text); }
.policy-back svg { flex-shrink: 0; }
.policy-hero .section-eyebrow { margin-bottom: 12px; }
.policy-hero h1 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  letter-spacing: -.03em; color: var(--text);
  line-height: 1.12; margin: 14px 0 16px;
}
.policy-meta { font-size: 14px; color: var(--muted); }

.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0 80px;
}
@media (max-width: 900px) {
  .policy-layout { grid-template-columns: 1fr; gap: 0; padding: 40px 0 60px; }
}

.policy-toc { position: sticky; top: 88px; }
@media (max-width: 900px) { .policy-toc { display: none; } }
.toc-inner {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 18px;
}
.toc-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.toc-links { display: flex; flex-direction: column; gap: 2px; }
.toc-links a {
  display: block; font-size: 13px; color: var(--muted);
  padding: 6px 0 6px 12px; border-left: 2px solid transparent;
  text-decoration: none; transition: color .2s, border-color .2s;
  line-height: 1.4;
}
.toc-links a:hover { color: var(--text); border-left-color: var(--border-2); }
.toc-links a.active { color: var(--blue); border-left-color: var(--blue); font-weight: 600; }

.toc-mobile {
  display: none; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px; margin-bottom: 32px;
}
@media (max-width: 900px) { .toc-mobile { display: block; } }
.toc-mobile summary {
  font-size: 14px; font-weight: 600; color: var(--text);
  cursor: pointer; list-style: none; display: flex;
  align-items: center; justify-content: space-between;
  user-select: none;
}
.toc-mobile summary::-webkit-details-marker { display: none; }
.toc-mobile summary::after { content: "▾"; color: var(--muted); font-size: 12px; }
.toc-mobile[open] summary::after { content: "▴"; }
.toc-mobile .toc-links { margin-top: 12px; }
.toc-mobile .toc-links a { border-left: none; padding-left: 0; }

.policy-content { min-width: 0; }
.policy-content h2 {
  font-size: 22px; font-weight: 800; letter-spacing: -.025em;
  color: var(--text); margin: 0 0 16px; padding-top: 8px;
}
.policy-content p {
  font-size: 16px; color: var(--text-2); line-height: 1.78; margin-bottom: 16px;
}
.policy-content ul, .policy-content ol { padding-left: 22px; margin-bottom: 18px; }
.policy-content li {
  font-size: 16px; color: var(--text-2); line-height: 1.78; margin-bottom: 8px;
}
.policy-content strong { color: var(--text); }
.policy-content hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

.policy-contact-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px; margin-top: 8px;
}
.policy-contact-card p { margin-bottom: 6px; font-size: 15px; color: var(--text-2); }
.policy-contact-card p:last-child { margin-bottom: 0; }
.policy-contact-card a { color: var(--blue); text-decoration: none; }
.policy-contact-card a:hover { text-decoration: underline; }

.footer-legal-nav {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
}
.footer-legal-nav a {
  font-size: 13px; color: var(--muted-2);
  text-decoration: none; transition: color .2s;
}
.footer-legal-nav a:hover { color: var(--text); }

/* ── Contact page ──────────────────────────────────────────── */
.contact-layout {
  display: flex; flex-direction: column; gap: 32px;
  padding: 56px 24px 80px; max-width: 720px; margin: 0 auto;
}
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-card-item:hover {
  border-color: var(--blue); box-shadow: 0 4px 20px rgba(37,99,235,.08);
}
.contact-card-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.contact-card-label {
  font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px;
}
.contact-card-value {
  font-size: 17px; font-weight: 600; color: var(--blue);
  text-decoration: none; display: block; margin-bottom: 6px;
}
.contact-card-value:hover { text-decoration: underline; }
.contact-card-note { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

.contact-company-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 28px 24px;
}
.contact-company-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.contact-company-name {
  font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px;
}
.contact-company-address {
  font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 18px;
}
.contact-company-links {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 13px; color: var(--muted);
}
.contact-company-links a {
  color: var(--blue); text-decoration: none; font-size: 13px;
}
.contact-company-links a:hover { text-decoration: underline; }
.contact-company-links span { color: var(--border); }
