/* ============================================================
   BTT Translations — Inner Page Components
   Matches the homepage design language exactly.
   ============================================================ */

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

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 16px 4px 0;
}

.trust-strip__item [data-lucide] {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex: none;
}

.trust-strip__sep {
  width: 1px;
  height: 18px;
  background: var(--line);
  margin-right: 16px;
  flex: none;
}

/* ── Section heading ─────────────────────────────────────── */
.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin: 52px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line);
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

/* First heading on page — no top margin */
.section-heading:first-of-type,
.trust-strip + .body-lg + .section-heading,
.trust-strip + .section-heading {
  margin-top: 0;
}

/* ── Body text ───────────────────────────────────────────── */
.body-lg {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ── Document type grid ──────────────────────────────────── */
.doc-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.doc-type-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.doc-type-card:hover {
  border-color: #c8cdd6;
  box-shadow: 0 6px 20px -12px rgba(14,42,71,0.2);
}

.doc-type-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 2px;
}

.doc-type-card__icon [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.doc-type-card__title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.doc-type-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Client list ─────────────────────────────────────────── */
.client-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}

.client-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

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

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

/* ── Language coverage grid ──────────────────────────────── */
.lang-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0 24px;
}

.lang-coverage-card {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.lang-coverage-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.lang-coverage-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Format list ─────────────────────────────────────────── */
.format-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
}

.format-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.format-item [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--navy);
  flex: none;
}

.format-item strong {
  color: var(--ink);
}

/* ── Process steps ───────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__num {
  font-size: 26px;
  font-weight: 700;
  color: var(--line);
  letter-spacing: -1px;
  line-height: 1;
  padding-top: 4px;
}

.process-step__body strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.process-step__body p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── FAQ list ────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

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

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

.faq-item__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;
  letter-spacing: 0;
}

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

/* ── Generic inner page paragraphs ──────────────────────── */
.content-section p {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

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

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

/* ── Client reference list (horizontal rows with initial avatar) ── */
.client-ref-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.client-ref {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}

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

.client-ref:hover {
  background: var(--bg-soft);
}

.client-ref--highlight {
  background: var(--bg-soft);
}

.client-ref--highlight:hover {
  background: #eef0f3;
}

.client-ref__left {
  width: 56px;
  min-width: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 0 20px;
  border-right: 1px solid var(--line);
}

.client-ref__initial {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  flex: none;
}

.client-ref--highlight .client-ref__initial {
  background: var(--gold);
}

.client-ref__body {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.client-ref__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.client-ref__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.client-ref__stat {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

.client-ref__body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.client-ref__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.client-ref__pills span {
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 7px;
}

.client-ref--highlight .client-ref__pills span {
  background: #fff;
}

/* ── Client card grid ───────────────────────────────────── */
.client-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.client-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.client-card:hover {
  border-color: #c8cdd6;
  box-shadow: 0 8px 24px -14px rgba(14,42,71,0.25);
}

.client-card--featured {
  grid-column: span 2;
  background: var(--bg-soft);
  border-color: transparent;
  border-left: 3px solid var(--gold);
}

.client-card--featured:hover {
  border-left-color: var(--gold);
  border-color: transparent;
  border-left-color: var(--gold);
}

.client-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.client-card__name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.client-card__badge {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(242,64,15,0.08);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  flex: none;
}

.client-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.client-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.client-card__tags span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 8px;
}

.client-card--featured .client-card__tags span {
  background: #fff;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .doc-type-grid { grid-template-columns: 1fr; }
  .lang-coverage-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 44px 1fr; gap: 14px; }
  .process-step__num { font-size: 22px; }
  .section-heading { font-size: 24px; margin-top: 40px; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-strip__sep { display: none; }
}
