/* WWW.docx – company info, policies & terms */
.policies-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.www-contact-card {
  background: linear-gradient(135deg, #0a1628 0%, #1a237e 100%);
  color: #fff;
  border-radius: var(--radius-xl, 22px);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.15);
}
.www-contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.www-contact-card h3 i {
  color: var(--primary, #f58220);
}
.www-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem 1.5rem;
}
.www-contact-item {
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.95;
}
.www-contact-item strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold, #f5a623);
  margin-bottom: 0.2rem;
}
.www-contact-item a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.www-contact-item a:hover {
  color: var(--primary, #f58220);
}
.www-approvals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.www-approvals span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.why-www-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem 1.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.why-www-list li {
  font-size: 0.9rem;
  color: var(--text-muted, #666);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.why-www-list li i {
  color: #2e7d32;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.policy-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.policy-item {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.04);
  transition: box-shadow 0.25s ease;
}
.policy-item[open] {
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.08);
  border-color: rgba(245, 130, 32, 0.25);
}
.policy-item summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy, #0a1628);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.policy-item summary::-webkit-details-marker {
  display: none;
}
.policy-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--primary, #f58220);
  transition: transform 0.25s ease;
}
.policy-item[open] summary::after {
  transform: rotate(180deg);
}
.policy-item summary i {
  color: var(--primary, #f58220);
  margin-right: 0.5rem;
}
.policy-body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.86rem;
  color: #444;
  line-height: 1.65;
  border-top: 1px solid #f1f5f9;
}
.policy-body ol,
.policy-body ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}
.policy-body li {
  margin-bottom: 0.45rem;
}
.policy-body h5 {
  font-size: 0.88rem;
  color: var(--blue-dark, #0d47a1);
  margin: 1rem 0 0.5rem;
}
.policy-body h5:first-child {
  margin-top: 0.5rem;
}
.policy-highlight {
  background: #fff8f0;
  border-left: 3px solid var(--primary, #f58220);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  margin: 0.75rem 0;
  font-size: 0.84rem;
}
.policy-jurisdiction {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #f1f5f9;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy, #0a1628);
}

/* Standalone policy pages */
.policy-page-main {
  margin-top: calc(var(--topbar-h) + var(--header-h));
  padding: 2rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 40%);
  min-height: 50vh;
}
.policy-page-breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted, #666);
  margin-bottom: 1rem;
}
.policy-page-breadcrumb a {
  color: var(--blue, #1565c0);
}
.policy-page-breadcrumb a:hover {
  color: var(--primary, #f58220);
}
.policy-page-card {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 18px;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
}
.policy-page-card h1 {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  color: var(--navy, #0a1628);
  margin-bottom: 0.5rem;
  font-weight: 800;
}
.policy-page-card .policy-intro {
  color: var(--text-muted, #666);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #f1f5f9;
}
.policy-points {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: pol;
}
.policy-points > li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #333;
  counter-increment: pol;
}
.policy-points > li::before {
  content: counter(pol) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary, #f58220);
  min-width: 1.5rem;
}
.policy-points > li strong {
  color: var(--navy, #0a1628);
}
.policy-subhead {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark, #0d47a1);
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}
.policy-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f1f5f9;
}
.policy-page-links a {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  background: #f1f5f9;
  border-radius: 100px;
  color: var(--blue-dark, #0d47a1);
  transition: all 0.2s;
}
.policy-page-links a:hover,
.policy-page-links a.active {
  background: var(--primary, #f58220);
  color: #fff;
}
.policy-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.policy-index-card {
  display: block;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  text-align: center;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.04);
}
.policy-index-card:hover {
  border-color: var(--primary, #f58220);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(245, 130, 32, 0.15);
}
.policy-index-card i {
  font-size: 1.75rem;
  color: var(--primary, #f58220);
  margin-bottom: 0.65rem;
}
.policy-index-card h4 {
  font-size: 0.9rem;
  color: var(--navy, #0a1628);
  margin-bottom: 0.2rem;
}
.policy-index-card span {
  font-size: 0.75rem;
  color: var(--primary, #f58220);
  font-weight: 600;
}

.footer-approvals {
  padding: 1.25rem 0 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.footer-approvals h4 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  letter-spacing: 0.3px;
}
.footer-approval-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.75rem;
}
.footer-approval-chips span {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, #1a3ea8, #0d47a1);
  border: 1px solid rgba(132, 173, 255, 0.5);
  border-radius: 100px;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 4px 14px rgba(13, 71, 161, 0.35);
}
.footer-col p a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}
.footer-col p a:hover {
  color: var(--primary, #f58220);
}

.footer-contact-col h4 {
  margin-bottom: 0.85rem;
}
.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(3, 16, 44, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.footer-contact-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.45rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #fff;
  background: linear-gradient(135deg, #f58220, #ff9f45);
  box-shadow: 0 5px 12px rgba(245, 130, 32, 0.35);
}
.footer-contact-item strong {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.73rem;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.footer-contact-item a {
  display: block;
  font-size: 0.86rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-item a:hover {
  color: #ffcc9c;
}

.footer-payments {
  padding: 1rem 0 1.5rem;
  text-align: center;
}
.footer-payments h4 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-bottom: 0.9rem;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.pay-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(20, 45, 88, 0.12);
  box-shadow: 0 6px 14px rgba(8, 20, 42, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pay-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(8, 20, 42, 0.3);
}
.pay-badge .pay-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.pay-badge .pay-logo-wide {
  width: 34px;
  height: 18px;
}
.pay-badge.netbank .pay-logo {
  width: 26px;
  height: 26px;
}

@media (max-width: 768px) {
  .policies-section {
    padding: 2.5rem 0;
  }
  .www-contact-card {
    padding: 1.25rem 1rem;
  }
  .policy-item summary {
    font-size: 0.88rem;
    padding: 0.9rem 1rem;
  }
  .policy-body {
    padding: 0 1rem 1rem;
    font-size: 0.82rem;
  }
  .footer-contact-card {
    padding: 0.6rem;
  }
  .footer-contact-item {
    grid-template-columns: 28px 1fr;
    gap: 0.55rem;
    padding: 0.4rem;
  }
  .footer-contact-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .footer-contact-item strong {
    font-size: 0.68rem;
  }
  .footer-contact-item a {
    font-size: 0.8rem;
    line-height: 1.32;
  }
  .pay-badge {
    width: 46px;
    height: 46px;
  }
  .pay-badge .pay-logo {
    width: 24px;
    height: 24px;
  }
  .pay-badge .pay-logo-wide {
    width: 28px;
    height: 14px;
  }
  .footer-approvals h4 {
    font-size: 1.35rem;
  }
  .footer-approval-chips span {
    font-size: 0.72rem;
    padding: 0.4rem 0.75rem;
  }
}
