    /* ============================================================
       HOMEPAGE MODULES — COMBINED STYLESHEET
       Modules: 01-navbar · 02-hero · 03-dashboard-panel ·
                04-social-proof · 05-platform-solutions · 06-apps ·
                07-roi-testimonial · 08-eptura-ai ·
                09-fresh-perspectives · 10-eptura-for-government ·
                11-looking-to-switch · 12-footer · 13-fab
       ============================================================ */

    /* ============================================================
       01 — NAVBAR
       ============================================================ */

    /* ─── FLEXIBLE FONT FAMILY ──────────────────────────────── */
    @font-face {
      font-family: 'Flexible';
      src: url('../fonts/Flexible-Light.woff2') format('woff2'),
           url('../fonts/Flexible-Light.woff') format('woff'),
           url('../fonts/Flexible-Light.ttf') format('truetype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Flexible';
      src: url('../fonts/Flexible-LightItalic.woff2') format('woff2'),
           url('../fonts/Flexible-LightItalic.woff') format('woff'),
           url('../fonts/Flexible-LightItalic.ttf') format('truetype');
      font-weight: 300;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: 'Flexible';
      src: url('../fonts/Flexible-Regular.woff2') format('woff2'),
           url('../fonts/Flexible-Regular.woff') format('woff'),
           url('../fonts/Flexible-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Flexible';
      src: url('../fonts/Flexible-RegularItalic.woff2') format('woff2'),
           url('../fonts/Flexible-RegularItalic.woff') format('woff'),
           url('../fonts/Flexible-RegularItalic.ttf') format('truetype');
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: 'Flexible';
      src: url('../fonts/Flexible-Medium.woff2') format('woff2'),
           url('../fonts/Flexible-Medium.woff') format('woff'),
           url('../fonts/Flexible-Medium.ttf') format('truetype');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Flexible';
      src: url('../fonts/Flexible-MediumItalic.woff2') format('woff2'),
           url('../fonts/Flexible-MediumItalic.woff') format('woff'),
           url('../fonts/Flexible-MediumItalic.ttf') format('truetype');
      font-weight: 500;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: 'Flexible';
      src: url('../fonts/Flexible-Bold.woff2') format('woff2'),
           url('../fonts/Flexible-Bold.woff') format('woff'),
           url('../fonts/Flexible-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Flexible';
      src: url('../fonts/Flexible-BoldItalic.woff2') format('woff2'),
           url('../fonts/Flexible-BoldItalic.woff') format('woff'),
           url('../fonts/Flexible-BoldItalic.ttf') format('truetype');
      font-weight: 700;
      font-style: italic;
      font-display: swap;
    }

    /* ─── CSS CUSTOM PROPERTIES (GLOBAL VARS) ───────────────── */
    :root {
      --brand-blue: #2d5be3;
      --brand-blue-light: #eef2ff;
      --stat-value-color: #2d5be3;
      --panel-bg: #f8f9fc;
      --panel-border: #e2e6f0;
      --widget-bg: #f0f3fb;
      --map-bg: #e8edf8;
      --chart-bar: #4c72e8;
      --chart-bar-dark: #2d5be3;
      --muted-label: #6b7280;
      --breadcrumb-color: #6b7280;
      --text-dark: #111827;
    }

    body {
      background-color: #ffffff;
      color: var(--text-dark);
      font-family: 'Flexible', 'Segoe UI', system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
      /*padding-top: 64px;*/
    }
    .h1, .h2, .h3, .h4, .h5, .h6, 
    h1, h2, h3, h4, h5, h6 {
      font-weight: 300;
    }

    [class*="button-"] a,
    #tabs-nav li a {
      text-decoration: none;
    }
    #tabs-nav li a h3 {
      color: #0d122e;
    }

    /* ─── GLOBAL BUTTON STYLES ──────────────────────────────── */
    .btn-primary-brand {
      background-color: var(--brand-blue);
      border-color: var(--brand-blue);
      color: #fff;
      font-weight: 600;
      font-size: 0.9375rem;
      padding: 0.625rem 1.375rem;
      border-radius: 8px;
      width: auto;
    }

    .btn-primary-brand:hover,
    .btn-primary-brand:focus {
      background-color: #2249c4;
      border-color: #2249c4;
      color: #fff;
    }

    .btn-secondary-brand {
      background-color: transparent;
      border: 1.5px solid #1b4bc5;
      color: #1b4bc5;
      font-weight: 600;
      font-size: 0.9375rem;
      padding: 0.625rem 1.375rem;
      border-radius: 8px;
      width: auto;
    }

    .btn-secondary-brand:hover,
    .btn-secondary-brand:focus {
      background-color: #f3f4f6;
      border-color: #b0b8cc;
      color: var(--text-dark);
    }

    /* ─── SOLUTIONS PROMO CARD (shared between menus) ───────── */
    .solutions-promo-card {
      display: flex;
      flex-direction: column;
      background: linear-gradient(135deg, #dbe6ff 0%, #c7d8ff 100%);
      border-radius: 0.75rem;
      padding: 1.25rem 1rem;
      height: auto;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.15s ease;
    }

    .solutions-promo-card:hover {
      background: linear-gradient(135deg, #c7d9ff 0%, #b3c9ff 100%);
    }

    .solutions-promo-card-title {
      font-size: 1rem;
      font-weight: 700;
      color: #1a2e6e;
      margin-bottom: 0.4rem;
    }

    .solutions-promo-card-desc {
      font-size: 0.8rem;
      color: #3d5cb8;
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    /* ─── NAVBAR ────────────────────────────────────────────── */
    .site-navbar {
      background-color: #ffffff;
      border-bottom: 1px solid #e9ecf2;
      padding-top: 0;
      padding-bottom: 0;
      min-height: 64px;
      height: auto;
    }

    .site-navbar > .container {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      min-height: 64px;
      padding-left: var(--bs-gutter-x, 0.75rem);
      padding-right: var(--bs-gutter-x, 0.75rem);
    }

    .navbar-brand-logo {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      text-decoration: none;
    }

    .navbar-brand-logo .brand-icon {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
    }

    .navbar-brand-logo .brand-name {
      font-size: 1.1875rem;
      font-weight: 700;
      color: #0f1d3a;
      letter-spacing: -0.01em;
      line-height: 1;
    }

    .nav-center-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-center-links .nav-link {
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1a2540;
      padding: 1.2rem 0.75rem;
      border-radius: 0rem;
      white-space: nowrap;
      transition: color 0.15s, background-color 0.15s;
      border: 1.5px solid transparent;
    }

    .nav-center-links .nav-link:hover,
    .nav-center-links .nav-link:focus {
      color: var(--brand-blue);
      background-color: var(--brand-blue-light);
    }

    .btn-nav-signin {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--brand-blue);
      background-color: transparent;
      border: 1.5px solid var(--brand-blue);
      border-radius: 0.375rem;
      padding: 0.4rem 1rem;
      white-space: nowrap;
      text-decoration: none;
      line-height: 1.5;
      transition: background-color 0.15s, color 0.15s;
    }

    .btn-nav-signin:hover,
    .btn-nav-signin:focus {
      background-color: var(--brand-blue-light);
      color: var(--brand-blue);
    }

    .btn-nav-demo {
      font-size: 0.9rem;
      font-weight: 600;
      color: #fff;
      background-color: var(--brand-blue);
      border: 1.5px solid var(--brand-blue);
      border-radius: 0.5rem;
      padding: 0.4rem 1.125rem;
      white-space: nowrap;
      text-decoration: none;
      line-height: 1.5;
      transition: background-color 0.15s;
    }

    .btn-nav-demo:hover,
    .btn-nav-demo:focus {
      background-color: #2249c4;
      border-color: #2249c4;
      color: #fff;
    }

  /* ─── NAV SEARCH ────────────────────────────────────────── */
  .nav-search-wrap {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    position: relative;
  }

  .nav-search-btn {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: color 0.15s;
    flex-shrink: 0;
  }

  .nav-search-btn:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
  }

  .nav-search-input {
    width: 0;
    max-width: 220px;
    padding: 0;
    border: none;
    border-bottom: 1.5px solid transparent;
    background: transparent;
    color: var(--brand-blue);
    font-size: 0.9rem;
    font-weight: 400;
    outline: none;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.25s ease, border-color 0.25s ease, padding 0.3s ease;
  }

  .nav-search-input::placeholder {
    color: rgba(27, 75, 197, 0.45);
  }

  .nav-search-wrap.is-open .nav-search-input {
    width: 160px;
    padding: 0.15rem 0;
    opacity: 1;
    border-bottom-color: rgba(27, 75, 197, 0.4);
  }

  .nav-search-divider {
    width: 1px;
    height: 22px;
    background-color: rgba(255,255,255,0.25);
    flex-shrink: 0;
  }

  /* ─── Ajax Search Pro overrides — match original nav search look ── */
  #navSearchWrap div.asp_w.ajaxsearchpro.asp_non_compact {
       min-width: 0; 
  }
  #navSearchWrap.is-open div.asp_w.ajaxsearchpro.asp_non_compact {
      border-bottom: 2px solid rgba(27, 75, 197, 0.4) !important;
  }
  #navSearchWrap.is-open .nav-asp-wrap {
      width: 146px;
  }
  #navSearchWrap.is-open #ajaxsearchpro1_1 .probox, #ajaxsearchpro1_2 .probox, div.asp_m.asp_m_1 .probox {
      width: 100%;
  }

  .nav-asp-wrap {
    display: flex;
    align-items: center;
  }

  /* Remove plugin's outer box / shadow */
  .nav-asp-wrap .asp_main_container,
  .nav-asp-wrap .probox {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  /* The input field — hidden by default, expands on is-open */
  .nav-asp-wrap input.orig {
    width: 0 !important;
    max-width: 220px;
    padding: 0 !important;
    border: none !important;
    border-bottom: 1.5px solid transparent !important;
    background: transparent !important;
    color: var(--brand-blue) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    outline: none !important;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.25s ease, border-color 0.25s ease, padding 0.3s ease !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .nav-asp-wrap input.orig::placeholder {
    color: rgba(27, 75, 197, 0.45) !important;
  }

  /* Expanded state */
  .nav-search-wrap.is-open .nav-asp-wrap input.orig {
    width: 160px !important;
    padding: 0.15rem 0 !important;
    opacity: 1 !important;
    border-bottom-color: rgba(27, 75, 197, 0.4) !important;
  }

  /* Hide plugin's own magnifier — we use our own #navSearchBtn instead */
  .nav-asp-wrap button.promagnifier {
    display: none !important;
  }

  /* Hide autocomplete input, settings panel, loader, clear button */
  .nav-asp-wrap input.autocomplete,
  .nav-asp-wrap .prosettings,
  .nav-asp-wrap .proloading,
  .nav-asp-wrap .asp_clear {
    display: none !important;
  }

  /* ─── NAV CTA WRAP (hides on search open) ───────────────── */
  .nav-cta-wrap {
    transition: opacity 0.25s ease, transform 0.3s ease, max-width 0.3s ease;
    max-width: 300px;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0);
    flex-shrink: 0;
  }

  .nav-cta-wrap.search-hidden {
    opacity: 0;
    transform: translateX(20px);
    max-width: 0;
    pointer-events: none;
  }

    /* Hamburger toggler */
    .navbar-toggler {
      border: none;
      padding: 0.25rem 0.375rem;
      border-radius: 0.375rem;
      color: #1a2540;
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 2px rgba(45, 91, 227, 0.25);
    }

    .navbar-toggler-icon-custom {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 22px;
      height: 22px;
    }

    .navbar-toggler-icon-custom span {
      display: block;
      height: 2px;
      width: 100%;
      background-color: #1a2540;
      border-radius: 2px;
    }

    /* Mobile collapse drawer */
    .navbar-collapse-menu {
      background-color: #ffffff;
      border-top: 1px solid #e9ecf2;
      padding: 0.75rem 0 1rem;
    }

    .mobile-nav-links {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .mobile-nav-links .nav-link {
      font-size: 1rem;
      font-weight: 600;
      color: #1a2540;
      padding: 0.7rem 1rem;
      display: block;
      border-radius: 0.375rem;
      transition: color 0.15s, background-color 0.15s;
    }

    .mobile-nav-links .nav-link:hover,
    .mobile-nav-links .nav-link:focus {
      color: var(--brand-blue);
      background-color: var(--brand-blue-light);
    }

    .mobile-menu-divider {
      border-color: #e9ecf2;
      margin: 0.5rem 1rem;
    }

    .mobile-signin-link {
      font-size: 1rem;
      font-weight: 600;
      color: var(--brand-blue);
      padding: 0.7rem 1rem;
      display: block;
      border-radius: 0.375rem;
      text-decoration: none;
      transition: background-color 0.15s;
    }

    .mobile-signin-link:hover,
    .mobile-signin-link:focus {
      background-color: var(--brand-blue-light);
      color: var(--brand-blue);
    }

    /* ─── MEGA-MENU ─────────────────────────────────────────── */
    .nav-center-links > li {
      position: static;
    }

    .mega-menu {
      position: fixed;
      top: 64px;
      left: 50%;
      transform: translateX(-50%);
      width: min(900px, 96vw);
      background: #fff;
      border: 1px solid #e2e6f0;
      border-radius: 1rem;
      box-shadow: 0 8px 40px rgba(30, 50, 120, 0.13);
      padding: 0;
      overflow: hidden;
      z-index: 1050;
      display: none;
      flex-direction: column;
      pointer-events: none;
    }

    .nav-center-links > li:hover > .mega-menu,
    .mega-menu:hover {
      display: flex;
      pointer-events: auto;
    }

    .mega-menu-body {
      display: flex;
      padding: 1.75rem 1.75rem 1.5rem;
      gap: 0;
    }

    .mega-col {
      flex: 1 1 0;
      min-width: 0;
      padding: 0 1.25rem 0 0;
    }

    .mega-col + .mega-col {
      border-left: 1px solid #f0f3fa;
      padding-left: 1.25rem;
      padding-right: 0;
    }

    .mega-col-header {
      font-size: 0.7rem;
      font-weight: 600;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 1rem;
    }

    .mega-item {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      padding: 0.5rem 0.5rem;
      border-radius: 0.5rem;
      text-decoration: none;
      color: inherit;
      margin-bottom: 0.125rem;
      transition: background-color 0.12s;
    }

    .mega-item:hover {
      background-color: var(--brand-blue-light);
    }

    .mega-item-title {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      font-weight: 700;
      color: #111827;
      line-height: 1.3;
    }

    .mega-item-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mega-item-icon svg,
    .mega-item-icon img {
      width: 16px;
      height: 16px;
    }

    .mega-item-desc {
      display: block;
      font-size: 0.775rem;
      color: #6b7280;
      line-height: 1.4;
    }

    .mega-promo-card {
      display: block;
      background-color: #dbe6ff;
      border-radius: 0.625rem;
      padding: 0.75rem 0.875rem;
      margin-top: 0.25rem;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.15s ease;
    }

    .mega-promo-card:hover {
      background-color: #c7d9ff;
    }

    .mega-promo-card .mega-item-title {
      color: #1a2e6e;
    }

    .mega-promo-card .mega-item-desc {
      color: #3d5cb8;
    }

    .mega-footer-bar {
      background-color: #4c72e8;
      padding: 0.875rem 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
    }

    .mega-footer-left {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .mega-footer-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: #0c1230;
    }

    .mega-footer-desc {
      font-size: 0.875rem;
      color: #0c1230;
    }

    .mega-footer-link {
      font-size: 0.875rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .mega-footer-link:hover {
      color: rgba(255,255,255,0.8);
    }

    /* Product nav button */
    .product-nav-btn {
      background: none;
      border: 1.5px solid transparent;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1a2540;
      padding: 1.5rem 0.75rem;
      border-radius: 0rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      white-space: nowrap;
      transition: color 0.15s, background-color 0.15s, border-color 0.15s;
      line-height: 1;
      will-change: background-color, color;
    }

    .product-nav-btn:hover,
    .product-nav-btn:focus,
    .product-nav-btn[aria-expanded="true"] {
      color: var(--brand-blue);
      background-color: var(--brand-blue-light);
      border: 1.5px solid transparent;
    }

    .product-nav-btn .caret {
      width: 10px;
      height: 10px;
      transition: transform 0.2s;
    }

    .product-nav-btn[aria-expanded="true"] .caret {
      transform: rotate(180deg);
    }

    /* Mobile accordion for Product */
    .mobile-product-toggle {
      width: 100%;
      text-align: left;
      font-size: 1rem;
      font-weight: 600;
      color: #1a2540;
      padding: 0.7rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 0.375rem;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.15s, background-color 0.15s;
    }

    .mobile-product-toggle:hover,
    .mobile-product-toggle:focus,
    .mobile-product-toggle[aria-expanded="true"] {
      color: var(--brand-blue);
      background-color: var(--brand-blue-light);
    }

    .mobile-product-toggle .caret {
      width: 10px;
      height: 10px;
      transition: transform 0.2s;
      flex-shrink: 0;
    }

    .mobile-product-toggle[aria-expanded="true"] .caret {
      transform: rotate(180deg);
    }

    .mobile-submenu {
      padding: 0.25rem 0 0.5rem 1rem;
    }

    .mobile-submenu-header {
      font-size: 0.7rem;
      font-weight: 600;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 0.5rem 0.5rem 0.25rem;
    }

    .mobile-submenu-link {
      display: block;
      padding: 0.45rem 0.5rem;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1a2540;
      text-decoration: none;
      border-radius: 0.375rem;
      transition: color 0.12s, background-color 0.12s;
    }

    .mobile-submenu-link:hover {
      color: var(--brand-blue);
      background-color: var(--brand-blue-light);
    }

    /* Partners nav button */
    .partners-nav-btn {
      background: none;
      border: 1.5px solid transparent;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1a2540;
      padding: 1.5rem 0.75rem;
      border-radius: 0rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      white-space: nowrap;
      transition: color 0.15s, background-color 0.15s;
      line-height: 1;
    }

    .partners-nav-btn:hover,
    .partners-nav-btn:focus,
    .partners-nav-btn[aria-expanded="true"] {
      color: var(--brand-blue);
      background-color: var(--brand-blue-light);
      border: 1.5px solid transparent;
    }

    .partners-nav-btn .caret {
      width: 10px;
      height: 10px;
      transition: transform 0.2s;
    }

    .partners-nav-btn[aria-expanded="true"] .caret {
      transform: rotate(180deg);
    }

    /* Solutions nav button */
    .solutions-nav-btn {
      background: none;
      border: 1.5px solid transparent;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1a2540;
      padding: 1.5rem 0.75rem;
      border-radius: 0rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      white-space: nowrap;
      transition: color 0.15s, background-color 0.15s;
      line-height: 1;
    }

    .solutions-nav-btn:hover,
    .solutions-nav-btn:focus,
    .solutions-nav-btn[aria-expanded="true"] {
      color: var(--brand-blue);
      background-color: var(--brand-blue-light);
      border: 1.5px solid transparent;
    }

    .solutions-nav-btn .caret {
      width: 10px;
      height: 10px;
      transition: transform 0.2s;
    }

    .solutions-nav-btn[aria-expanded="true"] .caret {
      transform: rotate(180deg);
    }

    /* ─── RESOURCES MEGA-MENU ───────────────────────────────── */
    .resources-item {
      display: block;
      padding: 0.5rem 0.5rem;
      border-radius: 0.5rem;
      text-decoration: none;
      color: inherit;
      margin-bottom: 0.375rem;
      transition: background-color 0.12s;
    }

    .resources-item:hover {
      background-color: var(--brand-blue-light);
    }

    .resources-item-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: #111827;
      line-height: 1.3;
      margin-bottom: 0.2rem;
      display: block;
    }

    .resources-item-desc {
      font-size: 0.775rem;
      color: #6b7280;
      line-height: 1.4;
      display: block;
    }

    .social-icons-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      padding: 0.375rem 0.5rem 0.25rem;
    }

    .social-icon-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 0.375rem;
      color: #374151;
      text-decoration: none;
      transition: background-color 0.12s, color 0.12s;
    }

    .social-icon-link:hover {
      background-color: var(--brand-blue-light);
      color: var(--brand-blue);
    }

    .social-icon-link svg {
      width: 16px;
      height: 16px;
    }

    /* Resources nav button */
    .resources-nav-btn {
      background: none;
      border: 1.5px solid transparent;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1a2540;
      padding: 1.5rem 0.75rem;
      border-radius: 0rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      white-space: nowrap;
      transition: color 0.15s, background-color 0.15s;
      line-height: 1;
    }

    .resources-nav-btn:hover,
    .resources-nav-btn:focus,
    .resources-nav-btn[aria-expanded="true"] {
      color: var(--brand-blue);
      background-color: var(--brand-blue-light);
      border: 1.5px solid transparent;
    }

    .resources-nav-btn .caret {
      width: 10px;
      height: 10px;
      transition: transform 0.2s;
    }

    .resources-nav-btn[aria-expanded="true"] .caret {
      transform: rotate(180deg);
    }

    @media (min-width: 992px) {
      .border-lg-start {
        border-left: 1px solid rgba(255,255,255,0.12) !important;
      }
      .border-bottom-lg-0 {
        border-bottom: 0 !important;
      }
    }

    /* ============================================================
       02 — HERO
       ============================================================ */
    .hero-section {
      padding-top: 5rem;
      padding-bottom: 3rem;
    }

    .hero-headline {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.02em;
      color: #0d122e;
    }

    @media (min-width: 1024px) {
      .hero-headline {
        font-size: 54px;
        font-weight: 500;
      }
    }

    @media (max-width: 767.98px) {
      .hero-headline {
        font-size: 2rem;
        line-height: 1.28;
      }
    }

    .hero-subtext {
      font-size: 1.0625rem;
      line-height: 1.65;
      color: #0d122e;
      max-width: 520px;
    }

    @media (max-width: 767px) {
      .hero-subtext {
        padding-left: 20px;
        padding-right: 20px;
      }
    }

    @media (max-width: 767px) {
      .btn-primary-brand,
      .btn-secondary-brand {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* ============================================================
       03 — DASHBOARD PANEL
       ============================================================ */
    .dashboard-panel {
      position: relative;
      padding: 0;
      overflow: hidden;
      margin-top: -235px;
      z-index: -2;
    }

    @media (min-width: 1024px) and (max-width: 1450px) {
      .dashboard-panel {
        margin-top: -170px;
      }
    }

    @media (min-width: 768px) and (max-width: 1023.98px) {
      .dashboard-panel {
        margin-top: -150px;
      }
    }

    @media (max-width: 767.98px) {
      .dashboard-panel {
        margin-top: -90px;
      }

      [aria-label="Product dashboard preview"] .container-fluid,
      [aria-label="Product dashboard preview"] .col-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }

    /* ============================================================
       04 — SOCIAL PROOF
       ============================================================ */
    .social-proof-section {
      padding-top: 3rem;
      padding-bottom: 3.5rem;
    }

    .proof-block + .proof-block {
      margin-top: 6rem;
    }

    .proof-headline {
      font-size: 1.0625rem;
      font-weight: 600;
      color: #374151;
      margin-bottom: 1.75rem;
    }

    @media (max-width: 767.98px) {
      .proof-block:first-child .proof-headline {
        font-size: 35px !important;
        line-height: 1.2em !important;
      }

      .proof-headline {
        font-size: 35px !important;
        line-height: 1.2em !important;
      }

      .proof-block + .proof-block {
        margin-top: 4rem;
      }

      .proof-block:last-child .proof-headline {
        margin-bottom: 1.45rem;
      }
    }

    /* ─── LOGO MARQUEE ──────────────────────────────────────── */
    .logo-row {
      overflow: hidden;
      width: 100%;
    }

    .logo-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: logo-scroll 24s linear infinite;
    }

    .logo-row:hover .logo-track {
      animation-play-state: paused;
    }

    @keyframes logo-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .logo-item {
      flex: 0 0 calc(100vw / 6);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 1.5rem;
    }

    .logo-item img,
    .logo-item svg {
      height: 40px;
      width: auto;
      max-width: 120px;
    }

    /* ─── AWARD BADGES ──────────────────────────────────────── */
    .badge-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.875rem;
    }

    .award-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.375rem;
      background: #fff;
      padding: 0.875rem 1.25rem;
      min-width: 130px;
    }

    .award-badge-star {
      color: #f59e0b;
      font-size: 1rem;
      letter-spacing: 0.1em;
    }

    .award-badge-label {
      font-size: 0.8rem;
      font-weight: 700;
      color: #111827;
      text-align: center;
      line-height: 1.3;
    }

    .award-badge-sub {
      font-size: 0.7rem;
      color: #6b7280;
      text-align: center;
    }

    /* ─── ANALYST PILLS ─────────────────────────────────────── */
    .pill-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.625rem;
    }

    .analyst-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: #fff;
      border: 1.5px solid #7ba7f7;
      border-radius: 999px;
      padding: 0.4rem 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: #111827;
      white-space: nowrap;
    }

    .analyst-pill-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background-color: #22c55e;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .analyst-pill-check svg {
      width: 10px;
      height: 10px;
    }

    /* ============================================================
       05 — PLATFORM SOLUTIONS
       ============================================================ */
    .platform-solutions-section {
      background-color: #f7faff;
      padding-top: 4.5rem;
      padding-bottom: 5rem;
    }

    .ps-headline {
      font-size: 54px;
      font-weight: 500;
      line-height: 1.18;
      letter-spacing: -0.02em;
      color: var(--text-dark);
      margin-bottom: 0.875rem;
      max-width: 66.666%;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 767.98px) {
      .ps-headline {
        font-size: 35px;
      }
    }

    .ps-subtext {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: #4b5563;
    }

    /* ─── FEATURE CARDS ─────────────────────────────────────── */
    .platform-card {
      background: #ffffff;
      border: 1px solid #d9e4ff;
      border-radius: 36px;
      max-width: 1060px;
      margin-left: auto;
      margin-right: auto;
      padding: 2.5rem;
    }

    .platform-card + .platform-card {
      margin-top: 2.5rem;
    }

    .platform-card-inner {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    @media (min-width: 992px) {
      .platform-card-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
      }
    }

    /* ─── IMAGE ─────────────────────────────────────────────── */
    .platform-card-img-wrap {
      flex: 0 0 auto;
      width: 100%;
      border-radius: 1rem;
      overflow: hidden;
      background: #c8d8f0;
    }

    .platform-card-img-wrap .platform-img-inner {
      width: 100%;
      padding-top: 66%;
      position: relative;
      overflow: hidden;
    }

    .platform-card-img-wrap .platform-img-inner > * {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 767px) {
      .platform-card-img-wrap .platform-img-inner {
        padding-top: 0;
        height: 596px;
      }
    }

    @media (min-width: 992px) {
      .platform-card-img-wrap {
        width: 500px;
        flex-shrink: 0;
      }

      .platform-card-img-wrap .platform-img-inner {
        padding-top: 0;
        height: 528px;
        position: relative;
      }
    }

    /* ─── CONTENT ───────────────────────────────────────────── */
    .platform-card-body {
      flex: 1 1 0;
      padding: 1.5rem 0 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    @media (min-width: 992px) {
      .platform-card-body {
        padding: 0.25rem 0 0;
      }
    }

    .platform-card-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.75rem;
      font-weight: 600;
      color: #0c1230;
      margin-bottom: 5.625rem;
    }

    .platform-card-eyebrow svg {
      width: 13px;
      height: 13px;
      color: #0c1230;
      flex-shrink: 0;
    }

    .platform-card-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 30px;
    }

    .platform-card-desc {
      font-size: 0.9rem;
      color: #4b5563;
      line-height: 1.65;
      margin-bottom: 1rem;
    }

    .platform-card-bullets {
      list-style: disc;
      padding: 0 0 0 1.1rem;
      margin: 0 0 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .platform-card-bullets li {
      font-size: 0.875rem;
      font-weight: 500;
      color: #374151;
    }

    /* ─── CTA BUTTON ────────────────────────────────────────── */
    .btn-platform-cta {
      display: inline-flex;
      align-items: center;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #1b4bc5;
      background: transparent;
      border: 1.5px solid #1b4bc5;
      border-radius: 8px;
      padding: 0.4rem 1.1rem;
      text-decoration: none;
      align-self: flex-start;
      transition: background-color 0.15s, color 0.15s;
      white-space: nowrap;
      margin-top: 30px;
    }

    .btn-platform-cta:hover,
    .btn-platform-cta:focus {
      background-color: #1b4bc5;
      color: #fff;
    }

    /* ============================================================
       06 — APPS
       ============================================================ */
    .apps-section {
      background-color: #fff;
      padding-top: 5rem;
      padding-bottom: 5rem;
    }

    .apps-headline {
      font-size: 56px;
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }

    .apps-subtext {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: #4b5563;
      max-width: 680px;
    }

    @media (max-width: 767.98px) {
      .apps-headline {
        font-size: 35px;
        line-height: 1.2em;
      }

      .apps-subtext {
        padding-left: 20px;
        padding-right: 20px;
      }
    }

    .app-card {
      background-color: #f7faff;
      border-radius: 1.25rem;
      padding: 1.75rem 0 0 1.75rem;
      display: flex;
      flex-direction: column;
      height: 100%;
      overflow: hidden;
    }

    .app-card-header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.875rem;
      flex-shrink: 0;
    }

    .app-card-logo {
      height: 28px;
      width: auto;
    }

    .app-card-devices {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      color: #9ca3af;
    }

    .app-card-devices svg {
      width: 16px;
      height: 16px;
      color: #0c1230;
      fill: #0c1230;
    }

    .app-card-desc {
      font-size: 0.875rem;
      line-height: 1.65;
      color: #374151;
      margin-bottom: 1.25rem;
      flex-shrink: 0;
      padding-right: 20px;
    }

    .app-card-footer {
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      padding-bottom: 1.5rem;
      flex-shrink: 0;
      margin-top: 25px;
      margin-right: 25px;
    }

    .app-card-mockup {
      flex: 1 1 auto;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      min-height: 0;
      overflow: hidden;
    }

    .app-card-mockup img {
      width: 100%;
      object-fit: contain;
      object-position: bottom right;
      display: block;
    }

    @media (max-width: 767.98px) {
      .app-card-mockup img {
        max-width: 360px;
      }
    }

    .btn-app-cta {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--brand-blue);
      background: transparent;
      border: 1.5px solid var(--brand-blue);
      border-radius: 8px;
      padding: 0.35rem 1rem;
      text-decoration: none;
      white-space: nowrap;
      transition: background-color 0.15s, color 0.15s;
    }

    .btn-app-cta:hover,
    .btn-app-cta:focus {
      background-color: var(--brand-blue);
      color: #fff;
    }

    /* ============================================================
       07 — ROI / TESTIMONIAL
       ============================================================ */
    .roi-section {
      background-color: #f7faff;
      padding: 96px 0;
    }

    .proven-roi-headline {
      font-size: 56px;
      font-weight: 500;
      color: #0d1b2e;
      line-height: 1.2;
    }

    @media (max-width: 767.98px) {
      .proven-roi-headline {
        font-size: 35px;
        line-height: 1.2em;
      }
    }

    .roi-metric-value {
      font-size: clamp(2rem, 5vw, 3rem);
      color: #0d1b2e;
      letter-spacing: -0.02em;
      font-weight: 500;
    }

    .roi-metric-label {
      font-weight: 600;
      margin-top: 0.25rem;
      font-size: 0.95rem;
      color: #0d1b2e;
    }

    .roi-blockquote {
      font-size: clamp(1.75rem, 4.5vw, 2.75rem);
      font-weight: 700;
      color: #0d1b2e;
      line-height: 1.25;
    }

    .roi-author-avatar {
      object-fit: cover;
      border: 3px solid #fff;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    }

    .roi-author-name {
      font-size: 1rem;
      color: #0d1b2e;
    }

    .roi-author-title {
      font-size: 0.875rem;
    }

    .btn-roi-learn-more {
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 6px;
      color: #2d5be3;
      border-color: #2d5be3;
    }

    .btn-roi-learn-more:hover,
    .btn-roi-learn-more:focus {
      background-color: #2d5be3;
      color: #fff;
      border-color: #2d5be3;
    }

    /* ============================================================
       08 — EPTURA AI
       ============================================================ */
    .eptura-ai-section {
      background-color: #0c1230;
      background-image: radial-gradient(ellipse at 50% 0%, rgba(45, 91, 227, 0.28) 0%, transparent 70%);
      padding: 96px 0;
    }

    .ai-disclaimer {
      max-width: 720px;
      font-size: 0.75rem;
      color: #6b7a99;
    }

    .ai-disclaimer a {
      color: #6b7a99;
    }

    .btn-ai-cta {
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 6px;
      color: #7aa0ff;
      border: 1.5px solid #7aa0ff;
      background: transparent;
    }

    .btn-ai-cta:hover,
    .btn-ai-cta:focus {
      background-color: #7aa0ff;
      color: #0c1230;
      border-color: #7aa0ff;
    }

    /* ============================================================
       09 — FRESH PERSPECTIVES
       ============================================================ */
    .fp-section {
      padding: 88px 0;
      background: #fff;
    }

    .fp-section .fp-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .fp-section .fp-header h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: #0d122e;
      margin-bottom: 12px;
    }

    .fp-section .fp-header p {
      font-size: 1rem;
      color: #0d122e;
      margin: 0 auto;
    }

    .fp-slider-wrap {
      position: relative;
    }

    .fp-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid #d1d5db;
      background: #fff;
      color: #374151;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      padding: 0;
    }

    .fp-arrow:hover {
      background: #f3f4f6;
      border-color: #9ca3af;
    }

    .fp-arrow.fp-prev {
      left: 16px;
    }

    .fp-arrow.fp-next {
      right: 16px;
    }

    .fp-arrow svg {
      pointer-events: none;
    }

    @media (min-width: 1024px) {
      .fp-arrow.fp-prev {
        left: 200px;
      }

      .fp-arrow.fp-next {
        right: 200px;
      }
    }

    .fp-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      height: 596px;
      margin: 0 10px;
      background: #1a1a2e;
      transition: opacity 0.4s ease;
      opacity: 0.5;
    }

    .fp-slider .slick-active .fp-card,
    .fp-slider .slick-center .fp-card {
      opacity: 1;
      max-width: 1060px;
      margin-left: auto;
      margin-right: auto;
    }

    .fp-card img.fp-card-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .fp-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.10) 100%);
    }

    .fp-card-body {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px 24px 26px;
      color: #fff;
    }

    .fp-card-logo {
      width: 28px;
      height: 28px;
      background: rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fp-card-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      margin-top: 8px;
    }

    .fp-card-label svg {
      opacity: 0.85;
      flex-shrink: 0;
    }

    .fp-card-bottom {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .fp-card-title {
      font-size: clamp(1.2rem, 2.2vw, 1.6rem);
      color: #fff;
      font-weight: 700;
      line-height: 1.2;
      margin: 0;
    }

    .fp-card-meta {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
    }

    .fp-card-desc {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.82);
      margin: 0;
      line-height: 1.5;
    }

    .fp-card-cta {
      display: inline-block;
      margin-top: 14px;
      padding: 8px 18px;
      border: 1.5px solid rgba(255, 255, 255, 0.7);
      border-radius: 8px;
      color: #fff;
      background: transparent;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
      align-self: flex-start;
    }

    .fp-card-cta:hover {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .fp-slider .slick-track {
      display: flex;
      align-items: stretch;
    }

    .fp-slider .slick-slide {
      height: auto;
    }

    .fp-slider .slick-slide > div {
      height: 100%;
    }

    .fp-arrows-mobile {
      display: none;
    }

    @media (max-width: 767px) {
      .fp-section {
        padding: 88px 0 44px;
      }

      .fp-card {
        height: 596px;
        margin: 0;
      }

      .fp-slider .slick-center .fp-card {
        opacity: 1;
      }

      .fp-slider-wrap {
        padding: 0 20px;
        position: relative;
        padding-bottom: 60px;
      }

      .fp-slider-wrap .slick-dots {
        display: none !important;
      }

      .fp-arrow {
        top: 90%;
        transform: none;
      }

      .fp-arrow.fp-prev {
        left: 140px;
      }

      .fp-arrow.fp-next {
        right: 140px;
      }
    }

    /* ============================================================
       10 — EPTURA FOR GOVERNMENT
       ============================================================ */
    .efg-section {
      position: relative;
      overflow: hidden;
      padding: 100px 0 80px;
      background-color: #2a3d5e;
      background-size: cover;
      background-position: right center;
      background-repeat: no-repeat;
    }

    .efg-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(30, 50, 90, 0.78);
      z-index: 0;
    }

    .efg-inner {
      position: relative;
      z-index: 1;
    }

    .efg-shield {
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
    }

    .efg-shield svg {
      width: 44px;
      height: 44px;
      color: #7aa0ff;
      stroke: #7aa0ff;
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .efg-headline {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 700;
      color: #ffffff;
      text-align: center;
      margin-bottom: 20px;
      line-height: 1.15;
    }

    .efg-headline .efg-accent {
      color: #7aa0ff;
    }

    .efg-subtext {
      font-size: 20px;
      color: #d1d9f0;
      text-align: center;
      max-width: 860px;
      margin: 0 auto 56px;
      line-height: 1.65;
    }

    .efg-subtext a.efg-link {
      color: #7aa0ff;
      text-decoration: none;
      font-weight: 500;
    }

    .efg-subtext a.efg-link:hover,
    .efg-subtext a.efg-link:focus {
      text-decoration: underline;
      outline: 2px solid #7aa0ff;
      outline-offset: 2px;
      border-radius: 2px;
    }

    .efg-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-bottom: 52px;
    }

    .efg-card {
      flex: 1 1 280px;
      max-width: 380px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 20px;
      padding: 36px 32px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .efg-card:hover,
    .efg-card:focus-within {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(110, 168, 254, 0.45);
    }

    .efg-card-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 14px;
    }

    .efg-card-body {
      font-size: 0.95rem;
      color: #b8c4e0;
      line-height: 1.7;
      margin: 0;
    }

    .efg-cta-wrap {
      display: flex;
      justify-content: center;
    }

    .efg-btn {
      display: inline-block;
      padding: 14px 18px;
      border: 2px solid rgba(255, 255, 255, 0.75);
      border-radius: 8px;
      color: #ffffff;
      background: transparent;
      font-size: 1rem;
      font-weight: 500;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      min-height: 48px;
      line-height: 1.4;
    }

    .efg-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: #ffffff;
      color: #ffffff;
    }

    .efg-btn:focus-visible {
      outline: 3px solid #6ea8fe;
      outline-offset: 3px;
    }

    @media (max-width: 575.98px) {
      .efg-card {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .efg-section {
        padding: 72px 0 60px;
        background-position: center center;
      }
    }

    @media (min-width: 576px) and (max-width: 991.98px) {
      .efg-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 10px);
      }
    }

    @media (min-width: 992px) {
      .efg-card {
        flex: 1 1 0;
        max-width: 380px;
      }
    }

    /* ============================================================
       11 — LOOKING TO SWITCH
       ============================================================ */
    .lts-section {
      background-color: #0c1230;
      padding: 96px 0 100px;
      text-align: center;
    }

    .lts-headline {
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 24px;
      line-height: 1.15;
      font-family: 'Flexible', sans-serif;
    }

    .lts-subtext {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      color: #c8d3ec;
      max-width: 720px;
      margin: 0 auto 48px;
      line-height: 1.7;
      font-family: 'Flexible', sans-serif;
    }

    .lts-btn-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }

    .lts-btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 18px;
      background-color: #2d5be3;
      border: 2px solid #2d5be3;
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Flexible', sans-serif;
      text-decoration: none;
      min-height: 52px;
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .lts-btn-primary:hover {
      background-color: #1e48c8;
      border-color: #1e48c8;
      color: #ffffff;
    }

    .lts-btn-primary:focus-visible {
      outline: 3px solid #6ea8fe;
      outline-offset: 3px;
    }

    .lts-btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 18px;
      background-color: transparent;
      border: 2px solid rgba(255, 255, 255, 0.7);
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Flexible', sans-serif;
      text-decoration: none;
      min-height: 52px;
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .lts-btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: #ffffff;
      color: #ffffff;
    }

    .lts-btn-secondary:focus-visible {
      outline: 3px solid #6ea8fe;
      outline-offset: 3px;
    }

    @media (max-width: 575.98px) {
      .lts-btn-primary,
      .lts-btn-secondary {
        width: 100%;
        max-width: 340px;
      }

      .lts-btn-wrap {
        flex-direction: column;
        align-items: center;
      }
    }

    /* ============================================================
       12 — FOOTER
       ============================================================ */
       /* ── Site Footer ── */
       .site-footer {
         background-color: #0c1230;
         padding: 72px 0 0;
       }

       .footer-bottom-bar {
         background-color: #0c1230;

         padding: 16px 24px;
         margin-top: 20px;
       }

       .footer-bottom-inner {
         display: flex;
         flex-wrap: wrap;
         align-items: center;
         justify-content: center;
         gap: 8px 24px;
         font-size: 0.8rem;
         color: rgba(255,255,255,0.55);
       }

      .footer-bottom-inner ul {
          list-style: none;
          padding: 0;
          margin: 0;
          display: contents;
        }

        .footer-bottom-inner li {
          display: contents;
        }

       .footer-bottom-inner a {
         color: rgba(255,255,255,0.55);
         text-decoration: none;
         white-space: nowrap;
         transition: color 0.15s;
       }

       .footer-bottom-inner a:hover {
         color: #fff;
       }

       .footer-bottom-inner span {
         white-space: nowrap;
       }

       .site-footer-logo {
         display: block;
         height: 32px;
         width: auto;
         margin-bottom: 52px;
       }

       .site-footer-col-heading {
         font-size: 0.9375rem;
         font-weight: 700;
         color: #ffffff;
         margin-bottom: 18px;
         font-family: 'Flexible', sans-serif;
         letter-spacing: 0.01em;
       }

       .site-footer-links {
         list-style: none;
         padding: 0;
         margin: 0;
       }

       .site-footer-links li {
         margin-bottom: 11px;
       }

       .site-footer-links a {
         font-size: 0.9rem;
         color: rgba(255, 255, 255, 0.58);
         text-decoration: none;
         font-family: 'Flexible', sans-serif;
         line-height: 1.5;
         transition: color 0.15s ease;
       }

       .site-footer-links a:hover {
         color: #ffffff;
         text-decoration: underline;
       }

       .site-footer-links a:focus-visible {
         outline: 2px solid #6ea8fe;
         outline-offset: 2px;
         border-radius: 2px;
         color: #ffffff;
       }

       /* Social icons row */
       .site-footer-socials {
         display: flex;
         flex-wrap: wrap;
         gap: 6px;
         margin-top: 24px;
       }

       .site-footer-social-btn {
         display: inline-flex;
         align-items: center;
         justify-content: center;
         width: 34px;
         height: 34px;
         border-radius: 6px;
         color: rgba(255, 255, 255, 0.6);
         background: transparent;
         text-decoration: none;
         transition: color 0.15s ease, background 0.15s ease;
       }

       .site-footer-social-btn svg {
         width: 17px;
         height: 17px;
         fill: currentColor;
         display: block;
       }

       .site-footer-social-btn:hover {
         color: #ffffff;
         background: rgba(255, 255, 255, 0.1);
       }

       .site-footer-social-btn:focus-visible {
         outline: 2px solid #6ea8fe;
         outline-offset: 2px;
         border-radius: 6px;
         color: #ffffff;
       }

       /* Mobile spacing */
       @media (max-width: 767.98px) {
         .site-footer {
           padding: 56px 0 48px;
         }
         .site-footer-logo {
           margin-bottom: 40px;
         }
       }

    /* ============================================================
       13 — FLOATING ACTION BUTTONS (FAB)
       ============================================================ */
    .fab-stack {
      position: fixed;
      bottom: 32px;
      right: 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      z-index: 1050;
    }

    #fabScrollUp {
      position: fixed;
      bottom: 32px;
      left: 28px;
      z-index: 1050;
      width: auto;
    }

    .fab-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border: none;
      background: none;
      padding: 0;
      cursor: pointer;
      border-radius: 50%;
      transition: transform 0.2s ease, opacity 0.2s ease;
      text-decoration: none;
    }

    .fab-btn img {
      width: auto;
      height: 44px;
      display: block;
    }

    .fab-btn:hover {
      transform: scale(1.08);
      opacity: 0.9;
    }

    .fab-btn:focus-visible {
      outline: 3px solid #6ea8fe;
      outline-offset: 3px;
    }

    #fabScrollUp {
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    #fabScrollUp.visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .footer-legal-links .no_pointer {
      pointer-events: none;
    }

    .resource-sub-menu li a {
        text-decoration: none;
    }
    .search-results .nav-links {
      width: 100%;
    }
    .tooltip {
      opacity: 1 !important;
    }
    .epturacore_plans .tooltip {
      opacity: 0 !important;
    }
    .epturacore_plans ul li {
      font-weight: 300;
    }

