/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.1.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ============================================================
   Morgan Fractional CFO — design-system CSS layer
   Only what Elementor V4 Variables/Classes cannot express.
   Tokens come from the V4 Variables, emitted by the kit CSS as
   :root custom properties named by label; hex fallbacks match
   the static site's Tailwind @theme values.
   Source of truth: static site assets/css/main.css
   ============================================================ */

/* --- Base ------------------------------------------------- */
html {
  color-scheme: light;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Remove tap delay and mobile tap flash on interactive elements */
a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
/* Anchor targets clear the sticky header when scrolled to */
[id] {
  scroll-margin-top: 96px;
}
/* V4 style schema has no text-wrap prop; static site uses text-pretty on headings */
h1,
h2,
h3 {
  text-wrap: pretty;
}

/* --- Brand gold focus ring, keyboard navigation only ------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgb(240 182 0 / 0.7);
  outline-offset: 2px;
}

/* --- Credential-strip divider (V4: neutral site-wide) ------ */
.credential-divider {
  height: 32px;
  width: 2px;
  flex-shrink: 0;
  background: var(--gray-border, #D9DEE3);
}

/* --- Logo marquee ------------------------------------------ */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee-scroll 32s linear infinite;
}
.marquee-mask {
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* --- FAQ accordion marker: plus rotates into a cross -------- */
.faq-marker {
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item[open] .faq-marker,
.faq-item.is-open .faq-marker {
  transform: rotate(45deg);
}

/* --- Insights article prose (.article-body) ----------------- */
.article-body h2 {
  margin: 56px 0 20px;
  font-family: var(--font-display, Manrope), sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--deep-navy, #16324F);
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body h3 {
  margin: 40px 0 16px;
  font-family: var(--font-display, Manrope), sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--deep-navy, #16324F);
}
.article-body p {
  margin: 0 0 20px;
  font-family: var(--font-body, Nunito), sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal, #2B2B2B);
}
.article-body a {
  font-weight: 600;
  color: var(--blue-dark, #30516D);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.article-body a:hover {
  color: var(--deep-navy, #16324F);
}
.article-body strong {
  font-weight: 700;
  color: var(--deep-navy, #16324F);
}
.article-body ul,
.article-body ol {
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.article-body ul > li,
.article-body ol > li {
  display: flex;
  gap: 16px;
  font-family: var(--font-body, Nunito), sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal, #2B2B2B);
}
/* Navy em-dash list marker (V4: markers neutralized site-wide) */
.article-body ul > li::before {
  content: "\2014";
  font-weight: 700;
  color: var(--deep-navy, #16324F);
}
.article-body ol {
  counter-reset: article-ol;
}
.article-body ol > li {
  counter-increment: article-ol;
}
/* Navy 01/02/... marker, matching the site's V4 numbered-item idiom */
.article-body ol > li::before {
  content: counter(article-ol, decimal-leading-zero);
  font-family: var(--font-display, Manrope), sans-serif;
  font-weight: 700;
  color: var(--deep-navy, #16324F);
}
/* Checklist variant: empty navy squares instead of em-dash markers */
.article-body ul.checklist > li::before {
  content: "";
  margin-top: 6px;
  height: 16px;
  width: 16px;
  flex-shrink: 0;
  border: 2px solid var(--deep-navy, #16324F);
  border-radius: 3px;
}
.article-body blockquote {
  margin: 0 0 20px;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--gold, #F0B600);
}
.article-body blockquote > :last-child {
  margin-bottom: 0;
}
.article-body figure {
  margin: 40px 0;
}
.article-body figure img {
  height: auto;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--gray-hairline, #F4F5F6);
}
.article-body table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}
.article-body th {
  border-bottom: 2px solid var(--deep-navy, #16324F);
  padding: 12px 16px;
  font-family: var(--font-display, Manrope), sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--deep-navy, #16324F);
}
.article-body tbody th {
  border-bottom: 0;
  border-top: 1px solid var(--gray-border, #D9DEE3);
  vertical-align: top;
}
.article-body td {
  border-top: 1px solid var(--gray-border, #D9DEE3);
  padding: 12px 16px;
  vertical-align: top;
  font-family: var(--font-body, Nunito), sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal, #2B2B2B);
}
@media (min-width: 768px) {
  .article-body h2 {
    font-size: 32px;
  }
}

/* --- Reduced motion ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .animate-marquee {
    animation: none;
  }
  .faq-marker {
    transition: none;
  }
  .article-body a {
    transition: none;
  }
}

/* --- Site chrome: sticky translucent header (Theme Builder template) - */
.elementor-location-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.s-site-header-bar {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* --- Header nav dropdown (V3 nav-menu widget; CSS-driven hover to match the
   static group-hover behavior: instant trigger, 150ms fade both ways) - */
.elementor-location-header .elementor-nav-menu--main li.menu-item-has-children {
  position: relative !important;
}
.elementor-location-header .elementor-nav-menu--main ul.sub-menu {
  display: block !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  margin: 12px 0 0 0 !important;
  width: 300px !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 150ms ease, visibility 150ms ease;
  z-index: 60;
}
/* beat elementor-pro's inset-inline-start !important (higher specificity) */
.elementor-location-header .elementor-nav-menu--main li.menu-item-has-children > ul.sub-menu.elementor-nav-menu--dropdown {
  left: 50% !important;
  right: auto !important;
  inset-inline-start: 50% !important;
  inset-inline-end: auto !important;
}
/* invisible bridge over the 12px gap so hover survives the crossing */
.elementor-location-header .elementor-nav-menu--main ul.sub-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.elementor-location-header .elementor-nav-menu--main li.menu-item-has-children:hover > ul.sub-menu,
.elementor-location-header .elementor-nav-menu--main li.menu-item-has-children:focus-within > ul.sub-menu {
  visibility: visible;
  opacity: 1;
}
.elementor-location-header .elementor-nav-menu--main ul.sub-menu a,
.elementor-location-header .elementor-nav-menu--main ul.sub-menu li:first-child a,
.elementor-location-header .elementor-nav-menu--main ul.sub-menu li:last-child a {
  border-radius: 8px !important;
}

/* V4 current-page nav item: bold navy with 2px gold underline (desktop),
   blue-lightest pill + bold in the drawer - matches the static aria-current styling */
.elementor-location-header .elementor-nav-menu--main ul.elementor-nav-menu > li > a.elementor-item-active,
.elementor-location-header .elementor-nav-menu--main ul.elementor-nav-menu > li.current-menu-ancestor > a.elementor-item {
  font-weight: 700 !important;
  text-decoration: underline !important;
  text-decoration-color: var(--gold, #F0B600) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 8px !important;
}
.elementor-location-header .elementor-nav-menu--main ul.elementor-nav-menu > li > a.elementor-item-active:hover,
.elementor-location-header .elementor-nav-menu--main ul.elementor-nav-menu > li.current-menu-ancestor > a.elementor-item:hover {
  color: var(--deep-navy, #16324F);
}
.site-drawer .elementor-nav-menu a.elementor-item-active,
.site-drawer .elementor-nav-menu a.elementor-sub-item.elementor-item-active {
  background-color: var(--blue-lightest, #F3F7FA);
  font-weight: 700;
}
/* chevron rotates in place (rotate the svg, not Elementor's positioned span) */
.elementor-location-header .sub-arrow svg {
  transition: transform 150ms ease;
}
.elementor-location-header li.menu-item-has-children:hover > a .sub-arrow svg,
.elementor-location-header li.menu-item-has-children:focus-within > a .sub-arrow svg {
  transform: rotate(180deg);
}
/* icon buttons keep their ink on hover/active (kit link-hover would gold them) */
.s-header-menu-toggle:hover, .s-header-menu-toggle:active, .s-header-menu-toggle:focus,
.s-drawer-close:hover, .s-drawer-close:active, .s-drawer-close:focus {
  color: var(--deep-navy, #16324F);
}

/* --- Mobile drawer (off-canvas widget, scoped via .site-drawer) - */
.site-drawer .e-off-canvas__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.site-drawer .e-off-canvas__content > [data-id="drawer-nav-wrap"] {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.site-drawer .elementor-nav-menu .sub-arrow {
  display: none !important;
}
/* Industries children: always visible, indented like the static drawer */
.site-drawer .elementor-nav-menu ul.sub-menu {
  display: block !important;
  position: static !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 2px 0 2px 16px !important;
  padding: 0 0 0 8px;
  border-left: 1px solid var(--gray-hairline, #F4F5F6);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.site-drawer .elementor-nav-menu ul.sub-menu::before {
  content: none;
}
.site-drawer .elementor-nav-menu ul.sub-menu a {
  font-size: 14px;
  padding: 10px 12px !important;
  border-inline-start: 0 !important;
}
/* Drawer links: static hover/active - blue-lightest bg, ink unchanged */
.site-drawer .elementor-nav-menu a.elementor-item,
.site-drawer .elementor-nav-menu a.elementor-sub-item {
  border-radius: 8px;
  transition: background-color 150ms ease, color 150ms ease;
}
.site-drawer .elementor-nav-menu a.elementor-item:hover,
.site-drawer .elementor-nav-menu a.elementor-item:focus,
.site-drawer .elementor-nav-menu a.elementor-item:active,
.site-drawer .elementor-nav-menu a.elementor-sub-item:hover,
.site-drawer .elementor-nav-menu a.elementor-sub-item:focus,
.site-drawer .elementor-nav-menu a.elementor-sub-item:active {
  background-color: var(--blue-lightest, #F3F7FA) !important;
  color: var(--deep-navy, #16324F) !important;
}
@media (prefers-reduced-motion: reduce) {
  .elementor-location-header .elementor-nav-menu--main ul.sub-menu { transition: none; }
  .elementor-location-header .sub-arrow svg { transition: none; }
  .site-drawer .elementor-nav-menu a.elementor-item, .site-drawer .elementor-nav-menu a.elementor-sub-item { transition: none; }
}

/* --- Skip link (header template; static sr-only + focus reveal) - */
.site-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 70;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  display: block;
  border-radius: 8px;
  background: var(--deep-navy, #16324F);
  padding: 8px 16px;
  font-family: var(--font-body, Nunito), sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--warm-white, #FAFAF8);
}

/* skip-link widget out of flow - kit widget margin was adding 20px above the header bar */
.elementor-location-header .elementor-element-skip-link {
  position: absolute;
  margin: 0 !important;
}

/* --- Footer template (Theme Builder; grid ratios + link polish) - */
.site-copyright {
  margin: 0;
  font-family: var(--font-body, Nunito), sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-strong, #BCC4CC);
}
@media (min-width: 1024px) {
  .s-footer-main > .s-footer-brand { flex: 5 1 0; }
  .s-footer-main > .s-footer-nav { flex: 7 1 0; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .s-footer-nav { flex-wrap: wrap; }
  .s-footer-nav > .e-con { flex: 0 0 calc(50% - 20px); }
}
@media (min-width: 1024px) {
  .s-footer-nav > .e-con { flex: 1 1 0; }
}
.elementor-location-footer .elementor-nav-menu a {
  width: fit-content;
  transition: color 150ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .elementor-location-footer .elementor-nav-menu a { transition: none; }
}

/* --- Phase 3: marquee inside V4 components ------------------ */
.animate-marquee{display:flex;width:max-content}
.marquee-mask{overflow:hidden}
.animate-marquee img{filter:grayscale(1);opacity:.85}

/* --- Phase 3: dark-CTA trailing text link ------------------- */
.cta-note a,.ctal-note a{color:var(--gold,#F0B600);font-weight:600;transition:color .15s ease}
.cta-note a:hover,.cta-note a:focus-visible,.ctal-note a:hover,.ctal-note a:focus-visible{color:var(--gold-hover,#FFCA28)}
@media (prefers-reduced-motion: reduce){.cta-note a,.ctal-note a{transition:none}}

/* --- Phase 3: navy inline-link idiom (body copy) ------------ */
.body-links a{font-weight:600;color:var(--blue-dark,#30516D);text-decoration:underline;text-underline-offset:4px;transition:color .15s ease}
.body-links a:hover,.body-links a:focus-visible{color:var(--deep-navy,#16324F)}
@media (prefers-reduced-motion: reduce){.body-links a{transition:none}}

/* --- Phase 3: card + FAQ template idioms -------------------- */
.shadow-soft{box-shadow:0 2px 8px rgb(0 0 0/.06)}
.strong-navy strong{color:var(--deep-navy,#16324F);font-weight:700}

/* FAQ accordion (nested-accordion widget, scoped via .faq-list) */
.faq-list .e-n-accordion{display:flex;flex-direction:column}
.faq-list details.e-n-accordion-item{border-top:1px solid var(--gray-border,#D9DEE3)}
.faq-list summary.e-n-accordion-item-title{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:24px 0;cursor:pointer;background:transparent;list-style:none}
.faq-list summary.e-n-accordion-item-title::-webkit-details-marker{display:none}
.faq-list .e-n-accordion-item-title-header .e-n-accordion-item-title-text{font-family:var(--font-display,Manrope);font-size:20px;font-weight:600;line-height:1.4;color:var(--deep-navy,#16324F)}
.faq-list .e-n-accordion-item-title-icon{display:none}
.faq-list summary.e-n-accordion-item-title::after{content:'+';font-family:var(--font-display,Manrope);font-size:24px;font-weight:700;line-height:1;color:var(--deep-navy,#16324F);flex-shrink:0;transition:transform 200ms cubic-bezier(.4,0,.2,1)}
.faq-list details[open]>summary.e-n-accordion-item-title::after{transform:rotate(45deg)}
@media (prefers-reduced-motion: reduce){.faq-list summary.e-n-accordion-item-title::after{transition:none}}

/* --- Phase 3 fixes: outline icons, FAQ row borders, gold links - */
.icon-outline svg{fill:none}
.faq-list summary.e-n-accordion-item-title{border:0;border-radius:0}
.faq-list .e-n-accordion-item > .e-con{border:0;border-radius:0}
/* --- Phase 3: gold-on-navy inline-link idiom ---------------- */
.elementor .navy-links a{color:var(--gold,#F0B600);font-weight:600;text-decoration:underline;text-underline-offset:4px;transition:color .15s ease}
.elementor .navy-links a:hover,.elementor .navy-links a:focus-visible{color:var(--warm-white,#FAFAF8)}
@media (prefers-reduced-motion: reduce){.elementor .navy-links a{transition:none}}

/* --- Home V4 (page 11): utilities --------------------------- */
.shadow-card{box-shadow:0 4px 16px rgb(9 23 37/.08)}
.accent-underline{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 8' preserveAspectRatio='none'%3E%3Cpath d='M0 4 Q 4.5 1 9 4 T 18 4' fill='none' stroke='%2316324F' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:repeat-x;background-position:left bottom;background-size:18px 8px;padding-bottom:.3em;-webkit-box-decoration-break:clone;box-decoration-break:clone}
.accent-underline-lg{background-size:28px 10px;padding-bottom:.25em}
.text-em{font-weight:600;color:var(--deep-navy,#16324F)}
.elementor .industry-links a{color:var(--deep-navy,#16324F);text-decoration:underline;text-decoration-color:var(--gray-strong,#BCC4CC);text-decoration-thickness:2px;text-underline-offset:8px;white-space:nowrap;transition:color .15s ease,text-decoration-color .15s ease}
.elementor .industry-links a:hover,.elementor .industry-links a:focus-visible{color:var(--blue-dark,#30516D);text-decoration-color:var(--blue-dark,#30516D)}
.gold-strong strong{color:var(--gold,#F0B600);font-weight:700}
.price-strong strong{font-family:var(--font-display,'Manrope'),sans-serif;font-size:20px;font-weight:800;color:var(--deep-navy,#16324F)}
.ph-frame{border:2px dashed var(--gray-border,#D9DEE3)}
.feat-media{border-top:2px dashed var(--gray-border,#D9DEE3)}
@media (min-width:1024px){.feat-media{border-top:0;border-right:2px dashed var(--gray-border,#D9DEE3)}}
@media (max-width:1023px){.feat-media{order:2}}
@media (prefers-reduced-motion: reduce){.elementor .industry-links a{transition:none}}

/* --- Home V4: industries 3+3 editorial modules grid (6 modules, post-split) ---------- */
@media (min-width:1024px){.industry-m1,.industry-m2,.industry-m3,.industry-m4,.industry-m5,.industry-m6{grid-column:span 2}}
.elementor .industry-m2,.elementor .industry-m3,.elementor .industry-m4,.elementor .industry-m5,.elementor .industry-m6{border-top:1px solid var(--gray-border,#D9DEE3);padding-top:40px}
@media (min-width:768px){.elementor .industry-m2,.elementor .industry-m4,.elementor .industry-m6{border-top:0;padding-top:0;border-left:1px solid var(--gray-border,#D9DEE3);padding-left:48px}.elementor .industry-m3,.elementor .industry-m5{border-top:0;padding-top:0}}
@media (min-width:1024px){.elementor .industry-m3,.elementor .industry-m5{border-left:1px solid var(--gray-border,#D9DEE3);padding-left:48px}.elementor .industry-m4{border-left:0;padding-left:0}}

/* --- Home V4: html-v3 strips span classes - parent-class span idioms --- */
.accent-spans span{font-weight:600;color:var(--deep-navy,#16324F);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 8' preserveAspectRatio='none'%3E%3Cpath d='M0 4 Q 4.5 1 9 4 T 18 4' fill='none' stroke='%2316324F' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:repeat-x;background-position:left bottom;background-size:18px 8px;padding-bottom:.3em;-webkit-box-decoration-break:clone;box-decoration-break:clone}
.accent-spans-lg span{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 8' preserveAspectRatio='none'%3E%3Cpath d='M0 4 Q 4.5 1 9 4 T 18 4' fill='none' stroke='%2316324F' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:repeat-x;background-position:left bottom;background-size:28px 10px;padding-bottom:.25em;-webkit-box-decoration-break:clone;box-decoration-break:clone}

.elementor .text-nowrap, .text-nowrap{white-space:nowrap}

/* --- SMS CTA (2026-08-28): 7-tab header fit + no-wrap header button --- */
.elementor-location-header .s-header-cta{white-space:nowrap}
.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu{flex-wrap:nowrap !important}
@media (min-width:1024px) and (max-width:1279.98px){
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu > li > a.elementor-item{margin:0 10px !important}
  .elementor-location-header .s-header-nav-wrap{gap:20px !important}
}

/* Industry pages: dropdown current item bold navy (static pill is widget-supplied); drawer parent bold when a child is current */
.elementor-location-header .elementor-nav-menu--dropdown a.elementor-sub-item.elementor-item-active { font-weight: 700 !important; color: var(--deep-navy, #16324F) !important; }
.site-drawer .elementor-nav-menu li.current-menu-ancestor > a.elementor-item { font-weight: 700; }

/* V4 grid-column is dropped by the renderer - span utility for grid children (static md:col-span-2) */
@media (min-width:768px){.elementor .span-2{grid-column:span 2}}

/* lg-only order swap (services 90-days rail; static lg:order-N) */
@media (min-width:1024px){.elementor .lg-order-1{order:1}.elementor .lg-order-2{order:2}}

/* ---- Contact page: Pro Form (V3) parity with the static .form-field system (Phase 4; counter/dataLayer land in Phase 6) ---- */
.fit-form .elementor-field-textual {
  background: #fff;
  border: 1px solid var(--gray-strong, #BCC4CC);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--charcoal, #2B2B2B);
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fit-form .elementor-field-textual::placeholder { color: var(--gray-muted, #636B73); opacity: 0.7; }
.fit-form .elementor-field-textual:focus {
  border-color: var(--gold-deep, #8F6800);
  outline: none;
  box-shadow: 0 0 0 3px rgb(240 182 0 / 0.45);
}
.fit-form textarea.elementor-field-textual { resize: vertical; line-height: 1.6; }
.fit-form .elementor-field-subgroup .elementor-field-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.fit-form .elementor-field-subgroup .elementor-field-option label {
  margin: 0;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal, #2B2B2B);
  cursor: pointer;
}
.fit-form .elementor-field-group-decision {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 16px;
}
.fit-form .elementor-field-group-decision > label { margin-inline-end: auto; }
.fit-form .elementor-field-group-decision .elementor-field { flex-basis: 100%; }
.fit-form .char-count {
  font-family: Nunito, sans-serif;
  font-size: 12px;
  color: var(--gray-muted, #636B73);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fit-form input[type="checkbox"], .fit-form input[type="radio"] { width: 16px; height: 16px; margin: 0; accent-color: var(--blue-dark, #30516D); }
.fit-form .elementor-field-type-checkbox .elementor-field-subgroup { display: grid; grid-template-columns: 1fr; gap: 10px 20px; }
@media (min-width: 640px) { .fit-form .elementor-field-type-checkbox .elementor-field-subgroup { grid-template-columns: 1fr 1fr; } }
.fit-form .elementor-field-type-radio .elementor-field-subgroup { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.fit-form .elementor-field-type-submit .elementor-button { width: auto; flex-basis: auto; flex-grow: 0; }
.fit-form .elementor-field-type-submit { align-items: flex-start; }
.fit-form .ctf-consent {
  border-top: 1px solid var(--gray-hairline, #F4F5F6);
  padding-top: 20px;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: var(--gray-muted, #636B73);
}
.break-all { word-break: break-all; }

.fit-form .field-error {
  margin: 6px 0 0;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--error, #A6392C);
}
.fit-form .error-row { flex-basis: 100%; padding: 0 10px; margin: -14px 0 24px; }
.fit-form-summary { font-family: Nunito, sans-serif; font-size: 14px; line-height: 1.5; color: var(--error, #A6392C); margin: -8px 0 0; }
.fit-form .elementor-field-textual[aria-invalid="true"] { border-color: var(--error, #A6392C); }

.fit-form .elementor-field-type-radio .elementor-field-option { width: auto; }
.fit-form .elementor-field-type-checkbox > label,
.fit-form .elementor-field-type-radio > label { margin-bottom: 10px; }

/* Insights archive: 3-col window-pane divider offsets (calc; static left-[calc(33.333%-13px)] / left-[calc(66.667%+13px)]) */
.elementor .archive-d1 { inset-inline-start: calc(33.333% - 13px); transform: translateX(-50%); }
.elementor .archive-d2 { inset-inline-start: calc(66.667% + 13px); transform: translateX(-50%); }

/* ---- Blog Single Post template idioms (Phase 5): byline link, native-details FAQ, related-reading block ---- */
.post-byline a { color: var(--deep-navy, #16324F); font-weight: 600; text-decoration: none; transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1); }
.post-byline a:hover { color: var(--blue-dark, #30516D); }
.post-faq { display: flex; flex-direction: column; }
.post-faq details { border-top: 1px solid var(--gray-border, #D9DEE3); }
.post-faq details:last-child { border-bottom: 1px solid var(--gray-border, #D9DEE3); }
.post-faq summary { display: flex; cursor: pointer; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; list-style: none; }
.post-faq summary::-webkit-details-marker { display: none; }
.post-faq .post-faq-q { font-family: Manrope, sans-serif; font-size: 20px; font-weight: 600; line-height: 1.4; color: var(--deep-navy, #16324F); }
.post-faq .post-faq-marker { font-family: Manrope, sans-serif; font-size: 24px; font-weight: 700; line-height: 1; color: var(--deep-navy, #16324F); transition: transform 150ms; }
.post-faq details[open] .post-faq-marker { transform: rotate(45deg); }
.post-faq details > p { padding: 0 48px 24px 0; margin: 0; font-family: Nunito, sans-serif; font-size: 16px; line-height: 1.8; color: var(--charcoal, #2B2B2B); }
.post-faq details > p a { color: var(--blue-dark, #30516D); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; transition: color 200ms; }
.post-faq details > p a:hover { color: var(--deep-navy, #16324F); }
@media (prefers-reduced-motion: reduce) { .post-faq .post-faq-marker { transition: none; } }
.related-reading { margin-top: 48px; border-top: 1px solid var(--gray-border, #D9DEE3); padding-top: 32px; }
.related-reading .related-eyebrow { margin: 0 0 16px; font-family: Nunito, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.44px; text-transform: uppercase; color: var(--deep-navy, #16324F); }
.related-reading a { display: inline-flex; align-items: center; gap: 8px; font-family: Nunito, sans-serif; font-size: 16px; font-weight: 700; color: var(--blue-dark, #30516D); text-decoration: none; transition: color 200ms; }
.related-reading a:hover { color: var(--deep-navy, #16324F); }
.related-reading svg { width: 16px; height: 16px; min-width: 16px; fill: none; flex-shrink: 0; }

.article-body .wp-block-table { margin: 40px 0; overflow-x: auto; }
.article-body .wp-block-table table { margin: 0; }

/* Lenis smooth scrolling requirements (Phase 6; mirrors the static main.css) */
html.lenis {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
	overflow: hidden;
}

/* Phase 6 nav a11y: Escape-close suppression (mfc-nav.js sets data-esc-closed;
   it must beat the :focus-within open rule until focus leaves the item) */
.elementor-location-header .elementor-nav-menu--main li.menu-item-has-children[data-esc-closed] > ul.sub-menu {
	visibility: hidden !important;
	opacity: 0 !important;
}
.elementor-location-header li.menu-item-has-children[data-esc-closed] > a .sub-arrow svg {
	transform: none !important;
}

/* Legal long-form copy (Privacy Policy / Terms - a single text-editor widget wrapped in .legal-copy) */
.elementor.elementor .e-con > .elementor-widget.legal-copy, .elementor .legal-copy { max-width: 800px; }
.legal-copy h2 { font-family: Manrope, sans-serif; font-weight: 700; font-size: 24px; line-height: 1.35; color: var(--deep-navy, #16324F); margin: 48px 0 16px; }
.legal-copy h2:first-child { margin-top: 0; }
@media (min-width: 768px) { .legal-copy h2 { font-size: 28px; } }
.legal-copy p, .legal-copy li { font-family: Nunito, sans-serif; font-size: 16px; line-height: 1.8; color: var(--charcoal, #2B2B2B); }
.legal-copy p { margin: 0 0 16px; }
.legal-copy p:last-child { margin-bottom: 0; }
.legal-copy ul { margin: 0 0 16px; padding-left: 24px; list-style: disc; }
.legal-copy li { margin-bottom: 12px; }
.legal-copy li:last-child { margin-bottom: 0; }
.legal-copy strong { font-weight: 600; color: var(--deep-navy, #16324F); }
.legal-copy a { color: var(--blue-dark, #30516D); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; transition: color 200ms; }
.legal-copy a:hover { color: var(--deep-navy, #16324F); }
