*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a1628;
  color: #d1d5db;
  -webkit-font-smoothing: antialiased;
}

/* ── Focus States (WCAG 2.2) ── */
/*.elementor-location-single h1{
    font-family: var(--sf);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #8b5cf6;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-blue) 35%, var(--color-mint) 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-wrap: balance;
    width: fit-content;
}*/

a {
    text-decoration: none;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid #00adff;
  outline-offset: 2px;
    text-decoration: none;
}
span.ge-arrow-icon {
    top: 4px;
    position: relative;
}
/* ── Reduced Motion (WCAG 2.2) ── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ── Skip Link ── */
.ge-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.ge-sr-only:focus {
  position: fixed; top: 8px; left: 8px; width: auto; height: auto;
  padding: 16px 24px; margin: 0; overflow: visible; clip: auto; white-space: normal;
  background: #8b5cf6; color: white; border-radius: 8px; z-index: 9999;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; text-decoration: none;
}

/* ── Header ── */
.homepage .ge-header {
  top: 40px;
}
.ge-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(15, 25, 45, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  transition: background 0.3s ease;
}
.ge-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, #8b5cf6, #00adff, #00d9c0);
}
.ge-header.ge-scrolled { background: rgba(15, 25, 45, 0.98); }
.ge-header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 16px clamp(16px, 3vw, 24px);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}

/* ── Logo ── */
.ge-logo { display: flex; align-items: center; text-decoration: none; }
.ge-logo img { height: clamp(40px, 6vw, 52px); width: auto; }
.ge-logo-fallback {
  display: flex; align-items: center; gap: 10px;
}
.ge-logo-fallback-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #8b5cf6, #00adff, #00d9c0);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: white;
}
.ge-logo-fallback-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
  color: white; line-height: 1.1;
}
.ge-logo-fallback-text span { font-weight: 400; letter-spacing: 0.5px; }

/* ── Desktop Nav ── */
.ge-desktop-nav {
  display: flex; align-items: center; gap: 4px;
}
.ge-nav-item {
  position: relative; display: flex; align-items: center; gap: 6px;
  padding: 8px clamp(8px, 1.5vw, 16px);
  background: transparent; border: none; color: white;
  font-family: 'Inter', sans-serif; font-size: clamp(13px, 1.4vw, 14px); font-weight: 500;
  cursor: pointer; white-space: nowrap; outline: none;
  transition: color 0.3s ease;
}
.ge-nav-item::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px; height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #00adff, #00d9c0);
  border-radius: 2px; transform: scaleX(0); transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.ge-nav-item:hover::after, .ge-nav-item.ge-active::after {
  transform: scaleX(1);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

/* ── Chevron ── */
.ge-chevron {
  transition: transform 0.3s ease; display: inline-flex;
}
.ge-chevron.ge-open { transform: rotate(180deg); }

/* ── Primary CTA Button ── */
.ge-btn-primary {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; overflow: hidden;
  background: rgba(139, 92, 246, 0.8);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: white; font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.5vw, 14px); font-weight: 500;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.ge-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}
.ge-btn-primary .ge-btn-fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #00adff);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.ge-btn-primary:hover .ge-btn-fill { transform: translateX(0); }
.ge-btn-primary .ge-btn-text,
.ge-btn-primary .ge-btn-arrow { position: relative; z-index: 1; }
.ge-btn-primary:hover .ge-btn-arrow { transform: translateX(4px); }
.ge-btn-primary .ge-btn-arrow { transition: transform 0.3s ease; display: inline-flex; }

/* ── Dropdown Panels ── */
.ge-dropdown {
  position: absolute; top: 100%; left: 0; right: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(20, 30, 50, 0.98) 50%, rgba(10, 22, 40, 0.98) 100%);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-top: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.ge-dropdown.ge-open {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.ge-dropdown-inner {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(16px, 2vw, 24px);
  min-height: 200px;
  display: flex; flex-wrap: wrap; gap: 24px;
}

/* ── Menu Items (within dropdowns) ── */
.ge-menu-link {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none; outline: none; cursor: pointer;
  transition: all 0.2s ease;
}
.ge-menu-link:hover, .ge-menu-link:focus-visible {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}
/* Card variant (Zavmo, Content Library) — purple glass default */
.ge-menu-link-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(0, 173, 255, 0.04));
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.ge-menu-link-card:hover, .ge-menu-link-card:focus-visible {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
}
.ge-menu-link-title {
  font-family: 'Inter', sans-serif; font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 600; color: white; margin-bottom: 2px;
}
.ge-menu-link-desc {
  font-family: 'Inter', sans-serif; font-size: clamp(12px, 1.3vw, 13px);
  color: #d1d5db; margin: 0;
}

/* ── Product Items (colored dot style) ── */
.ge-product-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none; outline: none; cursor: pointer;
  transition: all 0.2s ease;
}
.ge-product-link:hover, .ge-product-link:focus-visible {
  background: linear-gradient(90deg, color-mix(in srgb, var(--dot-color) 8%, transparent), transparent);
  border-color: color-mix(in srgb, var(--dot-color) 25%, transparent);
}
.ge-product-link:hover .ge-product-dot { box-shadow: 0 0 16px var(--dot-color), 0 0 8px var(--dot-color); }
.ge-product-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dot-color);
  box-shadow: 0 0 10px color-mix(in srgb, var(--dot-color) 60%, transparent);
  flex-shrink: 0; transition: box-shadow 0.3s ease;
}
.ge-product-link-label {
  font-family: 'Inter', sans-serif; font-size: clamp(13px, 1.4vw, 14px);
  font-weight: 600; color: white;
}

