:root {
  --navy:      #0B1F3A;
  --orange:    #ee8522;
  --orange-lt: #fef3e8;
  --orange-md: #fde0b8;
  --white:     #FFFFFF;
  --off-white: #EEF2F7;
  --text:      #2D3748;
  --text-muted:#5A6882;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(11,31,58,.10);
}

.policy-hero {
  position: relative;
  background: var(--navy);
  padding: 80px 24px 110px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}
.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% -10%, rgba(238,133,34,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 110%, rgba(238,133,34,.08) 0%, transparent 55%);
  pointer-events: none;
}
.policy-hero__inner {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}
.policy-hero__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(238,133,34,.12);
  border: 1px solid rgba(238,133,34,.28);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.policy-hero__title {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.policy-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin: 0;
}
.policy-hero__clip {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 56px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* ─── CONTENT SECTION ─── */
.policy-section {
  background: var(--off-white);
  padding: 64px 24px 80px;
  box-sizing: border-box;
}
.policy-container {
  max-width: 860px;
  margin: 0 auto;
}

/* ─── TOC ─── */
.policy-toc {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}
.policy-toc__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: block;
}
.policy-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.policy-toc__list li a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.policy-toc__list li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.policy-toc__list li a:hover { color: var(--orange); }

/* ─── BLOCKS ─── */
.policy-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 36px;
  margin-bottom: 24px;
  scroll-margin-top: 80px;
}
.policy-block__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.policy-block__num {
  width: 36px;
  height: 36px;
  background: var(--orange-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}
.policy-block__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}
.policy-block p {
  font-size: .94rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 12px;
}
.policy-block p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .policy-hero { padding: 60px 20px 96px; }
  .policy-section { padding: 48px 16px 60px; }
  .policy-block { padding: 24px 20px; }
  .policy-toc { padding: 20px; }
}

.page-hero-inner{
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
