/*!
 * collections.css - http://kodester.com/
 * Version - 2.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2026 Kasanova
 */

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  position: relative;
  border-radius: var(--r3);
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(8,135,85,.85) 0%, rgba(4,90,58,.75) 50%, rgba(0,0,0,.55) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,135,85,.9) 0%, rgba(6,111,70,.78) 50%, rgba(0,0,0,.5) 100%);
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: 10%;
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 36px 24px;
}
.page-hero-inner h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-hero-inner h1 i {
  color: rgba(255,255,255,.85);
  font-size: 1.3rem;
}
.page-hero-inner p {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== TERMS INFO BAR ===== */
.terms-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: var(--r2);
  margin-bottom: 20px;
}
.terms-info-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.terms-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  background: var(--grng);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grn);
  font-size: 1rem;
  flex-shrink: 0;
}
.terms-info-text h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 1px;
}
.terms-info-text p {
  font-size: .7rem;
  color: var(--tx2);
  line-height: 1.4;
}
.terms-info-badge {
  padding: 5px 14px;
  background: var(--grng);
  color: var(--grn);
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== TABLE OF CONTENTS ===== */
.terms-toc {
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: var(--r2);
  padding: 20px;
  margin-bottom: 24px;
}
.terms-toc h3 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.terms-toc h3 i {
  color: var(--grn);
  font-size: .9rem;
}
.terms-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 16px;
}
.terms-toc-list li {
  padding: 6px 0;
}
.terms-toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  color: var(--tx2);
  transition: .15s;
  padding: 4px 10px;
  border-radius: var(--r);
}
.terms-toc-list li a:hover {
  background: var(--grng);
  color: var(--grn);
}
.terms-toc-list li a .toc-num {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--s3);
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 700;
  color: var(--tx3);
  flex-shrink: 0;
  transition: .15s;
}
.terms-toc-list li a:hover .toc-num {
  background: var(--grn);
  border-color: var(--grn);
  color: #fff;
}

/* ===== TERMS CONTENT CARD ===== */
.terms-content {
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: var(--r3);
  overflow: hidden;
  margin-bottom: 24px;
}

/* Terms intro */
.terms-intro {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--bd);
}
.terms-intro h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--tx);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.terms-intro h2 i {
  color: var(--grn);
  font-size: 1.1rem;
}
.terms-intro p {
  font-size: .82rem;
  color: var(--tx2);
  line-height: 1.7;
}

/* Terms section */
.terms-section {
  padding: 24px 28px;
  border-bottom: 1px solid var(--bd);
  transition: .15s;
}
.terms-section:last-child {
  border-bottom: none;
}
.terms-section:hover {
  background: var(--grng2);
}

.terms-section-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.terms-section-num {
  width: 30px;
  height: 30px;
  border-radius: var(--r);
  background: var(--grng);
  border: 1px solid rgba(8,135,85,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .74rem;
  font-weight: 800;
  color: var(--grn);
  flex-shrink: 0;
  margin-top: 2px;
}
.terms-section-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--tx);
  line-height: 1.4;
}

/* Terms text content */
.terms-section p {
  font-size: .8rem;
  color: var(--tx2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.terms-section p:last-child {
  margin-bottom: 0;
}
.terms-section p strong {
  color: var(--tx);
  font-weight: 600;
}

/* Ordered lists */
.terms-section ol {
  padding-left: 20px;
  margin: 12px 0;
}
.terms-section ol > li {
  font-size: .8rem;
  color: var(--tx2);
  line-height: 1.75;
  margin-bottom: 8px;
  padding-left: 4px;
}
.terms-section ol > li:last-child {
  margin-bottom: 0;
}

/* Unordered lists */
.terms-section ul {
  padding-left: 20px;
  margin: 12px 0;
  list-style-type: disc;
}
.terms-section ul > li {
  font-size: .8rem;
  color: var(--tx2);
  line-height: 1.75;
  margin-bottom: 8px;
  padding-left: 4px;
}
.terms-section ul > li:last-child {
  margin-bottom: 0;
}

/* Sub-heading within section */
.terms-section h4 {
  font-size: .86rem;
  font-weight: 700;
  color: var(--tx);
 margin: 20px 0 10px;
  padding-top: 16px;
  border-top: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 8px;
}
.terms-section h4::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--grn);
  border-radius: 2px;
  flex-shrink: 0;
}
.terms-section > p:first-of-type + h4,
.terms-section > h4:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Nested list */
.terms-section ol.text-list {
  padding-left: 18px;
  margin: 6px 0 12px 0;
  list-style-type: lower-alpha;
}
.terms-section ol.text-list > li {
  font-size: .78rem;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ===== TERMS FOOTER NOTE ===== */
.terms-footer-note {
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: var(--r2);
  padding: 18px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.terms-footer-note i {
  font-size: 1.1rem;
  color: var(--grn);
  flex-shrink: 0;
  margin-top: 1px;
}
.terms-footer-note p {
  font-size: .78rem;
  color: var(--tx2);
  line-height: 1.65;
}
.terms-footer-note p strong {
  color: var(--tx);
  font-weight: 600;
}

/* ===== TERMS BACK TO TOP ===== */
.terms-back-top {
  text-align: center;
  margin-bottom: 24px;
}
.terms-back-top a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--grn);
  padding: 8px 20px;
  background: var(--grng);
  border-radius: 20px;
  transition: .2s;
}
.terms-back-top a:hover {
  background: var(--grn);
  color: #fff;
}

