.policy-shell {
  --policy-surface: rgba(255, 255, 255, 0.04);
  --policy-border: rgba(255, 255, 255, 0.12);
  --policy-muted: #9cb3d9;
  --policy-accent: #7bd3ff;
  --policy-surface-strong: rgba(255, 255, 255, 0.06);

  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2.5rem) clamp(1.25rem, 4vw, 3rem) 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #e2e8f0;
}

.policy-hero {
  background: linear-gradient(135deg, #0f223d, #1f3a64);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(123, 211, 255, 0.18), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(102, 126, 234, 0.2), transparent 35%);
  pointer-events: none;
}

.policy-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--policy-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.policy-hero h1 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #f8fafc;
  position: relative;
  z-index: 1;
}

.policy-hero__lead {
  margin: 0;
  max-width: 760px;
  color: #d7e3ff;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.policy-meta {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.policy-pill {
  min-width: 180px;
  border: 1px solid var(--policy-border);
  background: var(--policy-surface);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.policy-pill__label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--policy-muted);
}

.policy-pill__value {
  font-weight: 700;
  color: #f8fafc;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.policy-card {
  background: var(--policy-surface);
  border: 1px solid var(--policy-border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.policy-card__eyebrow {
  color: var(--policy-accent);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.policy-card__lead {
  margin: 0.6rem 0 0.85rem;
  color: #d7e3ff;
  font-size: 0.98rem;
  line-height: 1.55;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.policy-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #e2e8f0;
  line-height: 1.45;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--policy-accent);
  box-shadow: 0 0 0 4px rgba(123, 211, 255, 0.15);
}

.policy-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.policy-detail {
  background: linear-gradient(180deg, var(--policy-surface-strong), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--policy-border);
  border-radius: 16px;
  padding: 1.25rem;
  color: #e2e8f0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.policy-detail h3 {
  margin: 0 0 0.5rem;
  color: #f8fafc;
}

.policy-detail p {
  margin: 0 0 0.75rem;
  color: #d7e3ff;
  line-height: 1.55;
}

.policy-cta {
  background: #0e1d33;
  border: 1px solid var(--policy-border);
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.policy-cta__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.policy-cta h2 {
  margin: 0.3rem 0 0.4rem;
  color: #f8fafc;
}

.policy-cta p {
  margin: 0;
  max-width: 680px;
  color: #d7e3ff;
}

.policy-contact {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.policy-contact__item {
  min-width: 220px;
  border: 1px solid var(--policy-border);
  background: var(--policy-surface);
  color: #f8fafc;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.policy-contact__item:hover,
.policy-contact__item:focus-visible {
  border-color: var(--policy-accent);
  box-shadow: 0 18px 38px rgba(123, 211, 255, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.policy-contact__label {
  font-size: 0.85rem;
  color: var(--policy-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-contact__value {
  font-weight: 700;
}

@media (max-width: 900px) {
  .policy-shell {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .policy-cta__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-cta p {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .policy-hero h1 {
    font-size: 1.85rem;
  }

  .policy-grid,
  .policy-detail-grid {
    grid-template-columns: 1fr;
  }
}
