/* =====================================================================
   Compuletra — Componentes das páginas internas
   Carregar APÓS styles.css. Reaproveita os mesmos tokens.
   ===================================================================== */

/* --- Hero de página interna (faixa escura compacta) ---------------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 460px at 82% -20%, rgba(0,166,81,0.20), transparent 62%),
    linear-gradient(160deg, var(--ink-850) 0%, var(--ink-900) 60%, #070d0a 100%);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(760px 420px at 80% 0%, #000, transparent 78%);
          mask-image: radial-gradient(760px 420px at 80% 0%, #000, transparent 78%);
}
.page-hero__inner { position: relative; z-index: 1; padding-block: clamp(56px, 8vw, 104px); max-width: 820px; }
.page-hero h1 { color: #fff; margin-top: 20px; font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.06; letter-spacing: -0.02em; font-weight: 800; }
.page-hero__sub { margin-top: 22px; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; color: rgba(255,255,255,0.76); max-width: 680px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: 0.6; }

/* --- Bloco de texto rico ------------------------------------------ */
.prose { max-width: 760px; }
.prose p { margin-top: 20px; font-size: 1.1rem; line-height: 1.7; color: var(--fg-2); }
.prose p:first-child { margin-top: 0; }
.prose .lead-first { font-size: 1.28rem; line-height: 1.55; color: var(--fg-1); font-weight: 500; }

.split-head { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 860px) { .split-head { grid-template-columns: 1fr; gap: 24px; } }

/* --- Linha do tempo ----------------------------------------------- */
.timeline { margin-top: 8px; }
.tl-item { display: grid; grid-template-columns: 200px 1fr; gap: 32px; }
.tl-item__year {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--brand-green-deep); letter-spacing: -0.01em; line-height: 1.05; padding-top: 2px;
}
.tl-item__main { position: relative; padding-left: 34px; padding-bottom: 48px; border-left: 2px solid var(--border-1); }
.tl-item:last-child .tl-item__main { border-left-color: transparent; padding-bottom: 0; }
.tl-item__main::before {
  content: ""; position: absolute; left: -9px; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--brand-green); border: 3px solid var(--bg-app);
  box-shadow: 0 0 0 2px var(--green-200);
}
.tl-item__main h3 { font-size: 1.3rem; font-weight: 700; }
.tl-item__main p { margin-top: 12px; color: var(--fg-2); font-size: 1.02rem; line-height: 1.65; max-width: 720px; }
@media (max-width: 720px) {
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .tl-item__year { padding-left: 34px; }
  .tl-item__main { padding-top: 4px; }
}

