/* Proxy Grove — Refund Policy */
.pg-refund-page {
  overflow-x: clip;
}

.pg-refund-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 1.25rem;
}

.pg-refund-meta__item {
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.75rem;
  background: rgb(19 0 154 / 0.06);
  border: 1px solid rgb(19 0 154 / 0.1);
  min-width: 10rem;
}

.pg-refund-meta__item span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text-body) 65%, transparent);
}

.pg-refund-meta__item strong {
  font-size: 0.92rem;
  color: var(--color-text-heading);
}

.pg-refund-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .pg-refund-layout {
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.pg-refund-toc {
  position: sticky;
  top: 5.5rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgb(19 0 154 / 0.12);
  background: color-mix(in srgb, #fff 92%, rgb(19 0 154 / 0.04));
  max-height: calc(100vh - 7rem);
  overflow: auto;
}

@media (min-width: 1024px) {
  .pg-refund-toc {
    display: flex;
  }
}

.pg-refund-toc__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text-body) 65%, transparent);
}

.pg-refund-toc__link {
  display: block;
  padding: 0.4rem 0.55rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text-body) 82%, transparent);
  border-left: 2px solid transparent;
}

.pg-refund-toc__link:hover,
.pg-refund-toc__link:focus-visible {
  color: var(--color-text-heading);
  background: rgb(19 0 154 / 0.05);
  outline: none;
}

.pg-refund-toc__link.is-active {
  color: #13009a;
  border-left-color: #137f15;
  background: rgb(19 127 21 / 0.06);
}

.pg-refund-mobile-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .pg-refund-mobile-toc {
    display: none;
  }
}

.pg-refund-mobile-toc .pg-refund-toc__link {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgb(19 0 154 / 0.14);
  border-left: 1px solid rgb(19 0 154 / 0.14);
  background: #fff;
  color: var(--color-text-heading);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
}

.pg-refund-mobile-toc .pg-refund-toc__link.is-active {
  border-color: rgb(19 127 21 / 0.45);
  background: rgb(19 127 21 / 0.08);
}

.pg-refund-section {
  scroll-margin-top: 6rem;
  margin-bottom: 2.25rem;
  padding-bottom: 0.25rem;
}

.pg-refund-section h2 {
  margin: 0 0 0.85rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--color-text-heading);
}

.pg-refund-section h3 {
  margin: 1.25rem 0 0.5rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.pg-refund-section p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--color-text-body) 88%, transparent);
}

.pg-refund-section ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.pg-refund-section li {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--color-text-body) 88%, transparent);
}

.pg-refund-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .pg-refund-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .pg-refund-cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pg-refund-cards--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pg-refund-cards--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.pg-refund-card {
  padding: 1.2rem 1.1rem 1.3rem;
  transition: transform 0.2s ease;
}

.pg-refund-card:hover {
  transform: translateY(-2px);
}

.pg-refund-card h3 {
  margin: 0 0 0.4rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.pg-refund-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-text-body) 78%, transparent);
}

.pg-refund-contact {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.35rem;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.pg-refund-contact h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.5rem;
  color: var(--color-text-heading);
}

.pg-refund-contact p {
  margin: 0;
  line-height: 1.6;
  color: color-mix(in srgb, var(--color-text-body) 80%, transparent);
}

.pg-refund-contact__tg {
  font-size: 1.1rem;
  font-weight: 700;
  color: #13009a;
  text-decoration: none;
}

.pg-refund-contact__tg:hover {
  text-decoration: underline;
}

.pg-refund-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

html.dark .pg-refund-toc,
html.dark .pg-refund-meta__item {
  background: color-mix(in srgb, var(--color-surface, #121212) 92%, #13009a);
}

html.dark .pg-refund-toc__link.is-active,
html.dark .pg-refund-contact__tg {
  color: #8b9cff;
}


.pg-refund-card--warn {
  border: 1px solid rgb(19 0 154 / 0.14);
  border-top: 3px solid #13009a;
}

.pg-refund-related {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .pg-refund-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .pg-refund-related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pg-refund-related a {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.pg-refund-related a:hover {
  transform: translateY(-2px);
}

.pg-refund-related h3 {
  margin: 0 0 0.4rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.pg-refund-related p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--color-text-body) 78%, transparent);
}


.pg-refund-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  counter-reset: none;
}

@media (min-width: 700px) {
  .pg-refund-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .pg-refund-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.pg-refund-step {
  position: relative;
  padding: 1.2rem 1.1rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid rgb(19 0 154 / 0.12);
  background: color-mix(in srgb, #fff 90%, rgb(19 0 154 / 0.03));
}

.pg-refund-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.7rem;
  border-radius: 0.65rem;
  background: #13009a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.pg-refund-step h3 {
  margin: 0 0 0.4rem;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.pg-refund-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-text-body) 78%, transparent);
}

html.dark .pg-refund-step {
  background: color-mix(in srgb, var(--color-surface, #121212) 92%, #13009a);
}