/* Privacy highlight badges */
.privacy-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.privacy-badge-list .priv-badge {
  padding: 5px 14px;
  background: var(--s3);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  font-size: .72rem;
  font-weight: 600;
  color: var(--tx2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: .15s;
}
.privacy-badge-list .priv-badge i {
  color: var(--grn);
  font-size: .78rem;
}
.privacy-badge-list .priv-badge:hover {
  border-color: var(--grn);
  color: var(--grn);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.contact-card {
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: var(--r3);
  padding: 24px;
  transition: .15s;
}
.contact-card:hover {
  border-color: var(--grn);
  background: var(--grng2);
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r2);
  background: var(--grng);
  border: 1px solid rgba(8,135,85,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grn);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.contact-card-body h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 8px;
}
.contact-card-body p {
  font-size: .8rem;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 0;
}
.contact-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-address span {
  font-size: .8rem;
  color: var(--tx2);
  line-height: 1.6;
}
.contact-phone {
  font-size: .92rem !important;
  font-weight: 700 !important;
  color: var(--grn) !important;
}
.contact-email {
  font-size: .88rem !important;
  font-weight: 600 !important;
  color: var(--grn) !important;
}

/* ===== LICENSE COMPARISON TABLE ===== */
.license-compare-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border: 1px solid var(--bd);
  border-radius: var(--r2);
  overflow: hidden;
  margin: 16px 0;
}
.lc-head,
.lc-row {
  display: contents;
}
.lc-head .lc-feature,
.lc-head .lc-regular,
.lc-head .lc-extended {
  padding: 12px 14px;
  background: var(--grng);
  font-size: .76rem;
  font-weight: 700;
  color: var(--tx);
  border-bottom: 1px solid var(--bd);
}
.lc-head .lc-regular,
.lc-head .lc-extended {
  text-align: center;
  border-left: 1px solid var(--bd);
}
.lc-feature,
.lc-regular,
.lc-extended {
  padding: 10px 14px;
  font-size: .78rem;
  color: var(--tx2);
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
}
.lc-regular,
.lc-extended {
  text-align: center;
  border-left: 1px solid var(--bd);
  justify-content: center;
  font-size: .9rem;
}
.lc-row:last-child .lc-feature,
.lc-row:last-child .lc-regular,
.lc-row:last-child .lc-extended {
  border-bottom: none;
}
.lc-highlight .lc-feature,
.lc-highlight .lc-regular,
.lc-highlight .lc-extended {
  background: var(--grng2);
}

/* ===== API PAGE ===== */
.api-base-url {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  font-family: 'Courier New', monospace;
  letter-spacing: .3px;
  backdrop-filter: blur(4px);
}
.api-base-url i {
  font-size: .9rem;
  opacity: .8;
}

