*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F26522;
  --orange-dk: #d95515;
  --navy: #1B3050;
  --gray-bg: #F3F3F3;
  --text-muted: #7c8390;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--gray-bg);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.top-bar { height: 5px; background: var(--orange); }

.navbar {
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  display: flex;
  justify-content: space-between;
  padding: 12px 48px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.logo-wordmark {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-wordmark span { color: var(--orange); }

.logo-sub {
  color: #aaa;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.back-link {
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  color: var(--navy);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .18s;
}

.back-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

main {
  padding: 44px 24px 58px;
}

.policy-shell {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  margin: 0 auto;
  max-width: 980px;
  padding: 42px;
}

.policy-eyebrow {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h1 {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 14px;
}

.policy-lead {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 760px;
}

.policy-section {
  border-top: 1px solid #ececec;
  margin-top: 28px;
  padding-top: 26px;
}

.policy-section h2 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
}

.policy-section p,
.policy-section li {
  color: #4c5665;
  font-size: 13.5px;
}

.policy-section ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin-top: 12px;
}

.policy-section li {
  padding-left: 18px;
  position: relative;
}

.policy-section li::before {
  background: var(--orange);
  border-radius: 50%;
  content: '';
  height: 6px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 6px;
}

.policy-note {
  background: rgba(242,101,34,0.08);
  border: 1px solid rgba(242,101,34,0.22);
  border-radius: 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
  padding: 14px 16px;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.policy-btn {
  align-items: center;
  border-radius: 20px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  text-decoration: none;
}

.policy-btn.primary {
  background: var(--orange);
  color: #fff;
}

.policy-btn.secondary {
  border: 1px solid #d9d9d9;
  color: var(--navy);
}

.footer {
  background: #0a0a0a;
  color: #fff;
  margin-top: 30px;
  padding: 44px 48px 0;
}

.footer-inner {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.2fr .8fr .8fr;
  margin: 0 auto;
  max-width: 1080px;
}

.footer-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.footer-logo span,
.footer-col-title { color: var(--orange); }

.footer-logo-sub {
  color: #777;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: -2px;
  text-transform: uppercase;
}

.footer-desc {
  color: #aaa;
  font-size: 12.5px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 260px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}

.footer-links li,
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-divider {
  background: rgba(255,255,255,0.08);
  height: 1px;
  margin: 34px auto 0;
  max-width: 1080px;
}

.footer-legal {
  color: rgba(255,255,255,0.42);
  font-size: 11px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 1080px;
  padding: 26px 0 30px;
  text-align: center;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 22px;
  padding-top: 22px;
}

.footer-social {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-social-soon {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .navbar { padding: 10px 18px; }
  .logo-wordmark { font-size: 26px; }
  .logo-sub { font-size: 6.5px; letter-spacing: 1.4px; }
  main { padding: 24px 14px 38px; }
  .policy-shell { border-radius: 16px; padding: 24px 18px; }
  h1 { font-size: 25px; }
  .policy-section h2 { font-size: 18px; }
  .policy-actions { display: grid; grid-template-columns: 1fr; }
  .footer { padding: 40px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
