/* Corporate details and direct contact actions shared by every page. */
html { scroll-padding-bottom: 100px; }
body { padding-bottom: 96px; }
.footer-company {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px 35px;
  padding: 0 0 25px;
  font-size: 11px;
  line-height: 1.8;
  color: #53624f;
}
.footer-company p { margin: 0; }
.footer-company strong { font-weight: 600; color: #344e3d; }
.footer-company p > span { display: block; font-size: 10px; }
.footer-company > a { display: flex; flex-direction: column; min-height: 44px; }
.footer-company > a > span { font-size: 13px; color: #344e3d; }
.footer-company > a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-channels { margin-top: 27px; max-width: 420px; }
.contact-channel-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 22px; }
.contact-channel-actions .button { font-size: 12px; padding: 14px 18px; }
.callback-inline { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; font-size: 13px; color: #245f47; }
.callback-inline:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-channels > p { margin-top: 12px; font-size: 11px; line-height: 1.8; color: #53624f; }
.contact-channels > p > strong { font-weight: 600; white-space: nowrap; }
.callback-widget {
  position: fixed;
  right: clamp(16px, 3vw, 40px);
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 25;
}
.callback-widget > a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 22px;
  min-height: 62px;
  border: 1px solid #496859;
  border-radius: 100px;
  color: #fff;
  background: #20392f;
  box-shadow: 0 6px 24px #16382a26;
  transition: background .2s, transform .2s;
}
.callback-widget svg { width: 23px; height: 23px; flex-shrink: 0; }
.callback-widget strong { display: block; font-size: 14px; font-weight: 550; line-height: 1.45; }
.callback-widget small { display: block; font-size: 10px; color: #d1dfd2; line-height: 1.5; }
.callback-widget > a:hover { background: #315543; transform: translateY(-2px); }
.callback-widget > a:focus-visible { outline: 3px solid #236954; outline-offset: 4px; }
.legal-fields dd { overflow-wrap: anywhere; }
@media (max-width: 640px) {
  body { padding-bottom: 90px; }
  .footer-company { flex-direction: column; align-items: flex-start; gap: 16px; }
  .callback-widget { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); }
  .callback-widget > a { min-height: 58px; padding: 10px 18px; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .callback-widget > a { transition: none; }
  .callback-widget > a:hover { transform: none; }
}
@media print {
  body { padding-bottom: 0; }
  .callback-widget, .contact-channels { display: none; }
}