/* License demo */
.api-license-demo {
  background: var(--s3);
  border: 1px solid var(--bd);
  border-radius: var(--r2);
  padding: 20px;
  margin: 16px 0;
}
.api-license-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--tx3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.api-license-key {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--grn);
  letter-spacing: 1px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.api-dash {
  color: var(--tx3);
  margin: 0 2px;
}
.api-license-breakdown {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.api-license-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.api-group-label {
  font-size: .62rem;
  color: var(--tx3);
  font-weight: 600;
}
.api-group-chars {
  font-size: .66rem;
  color: var(--tx2);
  background: var(--s2);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.api-license-sep {
  color: var(--tx3);
  font-size: .8rem;
}

/* Code blocks */
.api-code-block {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: var(--r2);
  overflow: hidden;
  margin: 12px 0;
}
.api-code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #1e293b;
  font-size: .72rem;
  font-weight: 600;
  color: #94a3b8;
}
.api-code-header i {
  font-size: .78rem;
}
.api-code-header-success {
  background: #064e3b;
  color: #6ee7b7;
}
.api-code-header-error {
  background: #450a0a;
  color: #fca5a5;
}
.api-code-block pre {
  margin: 0;
  padding: 16px;
  overflow-x: auto;
}
.api-code-block code {
  font-family: 'Courier New', monospace;
  font-size: .74rem;
  line-height: 1.7;
  color: #e2e8f0;
}

/* Endpoint list */
.api-endpoint-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 14px 0;
}
.api-endpoint {
  background: var(--s3);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 14px 16px;
  transition: .15s;
}
.api-endpoint:hover {
  border-color: var(--grn);
}
.api-endpoint p {
  font-size: .78rem;
  color: var(--tx2);
  line-height: 1.6;
  margin: 8px 0 0 0 !important;
}
.api-endpoint-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.api-method {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.api-method-get {
  background: #064e3b;
  color: #6ee7b7;
}
.api-method-post {
  background: #1e3a5f;
  color: #93c5fd;
}
.api-method-delete {
  background: #450a0a;
  color: #fca5a5;
}
.api-path {
  font-family: 'Courier New', monospace;
  font-size: .76rem;
  font-weight: 600;
  color: var(--tx);
}

/* Params table */
.api-params-table {
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  margin: 12px 0;
}
.api-param-row {
  display: grid;
  grid-template-columns: 140px 80px 1fr;
}
.api-param-head {
  background: var(--grng);
}
.api-param-row.api-param-head > div {
  padding: 8px 12px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--tx);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.api-param-row:not(.api-param-head) > div {
  padding: 8px 12px;
  font-size: .74rem;
  color: var(--tx2);
  border-top: 1px solid var(--bd);
}
.api-param-row .api-param-name code {
  background: var(--s3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .7rem;
  color: var(--grn);
  font-family: 'Courier New', monospace;
}
.api-param-row .api-param-type {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: var(--tx3);
  font-size: .7rem;
}

/* ===== GUIDE PAGE ===== */
.guide-tab-header {
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--grng) 0%, rgba(8,135,85,.12) 100%);
  border-bottom: 2px solid var(--grn);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.guide-tab-header-buyer {
  border-bottom-color: rgba(8,135,85,.3);
  background: linear-gradient(135deg, var(--s3) 0%, rgba(8,135,85,.06) 100%);
  border-top: 1px solid var(--bd);
}
.guide-tab-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: var(--grn);
  color: #fff;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.guide-tab-header-buyer .guide-tab-label {
  background: var(--s3);
  color: var(--grn);
  border: 1px solid rgba(8,135,85,.3);
}
.guide-tab-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tx);
  margin-top: 4px;
}
.guide-tab-header p {
  font-size: .78rem;
  color: var(--tx2);
  line-height: 1.6;
  margin: 0;
}

