/* ================================
   TERMS & CONDITIONS PAGE
================================ */

.terms-page{
  background: var(--ss-paper, #F7F2EA);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

/* Header */
.terms-hero{
  max-width: 52rem;
  margin: 3.25rem auto clamp(1.25rem, 3vw, 2rem); /* top | left/right | bottom */
  text-align: left;
}


.terms-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: rgba(20,25,30,0.6);
}

.terms-title{
  margin: 0.5rem 0 0.65rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(20,25,30,0.94);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.terms-sub{
  margin: 0;
  color: rgba(20,25,30,0.72);
  font-weight: 600;
  line-height: 1.55;
}

/* Main card */
.terms-card{
  max-width: 52rem;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
}

.terms-section + .terms-section{
  margin-top: 1.35rem;
}

.terms-section h2{
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(20,25,30,0.92);
}

.terms-section p{
  margin: 0;
  color: rgba(20,25,30,0.72);
  font-weight: 600;
  line-height: 1.65;
}

.terms-list{
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: rgba(20,25,30,0.72);
  font-weight: 600;
  line-height: 1.65;
}

.terms-list li + li{
  margin-top: 0.35rem;
}

.terms-divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 1.6rem 0 1.1rem;
}

/* Footer row */
.terms-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(20,25,30,0.65);
  font-weight: 700;
  font-size: 0.92rem;
}

.terms-back{
  text-decoration: none;
  font-weight: 800;
  color: rgba(20,25,30,0.86);
}

.terms-back:hover{
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

@media (max-width: 575.98px){
  .terms-meta{
    flex-direction: column;
    align-items: flex-start;
  }
}