/* --- Missão / Visão / Valores ------------------------------------- */
.mvv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mvv-card {
  background: var(--bg-app); border: 1px solid var(--border-1);
  border-radius: var(--radius-lg); padding: 36px;
}
.mvv-card .sol-card__icon { background: var(--ink-900); color: var(--green-300); border-color: transparent; }
.mvv-card h3 { margin-top: 22px; font-size: 1.4rem; font-weight: 800; font-family: var(--font-display); }
.mvv-card p { margin-top: 14px; color: var(--fg-2); font-size: 1.05rem; line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 32px; }
.value-card { background: var(--bg-app); border: 1px solid var(--border-1); border-radius: var(--radius-md); padding: 26px 22px; }
.value-card__icon { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--green-50); color: var(--accent); border: 1px solid var(--green-100); }
.value-card__icon svg { width: 22px; height: 22px; }
.value-card h4 { margin-top: 18px; font-size: 1.1rem; font-weight: 700; font-family: var(--font-display); }
.value-card p { margin-top: 8px; font-size: 14.5px; line-height: 1.5; color: var(--fg-2); }
@media (max-width: 1024px) { .values-grid { grid-template-columns: repeat(2, 1fr); } .mvv-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* --- Reconhecimentos (prêmios) ------------------------------------ */
.awards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.award {
  display: flex; gap: 18px; align-items: flex-start; padding: 26px;
  background: var(--bg-soft); border: 1px solid var(--border-1); border-radius: var(--radius-lg);
}
.award__yr { font-family: var(--font-mono); font-size: 14px; color: var(--accent); font-weight: 500; }
.award h4 { margin-top: 4px; font-size: 1.08rem; font-weight: 700; line-height: 1.3; color: var(--fg-1); font-family: var(--font-display); }
.award__icon { flex: none; width: 46px; height: 46px; border-radius: var(--radius-pill); display: grid; place-items: center; background: var(--green-50); color: var(--accent); border: 1px solid var(--green-100); }
.award__icon svg { width: 22px; height: 22px; }
@media (max-width: 860px) { .awards { grid-template-columns: 1fr; } }

/* --- Liderança ---------------------------------------------------- */
.leaders-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.leader { }
.leader__photo { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-muted); border: 1px solid var(--border-1); }
.leader__photo image-slot { width: 100%; height: 100%; }
.leader__name { margin-top: 18px; font-size: 1.12rem; font-weight: 700; color: var(--fg-1); font-family: var(--font-display); }
.leader__role { margin-top: 4px; font-size: 14.5px; color: var(--accent); font-weight: 600; }
@media (max-width: 860px) { .leaders-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- Detalhe de produto (Soluções) -------------------------------- */
.product { padding-block: clamp(56px, 7vw, 96px); border-top: 1px solid var(--border-2); scroll-margin-top: 90px; }
.product:first-of-type { border-top: none; }
.product__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.product.is-reverse .product__media { order: 2; }
.product__eyebrow { display: flex; align-items: center; gap: 12px; }
.product__mark { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--ink-900); color: var(--green-300); }
.product__mark svg { width: 24px; height: 24px; }
.product h2 { margin-top: 22px; font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 800; }
.product__logo {
  display: block;
  width: 230px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  margin-top: 22px;
}
.product__logo--compulog { width: 220px; }
.product__logo--vistomobi { width: 235px; }
.product__tag { font-size: 15px; font-weight: 600; color: var(--accent); margin-top: 6px; }
.product p { margin-top: 18px; font-size: 1.08rem; line-height: 1.65; color: var(--fg-2); }
.product__cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.feature-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; line-height: 1.5; color: var(--fg-2); }
.feature-list .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--green-50); color: var(--accent); margin-top: 1px; }
.feature-list .ic svg { width: 15px; height: 15px; }
.feature-list strong { color: var(--fg-1); font-weight: 600; }
.product__media { position: relative; }
.product__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  background: var(--bg-soft);
  box-shadow: var(--shadow-lg);
}
.product__visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product__visual--vistoriapro { background: transparent; box-shadow: none; border: none; border-radius: 0; }
.product__visual--vistoriapro img { object-fit: contain; object-position: center bottom; }
.product__visual--vistomobi img { object-fit: contain; padding: 18px; }
.product__panel {
  background: var(--ink-900); border-radius: var(--radius-xl); padding: 32px;
  color: #fff; box-shadow: var(--shadow-lg);
}
.product__media image-slot { width: 100%; aspect-ratio: 4/3; }
.product__stat { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); border-radius: var(--radius-md); overflow: hidden; margin-top: 0; }
.product__stat > div { background: var(--ink-900); padding: 24px; }
.product__stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff; line-height: 1; }
.product__stat strong .u { color: var(--green-300); }
.product__stat span { display: block; margin-top: 8px; font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.4; }
@media (max-width: 860px) {
  .product__grid { grid-template-columns: 1fr; gap: 36px; }
  .product.is-reverse .product__media { order: 0; }
}

/* --- Banner intro genérico (intro de página) ---------------------- */
.intro-band { background: var(--bg-soft); }