/* Payment method cards */
.guide-payment-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}
.guide-payment-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--s3);
  border: 1px solid var(--bd);
  border-radius: var(--r2);
  transition: .2s;
}
.guide-payment-card:hover {
  border-color: var(--grn);
  background: var(--grng2);
}
.guide-payment-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r2);
  background: #0070ba;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.guide-payment-icon-stripe {
  background: #635bff;
}
.guide-payment-icon-bank {
  background: #0a7c3e;
}
.guide-payment-body h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 8px;
  padding-top: 0 !important;
  border-top: none !important;
  display: block !important;
}
.guide-payment-body h4::before {
  display: none !important;
}
.guide-payment-body p {
  font-size: .78rem;
  color: var(--tx2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.guide-payment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.guide-payment-features span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 600;
  color: var(--tx2);
}
.guide-payment-features span i {
  color: var(--grn);
  font-size: .72rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-card {
    padding: 18px;
  }
  .contact-card-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .contact-card-body h3 {
    font-size: .84rem;
  }
  .contact-card-body p {
    font-size: .76rem;
  }
  .contact-address span {
    font-size: .76rem;
  }
  .contact-phone {
    font-size: .86rem !important;
  }
  .contact-email {
    font-size: .82rem !important;
  }
  .page-hero {
    min-height: 180px;
    margin-bottom: 16px;
  }
  .page-hero-inner {
    padding: 28px 16px;
  }
  .page-hero-inner h1 {
    font-size: 1.2rem;
  }
  .page-hero-inner p {
    font-size: .82rem;
  }

  .terms-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 10px;
  }
  .terms-info-badge {
    align-self: flex-start;
  }

  .terms-toc {
    padding: 16px;
  }
  .terms-toc-list {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .terms-intro {
    padding: 20px 18px 16px;
  }
  .terms-intro h2 {
    font-size: 1rem;
  }
  .terms-intro p {
    font-size: .78rem;
  }

  .terms-section {
    padding: 18px;
  }
  .terms-section-header {
    gap: 10px;
    margin-bottom: 12px;
  }
  .terms-section-num {
    width: 26px;
    height: 26px;
    font-size: .68rem;
    border-radius: 6px;
  }
  .terms-section-title {
    font-size: .86rem;
  }
  .terms-section p {
    font-size: .76rem;
    line-height: 1.7;
  }
  .terms-section ol > li {
    font-size: .76rem;
    line-height: 1.7;
  }
  .terms-section ul {
    padding-left: 18px;
    margin: 10px 0;
  }
  .terms-section ul > li {
    font-size: .76rem;
    line-height: 1.7;
  }
  .terms-section h4 {
    font-size: .82rem;
    margin: 16px 0 8px;
    padding-top: 14px;
  }
  .terms-section ol.text-list > li {
    font-size: .74rem;
  }
  .privacy-badge-list {
    gap: 6px;
  }
  .privacy-badge-list .priv-badge {
    font-size: .68rem;
    padding: 4px 10px;
  }

  .terms-footer-note {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }
  .api-base-url {
    font-size: .72rem;
    padding: 6px 12px;
  }
  .api-license-key {
    font-size: 1rem;
  }
  .api-code-block code {
    font-size: .68rem;
  }
  .api-endpoint-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .api-param-row {
    grid-template-columns: 100px 60px 1fr;
  }
  .api-param-row:not(.api-param-head) > div {
    font-size: .68rem;
    padding: 6px 8px;
  }
  .guide-tab-header {
    padding: 18px;
  }
  .guide-tab-title {
    font-size: .96rem;
  }
  .guide-tab-label {
    font-size: .64rem;
    padding: 3px 12px;
  }
  .guide-payment-card {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }
  .guide-payment-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .guide-payment-features {
    gap: 6px;
  }
  .guide-payment-features span {
    font-size: .64rem;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 160px;
  }
  .page-hero-inner {
    padding: 22px 14px;
  }
  .page-hero-inner h1 {
    font-size: 1.05rem;
    gap: 8px;
  }
  .page-hero-inner p {
    font-size: .76rem;
  }

  .terms-info-icon {
    width: 32px;
    height: 32px;
    font-size: .9rem;
  }
  .terms-info-text h4 {
    font-size: .76rem;
  }
  .terms-info-text p {
    font-size: .66rem;
  }

  .terms-toc {
    padding: 14px;
  }
  .terms-toc h3 {
    font-size: .78rem;
    margin-bottom: 12px;
  }
  .terms-toc-list li a {
    font-size: .72rem;
    padding: 4px 8px;
  }

  .terms-intro {
    padding: 16px 14px 14px;
  }
  .terms-intro h2 {
    font-size: .92rem;
    gap: 6px;
  }
  .terms-intro p {
    font-size: .74rem;
  }

  .terms-section {
    padding: 14px;
  }
  .terms-section-header {
    gap: 8px;
    margin-bottom: 10px;
  }
  .terms-section-num {
    width: 24px;
    height: 24px;
    font-size: .62rem;
  }
  .terms-section-title {
    font-size: .8rem;
  }
  .terms-section p {
    font-size: .74rem;
    margin-bottom: 10px;
  }
  .terms-section ol {
    padding-left: 16px;
    margin: 10px 0;
  }
  .terms-section ol > li {
    font-size: .72rem;
    margin-bottom: 6px;
  }
  .terms-section ul {
    padding-left: 16px;
    margin: 10px 0;
  }
  .terms-section ul > li {
    font-size: .72rem;
    margin-bottom: 6px;
  }
  .terms-section h4 {
    font-size: .78rem;
    margin: 14px 0 8px;
    padding-top: 12px;
    gap: 6px;
  }
  .terms-section h4::before {
    width: 3px;
    height: 14px;
  }
  .terms-section ol.text-list {
    padding-left: 14px;
  }
  .terms-section ol.text-list > li {
    font-size: .7rem;
  }
  .privacy-badge-list .priv-badge {
    font-size: .66rem;
    padding: 4px 8px;
  }

  .terms-footer-note {
    padding: 14px 12px;
  }
  .terms-footer-note p {
    font-size: .72rem;
  }
  .api-base-url {
    font-size: .66rem;
    padding: 5px 10px;
    gap: 6px;
  }
  .api-license-demo {
    padding: 14px;
  }
  .api-license-key {
    font-size: .86rem;
    letter-spacing: .5px;
  }
  .api-license-breakdown {
    gap: 4px;
  }
  .api-code-block code {
    font-size: .64rem;
    padding: 12px;
  }
  .api-code-block pre {
    padding: 12px;
  }
  .api-endpoint {
    padding: 10px 12px;
  }
  .api-param-row {
    grid-template-columns: 1fr;
  }
  .api-param-row .api-param-type {
    display: none;
  }
  .api-param-row:not(.api-param-head) > div {
    font-size: .66rem;
  }
  .guide-tab-header {
    padding: 14px;
  }
  .guide-tab-title {
    font-size: .86rem;
  }
  .guide-tab-header p {
    font-size: .72rem;
  }
  .guide-payment-card {
    padding: 14px;
    gap: 12px;
  }
  .guide-payment-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .guide-payment-body p {
    font-size: .74rem;
  }
}
