/* ============================================================
   BTT Translations — Page Content Styles
   Applies to all inner page .page-content areas
   ============================================================ */

.page-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.8px;
  line-height: 1.15;
  margin: 0 0 20px;
}

.page-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.4px;
  line-height: 1.2;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-content h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--grad);
  border-radius: 2px;
  flex: none;
}

.page-content p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
}

.page-content p:last-child {
  margin-bottom: 0;
}

.page-content ul {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-content ul li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  padding: 10px 14px 10px 40px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  position: relative;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.page-content strong {
  color: var(--ink);
  font-weight: 600;
}

.page-content em {
  font-style: italic;
  color: var(--ink);
}

.page-content a.inline-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 64, 15, .3);
  transition: border-color .2s;
}

.page-content a.inline-link:hover {
  border-color: var(--gold);
}

/* FAQ-style question/answer pairs */
.page-content p + p {
  margin-top: 0;
}

/* Numbered list detection — lines starting with digits */
.page-content .numbered-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.page-content .numbered-item__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--line);
  flex: none;
  line-height: 1;
  min-width: 40px;
}

.page-content .numbered-item__body h3 {
  margin: 0 0 8px;
}

.page-content .numbered-item__body h3::before {
  display: none;
}

/* Trust/ISO badge strip */
.page-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  align-items: center;
  border-left: 3px solid var(--gold);
}

.page-trust-strip span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}

.page-trust-strip .sep {
  width: 1px;
  height: 18px;
  background: var(--line);
}

/* Client entry */
.client-entry {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.client-entry:last-child {
  border-bottom: none;
}

.client-entry__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.client-entry__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* FAQ entry */
.faq-entry {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq-entry:last-child {
  border-bottom: none;
}

.faq-entry__q {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-entry__q::before {
  content: 'Q';
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  border-radius: 4px;
  padding: 2px 6px;
  flex: none;
  margin-top: 2px;
}

.faq-entry__a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 28px;
}

/* Mobile */
@media (max-width: 768px) {
  .page-content h2 { font-size: 22px; }
  .page-content h3 { font-size: 16px; }
  .page-content p { font-size: 15px; }
  .page-trust-strip { flex-direction: column; gap: 10px; }
  .page-trust-strip .sep { display: none; }
}
