/* ============================================================
   Terms & Conditions — terms.css
   ============================================================ */

/* ── HERO ── */
/* .tc-hero {
  position: relative;
  background: var(--grad-dark);
  padding: 160px 6% 80px;
  text-align: center;
  overflow: hidden;
}
.tc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(102,23,255,.25) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(26,109,255,.15) 0%, transparent 55%);
  pointer-events: none;
}
.tc-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeUp .7s ease both;
}
.tc-breadcrumb {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.tc-breadcrumb span { color: var(--gold); }
.tc-hero-h1 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.tc-hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
} */

/* ── BODY ── */
.tc-body {
  padding: 72px 6% 80px;
  background: #fff;
}
.tc-container {
  /* max-width: 860px; */
  margin: 0 auto;
  font-size: .95rem;
  line-height: 1.85;
  color: #333;
}

.tc-container h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--midnight);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--indigo-t4);
}
.tc-container h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--midnight);
  margin: 32px 0 10px;
}
.tc-container h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--midnight);
  margin: 24px 0 8px;
}
.tc-container p {
  margin-bottom: 16px;
}
.tc-container ul,
.tc-container ol {
  margin: 12px 0 20px 24px;
}
.tc-container li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.tc-container ul li {
  list-style: disc;
}
.tc-container ol li {
  list-style: decimal;
}
.tc-container a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.tc-container a:hover {
  color: var(--sky);
}
.tc-container strong {
  font-weight: 600;
  color: var(--charcoal);
}
.tc-container em {
  font-style: italic;
}
.tc-container blockquote {
  border-left: 3px solid var(--indigo);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--indigo-t4);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #444;
}
.tc-container hr {
  border: none;
  border-top: 1px solid var(--silver);
  margin: 36px 0;
}
.tc-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.tc-container th,
.tc-container td {
  border: 1px solid var(--silver);
  padding: 10px 14px;
  text-align: left;
  font-size: .88rem;
}
.tc-container th {
  background: var(--indigo-t4);
  font-weight: 600;
  color: var(--midnight);
}

/* ── CTA ── */
/* .tc-cta {
  background: var(--grad-dark);
  padding: 72px 6%;
  text-align: center;
}
.tc-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.tc-cta-h {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.tc-cta-h span {
  color: var(--gold);
}
.tc-cta-p {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 28px;
}
.tc-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--midnight);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.tc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,187,78,.35);
} */

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .tc-hero { padding: 130px 5% 56px; }
  .tc-body { padding: 48px 5% 56px; }
  .tc-container h2 { font-size: 1.3rem; margin-top: 36px; }
  .tc-container h3 { font-size: 1.05rem; }
  .tc-cta { padding: 56px 5%; }
}