/* --- Pilares (Inovação) ------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pillar { background: var(--bg-app); border: 1px solid var(--border-1); border-radius: var(--radius-lg); padding: 32px; }
.pillar__icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--green-50); color: var(--accent); border: 1px solid var(--green-100); }
.pillar__icon svg { width: 25px; height: 25px; }
.pillar h3 { margin-top: 22px; font-size: 1.25rem; font-weight: 700; font-family: var(--font-display); }
.pillar p { margin-top: 12px; font-size: 1rem; line-height: 1.6; color: var(--fg-2); }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }

/* Quote destaque grande (faixa escura) */
.quote-band { background: var(--ink-900); color: #fff; }
.quote-band__inner { max-width: 920px; }
.quote-band .big-quote {
  font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.3; letter-spacing: -0.01em;
}
.quote-band .big-quote .accent { color: var(--green-300); }
.quote-band__mark { width: 44px; height: 44px; color: var(--green-300); }

/* --- Cases (Projetos) --------------------------------------------- */
.case {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center;
  background: var(--bg-app); border: 1px solid var(--border-1); border-radius: var(--radius-xl);
  padding: 40px; margin-top: 24px;
}
.case__aside { display: flex; flex-direction: column; gap: 16px; }
.case__logo {
  height: 64px; border-radius: var(--radius-md); background: var(--bg-muted);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800;
  font-size: 20px; color: var(--fg-3); letter-spacing: 0.01em;
}
.case__meta .name { font-weight: 700; font-size: 1.15rem; color: var(--fg-1); font-family: var(--font-display); }
.case__meta .proj { font-size: 14px; color: var(--accent); font-weight: 600; margin-top: 2px; }
.case__quote { font-size: 1.18rem; line-height: 1.6; color: var(--fg-1); }
.case__quote .qmark { color: var(--green-300); width: 30px; height: 30px; display: block; margin-bottom: 14px; }
@media (max-width: 860px) { .case { grid-template-columns: 1fr; gap: 24px; padding: 28px; } }

/* Trajetória (cards de projetos críticos) */
.legacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.legacy {
  background: var(--bg-app); border: 1px solid var(--border-1);
  border-radius: var(--radius-lg); padding: 30px; display: flex; gap: 20px;
}
.legacy__icon { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--ink-900); color: var(--green-300); }
.legacy__icon svg { width: 24px; height: 24px; }
.legacy__logo { flex: none; width: 160px; height: 46px; display: flex; align-items: center; justify-content: center; }
.legacy__logo img { max-width: 160px; max-height: 46px; width: auto; height: auto; object-fit: contain; }
.legacy__yr { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.legacy h3 { margin-top: 4px; font-size: 1.15rem; font-weight: 700; font-family: var(--font-display); }
.legacy p { margin-top: 10px; font-size: 0.98rem; line-height: 1.55; color: var(--fg-2); }
@media (max-width: 700px) { .legacy-grid { grid-template-columns: 1fr; } .legacy { flex-direction: column; } .legacy__logo { width: 100%; height: auto; justify-content: flex-start; } .legacy__logo img { max-height: 56px; } }

/* Legado LPR (SIVEM / SINIVEM) */
.lpr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.lpr-card {
  background: var(--bg-app); border: 1px solid var(--border-1);
  border-radius: var(--radius-lg); padding: 34px;
}
.lpr-card__icon {
  width: 48px; height: 48px; border-radius: 12px; padding: 11px;
  background: var(--green-50); color: var(--accent); border: 1px solid var(--green-100);
}
.lpr-card h3 { margin-top: 20px; font-size: 1.3rem; font-weight: 700; font-family: var(--font-display); }
.lpr-card__tag { margin-top: 4px; font-size: 13px; font-weight: 600; color: var(--accent); font-family: var(--font-mono); }
.lpr-card p:last-child { margin-top: 12px; font-size: 0.98rem; line-height: 1.6; color: var(--fg-2); }
.lpr-note { margin-top: 36px; max-width: 860px; font-size: 1rem; line-height: 1.65; color: var(--fg-2); }
.lpr-note a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 700px) { .lpr-grid { grid-template-columns: 1fr; } .lpr-card { padding: 26px; } }

