.policy-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,16,30,0.8), rgba(7,16,30,0.95));
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(37,99,235,0.1);
  opacity: 1 !important;
  visibility: visible !important;
}

.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(37,99,235,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(147,197,253,0.08) 0%, transparent 50%);
  z-index: -1;
}

.ph-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.policy-hero .orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.policy-hero .orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.4), transparent 70%);
  top: -200px;
  right: -150px;
  animation: float 20s infinite ease-in-out;
}

.policy-hero .orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.3), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 25s infinite ease-in-out 2s;
}

.policy-hero .orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(147,197,253,0.3), transparent 70%);
  top: 50px;
  left: 50%;
  animation: float 30s infinite ease-in-out 5s;
}

.ph-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.policy-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.policy-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.policy-date {
  color: var(--blue-l);
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(0deg, transparent 24%, rgba(37,99,235,0.05) 25%, rgba(37,99,235,0.05) 26%, transparent 27%),
    linear-gradient(90deg, transparent 24%, rgba(37,99,235,0.05) 25%, rgba(37,99,235,0.05) 26%, transparent 27%);
  background-size: 60px 60px;
  z-index: 0;
  opacity: 0.3;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

/* POLICY CONTENT SECTION */
.policy-content {
  padding: 80px 0;
  background: var(--white);
  opacity: 1 !important;
  visibility: visible !important;
}

.policy-wrapper,
.policy-body,
.policy-section,
.policy-toc {
  opacity: 1 !important;
  visibility: visible !important;
}

.policy-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.policy-toc {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 30px;
  background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(99,102,241,0.05));
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: var(--r);
  backdrop-filter: blur(10px);
}

.policy-toc h3 {
  font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--dark2);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-toc h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--gradient);
  border-radius: 2px;
}

.policy-toc ul {
  list-style: none;
}

.policy-toc li {
  margin-bottom: 12px;
}

.policy-toc a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  display: block;
  padding: 8px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 8px 8px 0;
}

.policy-toc a:hover {
  color: var(--blue-l);
  border-left-color: var(--blue-l);
  background: rgba(37,99,235,0.08);
  transform: translateX(4px);
}

.policy-toc a:active {
  color: var(--blue);
  border-left-color: var(--blue);
}

.policy-body {
  padding: 0;
}

.policy-section {
  margin-bottom: 60px;
  scroll-margin-top: 120px;
}

.policy-section h2 {
  font-size: 1.8rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--dark2);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(37,99,235,0.2);
  position: relative;
}

.policy-section h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
}

.policy-section h3 {
  font-size: 1.2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--dark);
  margin-top: 30px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h3::before {
  content: '';
  width: 3px;
  height: 18px;
  background: var(--blue-l);
  border-radius: 1px;
  flex-shrink: 0;
}

.policy-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 18px;
}

.policy-section p a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.policy-section p a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.policy-section p a:hover::after {
  width: 100%;
}

.policy-list {
  list-style: none;
  margin: 20px 0 20px 0;
  padding: 0;
}

.policy-list li {
  padding: 12px 0 12px 28px;
  color: var(--slate);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.policy-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
  font-size: 1.2rem;
  top: 10px;
}

.policy-list li strong {
  color: var(--dark2);
  font-weight: 600;
}

.contact-info {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(99,102,241,0.08));
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--r);
  padding: 30px;
  margin: 30px 0;
  backdrop-filter: blur(10px);
}

.contact-info p {
  color: var(--dark2);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.contact-info strong {
  color: var(--dark);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--blue-l);
}

.policy-footer-section {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 2px solid rgba(37,99,235,0.1);
}

.policy-footer-section h2 {
  border-bottom: none;
  padding-bottom: 0;
}

.policy-footer-section h2::before {
  display: none;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 1 !important;
  visibility: visible !important;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--blue-l);
  transform: translateX(4px);
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* RESPONSIVE DESIGN */

@media (max-width: 768px) {
  .policy-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .policy-toc {
    position: relative;
    top: auto;
    margin-bottom: 40px;
  }

  .policy-hero {
    padding: 80px 0 60px;
    min-height: 300px;
  }

  .policy-hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .policy-hero p {
    font-size: 1rem;
  }

  .policy-section {
    margin-bottom: 40px;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }

  .contact-info {
    padding: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .policy-content {
    padding: 40px 0;
  }

  .policy-hero {
    padding: 60px 0 40px;
    min-height: 250px;
  }

  .policy-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .policy-hero p {
    font-size: 0.95rem;
  }

  .ph-inner {
    padding: 0 20px;
  }

  .policy-section {
    margin-bottom: 30px;
  }

  .policy-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .policy-section h3 {
    font-size: 1rem;
  }

  .policy-section p {
    font-size: 0.95rem;
  }

  .policy-list li {
    padding: 10px 0 10px 24px;
    font-size: 0.9rem;
  }

  .contact-info {
    padding: 15px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer {
    padding: 40px 0 20px;
  }
}

/* ANIMATIONS & TRANSITIONS */

.policy-section {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-section.reveal {
  animation: fadeInUp 0.6s ease-out;
}

/* ACCESSIBILITY */

.policy-toc a:focus,
.footer-col a:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

@media print {
  .policy-toc,
  .policy-hero,
  .footer {
    display: none;
  }

  .policy-content {
    padding: 0;
  }

  .policy-section {
    page-break-inside: avoid;
  }

  body {
    background: white;
  }
}
