.w-container {max-width:1124px;}
.truncate {white-space: nowrap; text-overflow: ellipsis;}
.truncate-2 {text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;}
.truncate-5 {text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 5;-webkit-box-orient: vertical;overflow: hidden;}

/* ── Features breadcrumb font size fix ── */
.div-block-115 {
  font-size: 14px;
}

/* ── Remove hero bottom shadow/border ── */
#Hero.bg-white {
  border: none;
}

/* ── Slider dot active state ── */
.w-slider-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255,255,255,0.4);
  border-radius: 50%;
  display: inline-block;
  margin: 0 3px;
  cursor: pointer;
  transition: background-color 200ms ease;
}
.w-slider-dot.w-active {
  background-color: #fff;
}

/* ── FAQ accordion transition support ── */
.faq-accordion .accordion-close {
  transition: transform 300ms ease;
}

/* ── Smooth scroll for anchor links ── */
html { scroll-behavior: smooth; }

/* ═══════════════════════════════════════════
   Mobile nav — full-screen slide-in panel
   ═══════════════════════════════════════════ */

/* Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 15, 41, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
}
.mobile-menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Panel — hidden by default; JS sets display:flex when opening */
.w-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 15, 41, 0.12);
}
.w-nav-overlay.is-open {
  transform: translateX(0);
}

/* Panel header with close button */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  flex-shrink: 0;
}
.mobile-menu-header .mobile-logo {
  height: 28px;
  width: auto;
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  background: #f0f4f8;
  cursor: pointer;
  transition: background 200ms ease;
  flex-shrink: 0;
}
.mobile-menu-close:hover,
.mobile-menu-close:active {
  background: #e2e8f0;
}
.mobile-menu-close svg {
  width: 18px;
  height: 18px;
  color: #000f29;
}

/* Navigation list */
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 0;
  flex: 1;
}

/* Individual nav items — staggered entrance */
.mobile-nav-item {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.w-nav-overlay.is-open .mobile-nav-item {
  opacity: 1;
  transform: translateX(0);
}
.w-nav-overlay.is-open .mobile-nav-item:nth-child(1) { transition-delay: 80ms; }
.w-nav-overlay.is-open .mobile-nav-item:nth-child(2) { transition-delay: 130ms; }
.w-nav-overlay.is-open .mobile-nav-item:nth-child(3) { transition-delay: 180ms; }
.w-nav-overlay.is-open .mobile-nav-item:nth-child(4) { transition-delay: 230ms; }
.w-nav-overlay.is-open .mobile-nav-item:nth-child(5) { transition-delay: 280ms; }
.w-nav-overlay.is-open .mobile-nav-item:nth-child(6) { transition-delay: 330ms; }

/* Nav link styling */
.mobile-nav-item > a,
.mobile-nav-item > .mobile-dd-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  color: #000f29;
  text-decoration: none;
  border-bottom: 1px solid #eef1f5;
  cursor: pointer;
  transition: color 150ms ease;
}
.mobile-nav-item > a:active,
.mobile-nav-item > .mobile-dd-trigger:active {
  color: #4a5568;
}

/* Chevron on dropdown trigger */
.mobile-dd-trigger .mobile-chevron {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 300ms cubic-bezier(0.32, 0.72, 0, 1), color 200ms ease;
  flex-shrink: 0;
}
.mobile-dd-trigger.is-expanded .mobile-chevron {
  transform: rotate(180deg);
  color: #000f29;
}

/* Dropdown sub-menu */
.mobile-dd-list {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-dd-list.is-expanded {
  grid-template-rows: 1fr;
}
.mobile-dd-list-inner {
  overflow: hidden;
}

.mobile-dd-list-inner a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #4a5568;
  text-decoration: none;
  border-radius: 10px;
  transition: background 200ms ease, color 200ms ease;
}
.mobile-dd-list-inner a:first-child {
  margin-top: 4px;
}
.mobile-dd-list-inner a:last-child {
  margin-bottom: 8px;
}
.mobile-dd-list-inner a:active {
  background: #f0f4f8;
  color: #000f29;
}

/* Small dot indicator for sub-items */
.mobile-dd-list-inner a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
  transition: background 200ms ease;
}
.mobile-dd-list-inner a:active::before {
  background: #000f29;
}

/* ── CTA buttons at bottom ── */
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px 32px;
  margin-top: auto;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms ease 300ms, transform 400ms ease 300ms;
}
.w-nav-overlay.is-open .mobile-nav-ctas {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-ctas .mobile-cta {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.mobile-nav-ctas .mobile-cta:active {
  transform: scale(0.98);
}
.mobile-cta-primary {
  background: #000f29;
  color: #fff !important;
}
.mobile-cta-secondary {
  background: #f0f4f8;
  color: #000f29 !important;
  border: 1px solid #e2e8f0;
}

/* ── Hide the old overlay cloned menu ── */
.w-nav-overlay .w-nav-menu { display: none !important; }

/* ── Ensure header sits above backdrop ── */
/* z-index already provided by base .w-nav rule;
   do NOT override position here — on mobile Webflow sets
   position:fixed via media query, and overriding it to
   relative causes a white gap (body has margin-top for the
   fixed header). */

/* ═══════════════════════════════════════════
   Animated hamburger → X icon
   ═══════════════════════════════════════════ */
.menu-button .icon-3.w-icon-nav-menu {
  font-size: 0;
  width: 22px;
  height: 14px;
  position: relative;
  color: transparent;
}

.menu-button .icon-3.w-icon-nav-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000f29;
  box-shadow: 0 6px 0 #000f29;
  transition: transform 300ms ease, top 300ms ease, box-shadow 200ms ease;
}

.menu-button .icon-3.w-icon-nav-menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000f29;
  transition: transform 300ms ease, bottom 300ms ease;
}

/* Hamburger → X when open */
.menu-button.w--open {
  background-color: transparent !important;
}

.menu-button.w--open .icon-3.w-icon-nav-menu::before {
  top: 6px;
  transform: rotate(45deg);
  box-shadow: none;
}

.menu-button.w--open .icon-3.w-icon-nav-menu::after {
  bottom: 6px;
  transform: rotate(-45deg);
}
