/* ============================================
   TOS PAGE STYLES
   (body background + .price-nav + .pfooter-socials inherited from price.css)
   ============================================ */

/* ── Section card — same glass style as price.css .pcat ── */
.tos-card {
  width: 85%;
  max-width: calc(var(--max-width) * 0.85);
  margin-inline: auto;
  margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(192, 132, 252, 0.1);
  padding: var(--space-8);
}

/* ✅ Green tint */
.tos-card--do {
  background: rgba(236, 253, 243, 0.7);
  border-color: rgba(134, 239, 172, 0.7);
}

/* ❌ Red tint */
.tos-card--dont {
  background: rgba(254, 242, 242, 0.7);
  border-color: rgba(252, 165, 165, 0.7);
}

/* ── Two-column ✅/❌ wrapper ── */
.tos-duo-wrap {
  width: 85%;
  max-width: calc(var(--max-width) * 0.85);
  margin-inline: auto;
  margin-bottom: 36px;
}

.tos-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

/* Cards inside duo: no individual width/margin */
.tos-duo .tos-card {
  width: auto;
  max-width: none;
  margin: 0;
}

/* ── Card title ── */
.tos-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: var(--space-6);
}

/* ── List ── */
.tos-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.tos-list li {
  font-size: var(--text-lg);
  color: rgba(26, 26, 46, 0.85);
  line-height: 1.65;
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
}

.tos-list li::before {
  content: '—';
  color: var(--color-purple-dark);
  font-weight: 900;
  flex-shrink: 0;
}

.tos-card--do .tos-list li::before {
  content: '✓';
  color: #16a34a;
}

.tos-card--dont .tos-list li::before {
  content: '✕';
  color: #dc2626;
}

/* Inline note (parenthetical info) */
.tos-note {
  color: var(--color-purple-dark);
  font-weight: 700;
  font-size: 0.9em;
  margin-left: 4px;
}

/* ── Bottom contacts block ── */
.tos-footer {
  width: 85%;
  max-width: calc(var(--max-width) * 0.85);
  margin-inline: auto;
  margin-bottom: var(--space-4);
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(192, 132, 252, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
}

.tos-footer__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-dark);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .tos-duo-wrap,
  .tos-card,
  .tos-footer {
    width: 92%;
  }

  .tos-duo {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .tos-card__title {
    font-size: 1.6rem;
  }

  .tos-list li {
    font-size: var(--text-base);
  }
}

@media (min-width: 701px) and (max-width: 1023px) {
  .tos-duo-wrap,
  .tos-card,
  .tos-footer {
    width: 90%;
  }
}
