/* cohesion-fix: reveal Elementor entrance-animation content that stays hidden
   on static export because Elementor frontend JS never fires to remove
   .elementor-invisible. Without this, "Working With Us Is Easy As..." steps
   and other animated columns render blank. Restore visibility + opacity. */
.elementor-invisible{
  visibility: visible !important;
  opacity: 1 !important;
  animation: none !important;
}
.elementor-element.elementor-invisible,
[data-settings*="animation"]{
  visibility: visible !important;
  opacity: 1 !important;
}

/* Icon-font safety: ensure Elementor/FontAwesome icons resolve to the local
   webfonts already shipped, never a missing theme font. */
.elementor-icon i,
.fa, .fas, .far, .fab,
[class^="fa-"], [class*=" fa-"]{
  -webkit-font-smoothing: antialiased;
}