/* --- Notícias (página) -------------------------------------------- */
.news-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.news-tab {
  padding: 9px 18px; border-radius: var(--radius-pill); font-size: 14.5px; font-weight: 600;
  background: var(--bg-app); border: 1px solid var(--border-1); color: var(--fg-2);
  transition: all .15s var(--ease);
}
.news-tab:hover { border-color: var(--green-300); color: var(--fg-1); }
.news-tab.active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

.featured {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; overflow: hidden;
  border: 1px solid var(--border-1); border-radius: var(--radius-xl); background: var(--bg-app); margin-bottom: 40px;
}
.featured__media { position: relative; min-height: 340px; background: var(--bg-muted); }
.featured__media image-slot { width: 100%; height: 100%; position: absolute; inset: 0; }
.featured__media .news-card__cat { top: 20px; left: 20px; }
.featured__body { padding: clamp(32px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.featured__body .news-card__date { font-size: 14px; }
.featured__body h2 { margin-top: 14px; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; line-height: 1.2; }
.featured__body p { margin-top: 18px; font-size: 1.05rem; line-height: 1.6; color: var(--fg-2); }
.featured__body .btn { margin-top: 28px; align-self: flex-start; }
@media (max-width: 860px) { .featured { grid-template-columns: 1fr; } .featured__media { min-height: 240px; } }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.pagination a { width: 42px; height: 42px; border-radius: var(--radius-md); display: grid; place-items: center; border: 1px solid var(--border-1); font-weight: 600; color: var(--fg-2); }
.pagination a.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination a:hover:not(.active) { border-color: var(--fg-3); }

/* --- Contato ------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--bg-soft); border: 1px solid var(--border-1); border-radius: var(--radius-lg); }
.contact-item__icon { flex: none; width: 46px; height: 46px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--green-50); color: var(--accent); border: 1px solid var(--green-100); }
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-3); font-family: var(--font-sans); font-weight: 700; }
.contact-item p { margin-top: 6px; font-size: 1.02rem; color: var(--fg-1); line-height: 1.5; }
.contact-item a { color: var(--accent); font-weight: 600; }
.contact-presence { margin-top: 6px; display: flex; gap: 10px; flex-wrap: wrap; }
.presence-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-pill); background: var(--bg-muted); font-size: 14px; font-weight: 600; color: var(--fg-2); }
.presence-chip svg { width: 15px; height: 15px; color: var(--accent); }

.contact-form { background: var(--bg-app); border: 1px solid var(--border-1); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.field:first-child, .form-row .field { margin-top: 0; }
.form-row { margin-top: 18px; }
.field label { font-size: 14px; font-weight: 600; color: var(--fg-1); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--fg-1);
  padding: 13px 15px; border: 1px solid var(--border-1); border-radius: var(--radius-md);
  background: var(--bg-app); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--border-focus); box-shadow: var(--shadow-focus);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-foot { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.form-foot .privacy { font-size: 13px; color: var(--fg-3); max-width: 340px; line-height: 1.5; }
.contact-map { margin-top: 0; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-1); height: 340px; position: relative; background: var(--bg-muted); }
.contact-map image-slot { width: 100%; height: 100%; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map__link { position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--radius-pill); background: var(--paper, #fff); border: 1px solid var(--border-1); font-size: 13px; font-weight: 600; color: var(--fg-2); text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.contact-map__link svg { width: 14px; height: 14px; }
.contact-map__link:hover { color: var(--accent); border-color: var(--accent); }
.contact-card { background: var(--bg-app); border: 1px solid var(--border-1); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.contact-card__icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--green-50); color: var(--accent); border: 1px solid var(--green-100); margin-bottom: 20px; }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__lead { margin-top: 10px; color: var(--fg-3); line-height: 1.6; font-size: 1.02rem; }
.contact-card__mail { display: block; margin-top: 26px; font-family: var(--font-display, inherit); font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 700; color: var(--accent); text-decoration: none; word-break: break-word; }
.contact-card__mail:hover { text-decoration: underline; }
.contact-card .btn { margin-top: 20px; }
.contact-card__topics { list-style: none; margin: 30px 0 0; padding: 26px 0 0; border-top: 1px solid var(--border-1); display: flex; flex-direction: column; gap: 12px; }
.contact-card__topics li { display: flex; align-items: flex-start; gap: 10px; color: var(--fg-2); font-size: 0.98rem; line-height: 1.5; }
.contact-card__topics svg { width: 18px; height: 18px; flex: none; color: var(--accent); margin-top: 2px; }
.contact-card__note { margin-top: 26px; font-size: 14px; color: var(--fg-3); }
.contact-card__note a { color: var(--accent); font-weight: 600; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .contact-card { position: static; } }

/* Faixa de logos de clientes */
.logos-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 40px; margin-top: 40px; }
.logos-strip .client-logo { height: 40px; font-size: 16px; padding: 0 20px; background: transparent; color: var(--fg-4); border: 1px dashed var(--border-1); }

/* Conteúdo atualizado — utilitários */
.body-sm { font-size: 14.5px; line-height: 1.6; }
.video-embed { border: 1px solid var(--border-1); background: var(--bg-muted); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.form-success { display: none; }
.leaders-grid--no-photo { grid-template-columns: repeat(3, 1fr); }
.leader--no-photo {
  background: var(--bg-app);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.leader--no-photo .leader__name { margin-top: 0; }
@media (max-width: 860px) { .leaders-grid--no-photo { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .leaders-grid--no-photo { grid-template-columns: 1fr; } }

/* Fotos institucionais */
.careers-photo,
.about-photo {
  margin-top: 52px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-1);
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
}
.careers-photo img,
.about-photo img { display: block; width: 100%; height: auto; object-fit: cover; }
.careers-photo figcaption,
.about-photo figcaption {
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--fg-3);
  background: var(--bg-app);
  border-top: 1px solid var(--border-1);
}
.careers-photo { max-width: 1000px; margin-inline: auto; }
.about-photo {
  max-width: 720px;
  margin-inline: auto;
  position: relative;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 45, 77, 0.08) 0%, rgba(31, 45, 77, 0.22) 100%);
  pointer-events: none;
}
.about-photo figcaption { position: relative; z-index: 1; background: var(--bg-app); }
.about-photo img { height: 300px; object-fit: cover; object-position: center 38%; }
@media (max-width: 860px) {
  .about-photo img { height: 260px; object-position: center 35%; }
}
@media (max-width: 560px) {
  .careers-photo,
  .about-photo { margin-top: 36px; border-radius: var(--radius-lg); }
  .about-photo img { height: 220px; object-position: center 32%; }
}

/* --- Disclaimer --------------------------------------------------- */
.disclaimer-page .page-hero__sub { max-width: 640px; }
.disclaimer-box {
  background: var(--bg-app);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.disclaimer-box__icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  display: grid; place-items: center;
  background: var(--green-50); color: var(--accent);
  border: 1px solid var(--green-100);
  margin-bottom: 24px;
}
.disclaimer-box__icon svg { width: 26px; height: 26px; }
.disclaimer-box p {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  color: var(--fg-2);
  margin-top: 0;
}
.disclaimer-box p + p { margin-top: 18px; }
.disclaimer-box strong { color: var(--fg-1); font-weight: 700; }
@media (max-width: 560px) {
  .disclaimer-box { padding: 24px; }
  .disclaimer-box__icon { width: 46px; height: 46px; }
  .disclaimer-box__icon svg { width: 22px; height: 22px; }
}