/* ── Impact Suite Title Row ── */
.ge-suite-title {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none; outline: none; cursor: pointer;
  transition: all 0.3s ease;
}
.ge-suite-title:hover {
  background:
    linear-gradient(rgba(16, 24, 44, 0.95), rgba(16, 24, 44, 0.95)) padding-box,
    linear-gradient(90deg, #8b5cf6, #00adff, #00d9c0) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.2), 0 0 8px rgba(0, 173, 255, 0.15);
}
.ge-suite-title-text {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  background: linear-gradient(90deg, #8b5cf6, #00adff, #00d9c0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ge-suite-title-sub {
  font-family: 'Inter', sans-serif; font-size: clamp(11px, 1.2vw, 13px); color: #d1d5db;
  margin-left: 10px;
}
.ge-suite-title .ge-arrow-icon { transition: transform 0.2s ease; flex-shrink: 0; margin-left: 12px; }
.ge-suite-title:hover .ge-arrow-icon { transform: translateX(4px); }

/* ── Icon Containers (GlowIconBox) ── */
.ge-icon-box {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.ge-icon-box-48 { width: 48px; height: 48px; border-radius: 12px; }
.ge-icon-box-44 { width: 44px; height: 44px; border-radius: 10px; }
.ge-icon-box-36 { width: 36px; height: 36px; border-radius: 8px; }
.ge-menu-link:hover .ge-icon-box,
.ge-menu-link:focus-visible .ge-icon-box,
.ge-sidebar-card:hover .ge-icon-box {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 173, 255, 0.25), 0 0 8px rgba(139, 92, 246, 0.2);
}

/* ── Gradient-Masked Icons (CSS mask technique) ── */
.ge-icon-gradient {
  background: linear-gradient(135deg, #00adff 0%, #8b5cf6 100%);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.ge-icon-22 { width: 22px; height: 22px; }
.ge-icon-26 { width: 26px; height: 26px; }
.ge-icon-28 { width: 28px; height: 28px; }

/* ── Sidebar Cards ── */
.ge-sidebar-card {
  padding: 16px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(0, 173, 255, 0.04));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  flex: 1; display: flex; flex-direction: column;
  text-decoration: none; outline: none;
  transition: all 0.2s ease; cursor: pointer;
}
.ge-sidebar-card:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(0, 173, 255, 0.06));
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}
.ge-sidebar-card-title {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 600; color: white; margin-bottom: 6px;
}
.ge-sidebar-card-desc {
  font-family: 'Inter', sans-serif; font-size: 12px; color: #d1d5db;
  line-height: 1.5; flex: 1; margin: 0;
}
.ge-sidebar-card-link {
  display: flex; align-items: center; gap: 6px; margin-top: 12px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #00d9c0;
}
.ge-sidebar-card-link .ge-arrow-icon { transition: transform 0.2s ease; }
.ge-sidebar-card:hover .ge-sidebar-card-link .ge-arrow-icon { transform: translateX(4px); }

/* ── Blog Card in Sidebar ── */
.ge-blog-card-thumb {
  width: 100%; height: 80px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 173, 255, 0.2));
  margin-bottom: 12px; display: flex; align-items: center; justify-content: center;
}
.ge-blog-card-thumb span {
  font-family: 'Inter', sans-serif; font-size: 11px; color: #d1d5db; opacity: 0.6;
}

/* ── Layout Helpers ── */
.ge-dropdown-main { flex: 1 1 400px; display: flex; flex-direction: column; gap: 12px; min-width: 280px; }
.ge-dropdown-sidebar { flex: 0 0 auto; width: clamp(220px, 25vw, 280px); display: flex; }
.ge-product-grid { display: flex; flex-direction: column; gap: 8px; }
.ge-approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; flex: 1; }

/* ── Mobile Menu ── */
.ge-mobile-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto; padding-bottom: env(safe-area-inset-bottom, 20px);
}
.ge-mobile-overlay.ge-open { transform: translateX(0); }
.ge-mobile-header {
  padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky; top: 0; background: rgba(10, 22, 40, 0.98); z-index: 10;
}
.ge-mobile-close {
  background: transparent; border: none; color: white; cursor: pointer;
  padding: 12px; min-width: 48px; min-height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.ge-mobile-nav { padding: 24px; }
.ge-mobile-section { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.ge-mobile-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; background: transparent; border: none; color: white;
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600;
  cursor: pointer; text-align: left; min-height: 56px;
}
.ge-mobile-submenu {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.ge-mobile-submenu.ge-open { max-height: 400px; }
.ge-mobile-submenu a {
  display: block; padding: 12px 16px; color: #d1d5db;
  text-decoration: none; font-family: 'Inter', sans-serif; font-size: 14px;
  min-height: 48px; line-height: 24px;
}
.ge-mobile-cta { margin-top: 32px; }

/* ── Mobile Button (hamburger) ── */
.ge-mobile-menu-btn {
  display: none; background: transparent; border: none; color: white;
  cursor: pointer; padding: 12px; min-width: 48px; min-height: 48px;
  align-items: center; justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ge-desktop-nav, .ge-desktop-cta { display: none !important; }
  .ge-mobile-menu-btn { display: flex !important; }
}