/* === Policy Page (fits the existing design system) === */
:root {
  /* uses your existing variables from home.css */
}

/* Soft, airy header similar to your family/start sections */
.policy-hero {
  background: linear-gradient(135deg, #eaf2ff 0%, #e7fff6 100%);
  position: relative;
  overflow: hidden;
  padding: 56px 0 32px;
}
.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 220px at 15% 10%, rgba(0,195,255,0.10), transparent 60%),
    radial-gradient(800px 220px at 85% 0%, rgba(0,255,136,0.10), transparent 60%);
  pointer-events: none;
}
.policy-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--brand-dark);
  margin: 0 0 10px 0;
}
.policy-lead {
  color: #284a5a;
  opacity: 0.95;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  margin: 0;
}

/* Body */
.policy-body {
  background: #fff;
  padding: 28px 0 72px;
}

/* Numbered list styled like your step cards */
.policy-list {
  counter-reset: policy-counter;
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 18px;
  margin: 0 0 24px 0;
}
.policy-list > li {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 18px 18px 18px 60px;
  backdrop-filter: saturate(140%) blur(2px);
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
@media (hover:hover) {
  .policy-list > li:hover {
    transform: translateY(-1px);
    border-color: rgba(0,195,255,0.25);
    background: rgba(255,255,255,0.96);
  }
}
.policy-list > li::before {
  counter-increment: policy-counter;
  content: counter(policy-counter);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ff88, #00c3ff);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,195,255,0.22);
}

/* Nested bullets inside point 3 */
.policy-list ul {
  margin: 10px 0 0 0;
  padding-left: 18px;
}
.policy-list ul li {
  margin: 6px 0;
  color: #2a2f3b;
}

/* Callout box at the end */
.policy-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px dashed rgba(0,195,255,0.45);
  border-radius: 14px;
  background: rgba(0,195,255,0.06);
  padding: 14px 16px;
  color: #0f172a;
}
.policy-callout i {
  background: linear-gradient(135deg, #00ff88, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .policy-hero { padding: 44px 0 24px; }
  .policy-list > li { padding-left: 56px; }
  .policy-list > li::before { width: 32px; height: 32px; }
}
