:root {
  --gp-primary: #092ea0;
  --gp-accent: #2e8eff;
  --gp-navy: #071a2f;
  --gp-font-sans: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gp-blue-soft: #eaf3ff;
  --gp-accent-soft: #e8f3ff;
  --gp-bg: #f7fafc;
  --gp-white: #fff;
  --gp-text: #000000;
  --gp-muted: #000000;
  --gp-border: #dce7f2;
  --gp-shadow: 0 24px 70px rgba(0, 30, 70, .14);
  --gp-radius: 8px;
  --gp-container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gp-text);
  background: var(--gp-bg);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(47, 141, 255, .38);
  outline-offset: 3px;
}

.screen-reader-text,
.gp-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;
}

.gp-skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  color: var(--gp-white);
  background: var(--gp-primary);
}

.gp-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gp-primary), var(--gp-accent));
}

.gp-container {
  width: min(var(--gp-container), calc(100% - 40px));
  margin-inline: auto;
}

.gp-section {
  padding: 96px 0;
}

.gp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gp-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gp-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--gp-navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  margin: 0;
  color: var(--gp-muted);
}

.gp-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.gp-section-head h2 {
  margin-top: 12px;
}

.gp-section-head p {
  margin-top: 14px;
  font-size: 1.06rem;
}

.gp-section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: none;
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--gp-radius);
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.gp-btn:hover {
  transform: translateY(-2px);
}

.gp-btn--primary {
  color: var(--gp-white);
  background: var(--gp-primary);
  box-shadow: 0 14px 32px rgba(0, 51, 102, .24);
}

.gp-btn--accent {
  color: var(--gp-white);
  background: var(--gp-accent);
  box-shadow: 0 14px 32px rgba(47, 141, 255, .3);
}

.gp-btn--secondary {
  color: var(--gp-primary);
  background: var(--gp-white);
  border-color: var(--gp-border);
}

.gp-btn--ghost {
  color: var(--gp-white);
  border-color: rgba(255, 255, 255, .25);
}

.gp-btn--light {
  color: var(--gp-primary);
  background: var(--gp-white);
}

.gp-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 250, 252, .86);
  border-bottom: 1px solid rgba(220, 231, 242, .75);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

/* Dual Navbar Logic: When product header is present, main header scrolls away */
body.has-product-header .gp-site-header {
  position: relative;
  z-index: 1005;
  /* Must be higher than product header's 1000 */
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  box-shadow: none;
}

body.has-product-header .gp-site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
}

/* Product Specific Sub-Header */
.gp-product-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gp-product-header.is-scrolled {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.gp-product-header-inner {
  display: flex;
  align-items: center;
  min-height: 64px;
}

.gp-product-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--gp-navy);
}

.gp-product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f0f8ff;
  color: #3b82f6;
  border-radius: 8px;
}

.gp-product-icon svg {
  width: 20px;
  height: 20px;
}

.gp-product-links {
  margin-left: auto;
}

.gp-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-nav-menu>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 15px;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 20px 0;
  /* Creates hover area */
}

.gp-nav-menu>li:hover>a {
  color: var(--gp-primary);
}

.gp-caret {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.gp-has-dropdown:hover .gp-caret {
  transform: rotate(180deg);
}

.gp-has-dropdown {
  position: relative;
}

.gp-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 24px;
  display: flex;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 500px;
  border: 1px solid #f3f4f6;
  z-index: 1001;
}

.gp-has-dropdown:hover .gp-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Prevent the last dropdown from causing horizontal scroll by aligning it right */
.gp-nav-menu>li:last-child .gp-dropdown-menu {
  left: auto;
  right: 0;
  transform: translateY(10px);
}

.gp-nav-menu>li:last-child:hover .gp-dropdown-menu {
  transform: translateY(0);
}

.gp-dropdown-single {
  min-width: 250px;
}

.gp-dropdown-col {
  flex: 1;
}

.gp-dropdown-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.gp-dropdown-col h4:not(:first-child) {
  margin-top: 24px;
}

.gp-dropdown-col a {
  display: block;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  padding: 8px 0;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gp-dropdown-col a:hover {
  color: var(--gp-primary);
}

.gp-product-actions {
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.4s ease;
}

.gp-product-header.is-scrolled .gp-product-actions {
  max-width: 200px;
  margin-left: 32px;
  opacity: 1;
}

.gp-product-actions .gp-btn {
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  background: #ef4444;
  /* Zoho style red CTA */
  color: white;
  border: none;
  border-radius: 6px;
}

.gp-product-actions .gp-btn:hover {
  background: #dc2626;
}

.gp-site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 50px rgba(7, 26, 47, .08);
}

.gp-header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 78px;
  position: relative;
  /* Added for mega menu full width anchor */
}

.gp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 600;
}

.gp-logo-img {
  width: clamp(140px, 14vw, 190px);
  height: auto;
}

.gp-logo-mark-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.gp-primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.gp-nav-link {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 12px;
  color: #24364d;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.gp-nav-link:hover {
  color: var(--gp-primary);
  background: var(--gp-blue-soft);
}

.gp-has-mega {
  position: static;
}

/* Changed to static so child is relative to header-inner */

.gp-mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 16px;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--gp-border);
  border-radius: 0 0 12px 12px;
  box-shadow: var(--gp-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 1000;
}

.gp-has-mega:hover .gp-mega-panel,
.gp-has-mega:focus-within .gp-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gp-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
}

.gp-mega-grid::-webkit-scrollbar {
  width: 4px;
}

.gp-mega-grid::-webkit-scrollbar-track {
  background: transparent;
}

.gp-mega-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.gp-mega-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}

.gp-mega-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  align-items: flex-start;
}

.gp-mega-card:hover {
  background: var(--gp-bg);
  border-color: var(--gp-border);
  transform: translateY(-1px);
}

.gp-mega-card strong {
  display: block;
  color: var(--gp-navy);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 3px;
}

.gp-mega-card small {
  display: block;
  color: var(--gp-muted);
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.35;
}

.gp-mini-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--gp-primary);
  background: var(--gp-blue-soft);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 1px;
}

.gp-icon-svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gp-mini-icon .gp-icon-svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.gp-mega-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  color: var(--gp-white);
  background: linear-gradient(145deg, var(--gp-primary), var(--gp-navy));
  border-radius: 8px;
}

.gp-mega-feature strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.gp-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gp-search-trigger {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gp-border);
  border-radius: 8px;
  background: var(--gp-white);
  cursor: pointer;
}

.gp-search-trigger span {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--gp-primary);
  border-radius: 50%;
  inset: 11px auto auto 10px;
}

.gp-search-trigger span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: var(--gp-primary);
  transform: rotate(45deg);
  right: -6px;
  bottom: -3px;
}

.gp-menu-toggle {
  display: none;
}

.gp-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 110px;
  background:
    radial-gradient(circle at 72% 20%, rgba(47, 141, 255, .18), transparent 26%),
    radial-gradient(circle at 18% 14%, rgba(20, 52, 164, .16), transparent 28%),
    linear-gradient(180deg, #fff, var(--gp-bg));
}

.gp-hero-grid,
.gp-product-hero-grid,
.gp-analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  gap: 56px;
  align-items: center;
}

.gp-hero-copy p {
  max-width: 660px;
  margin-top: 20px;
  font-size: 1.1rem;
}

.gp-hero-actions,
.gp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gp-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.gp-trust-points span {
  padding: 8px 12px;
  color: var(--gp-primary);
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.gp-dashboard-stage {
  position: relative;
  min-height: 520px;
}

.gp-dashboard-card {
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--gp-shadow);
  backdrop-filter: blur(20px);
}

.gp-dashboard-card--main {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.gp-dashboard-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  color: var(--gp-muted);
  font-size: 13px;
}

.gp-dashboard-top span {
  width: 10px;
  height: 10px;
  background: var(--gp-border);
  border-radius: 50%;
}

.gp-dashboard-top strong {
  margin-left: auto;
  color: var(--gp-primary);
}

.gp-dashboard-layout {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 16px;
}

.gp-dashboard-layout aside {
  display: grid;
  gap: 10px;
  align-content: start;
}

.gp-dashboard-layout aside span {
  padding: 10px;
  color: var(--gp-primary);
  background: var(--gp-blue-soft);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.gp-dashboard-content {
  display: grid;
  gap: 16px;
}

.gp-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gp-kpi-row div {
  padding: 16px;
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: 8px;
}

.gp-kpi-row strong {
  display: block;
  color: var(--gp-accent);
  font-size: 1.25rem;
  line-height: 1;
}

.gp-kpi-row span {
  color: var(--gp-muted);
  font-size: 12px;
  font-weight: 600;
}

.gp-chart-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 160px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f5f9fd);
  border: 1px solid var(--gp-border);
  border-radius: 8px;
}

.gp-chart-bars span {
  flex: 1;
  height: var(--h);
  min-height: 28px;
  background: linear-gradient(180deg, var(--gp-accent), var(--gp-primary));
  border-radius: 8px 8px 3px 3px;
  animation: gpGrow 1.4s ease both;
}

.gp-approval-list {
  display: grid;
  gap: 8px;
}

.gp-approval-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: 8px;
  color: #425466;
  font-size: 13px;
  font-weight: 600;
}

.gp-approval-list b {
  width: 9px;
  height: 9px;
  background: #18a058;
  border-radius: 50%;
}

.gp-floating-card {
  position: absolute;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(7, 26, 47, .14);
  color: var(--gp-muted);
  font-size: 13px;
  font-weight: 600;
  animation: gpFloat 5.5s ease-in-out infinite;
}

.gp-floating-card strong {
  display: block;
  color: var(--gp-accent);
  font-size: 1.25rem;
}

.gp-float-one {
  top: 42px;
  right: -10px;
}

.gp-float-two {
  bottom: 70px;
  left: -20px;
  animation-delay: -1.3s;
}

.gp-float-three {
  right: 34px;
  bottom: 0;
  animation-delay: -2.2s;
}

.gp-logo-strip {
  padding: 32px 0;
  background: var(--gp-white);
  border-block: 1px solid var(--gp-border);
}

.gp-logo-strip p {
  margin-bottom: 16px;
  color: var(--gp-muted);
  text-align: center;
  font-weight: 600;
}

.gp-logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.gp-logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: gpMarquee 24s linear infinite;
}

.gp-logo-track span {
  display: grid;
  place-items: center;
  min-width: 150px;
  height: 56px;
  color: #718096;
  background: #f6f9fc;
  border: 1px solid var(--gp-border);
  border-radius: 8px;
  font-weight: 600;
}

.gp-products-section {
  background: var(--gp-white);
}

.gp-product-tabs {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 22px;
}

.gp-product-list {
  display: grid;
  gap: 10px;
}

.gp-product-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px;
  color: var(--gp-text);
  background: var(--gp-bg);
  border: 1px solid var(--gp-border);
  border-radius: 8px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.gp-product-tab.is-active {
  color: var(--gp-white);
  background: var(--gp-primary);
  border-color: var(--gp-primary);
}

.gp-product-tab.is-active .gp-mini-icon {
  color: var(--gp-white);
  background: rgba(255, 255, 255, .16);
}

.gp-product-panel {
  display: none;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: center;
  min-height: 390px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(20, 52, 164, .07), rgba(47, 141, 255, .12)),
    var(--gp-bg);
  border: 1px solid var(--gp-border);
  border-radius: 12px;
}

.gp-product-panel.is-active {
  display: grid;
}

.gp-product-panel h3 {
  margin: 10px 0 12px;
  font-size: 1.85rem;
}

.gp-product-panel .gp-btn {
  margin-top: 24px;
}

.gp-mini-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  min-height: 250px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 51, 102, .13);
}

.gp-mini-dashboard span {
  border-radius: 8px;
  background: linear-gradient(145deg, var(--gp-blue-soft), #fff);
  border: 1px solid var(--gp-border);
}

.gp-mini-dashboard span:nth-child(1) {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, var(--gp-primary), #3579b2);
}

.gp-mini-dashboard span:nth-child(4) {
  background: linear-gradient(135deg, var(--gp-accent), #74b8ff);
}

.gp-card-grid {
  display: grid;
  gap: 20px;
}

.gp-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gp-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gp-feature-card,
.gp-industry-card,
.gp-product-archive-card,
.gp-post-card,
.gp-story-card,
.gp-testimonial {
  padding: 24px;
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 26, 47, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gp-feature-card:hover,
.gp-industry-card:hover,
.gp-product-archive-card:hover,
.gp-post-card:hover,
.gp-story-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 141, 255, .42);
  box-shadow: 0 24px 60px rgba(7, 26, 47, .1);
}

.gp-feature-icon,
.gp-industry-card>span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-accent));
  border-radius: 8px;
  color: var(--gp-white);
}

.gp-industry-card>span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
  box-shadow: 8px 8px 0 -3px currentColor;
}

.gp-feature-card h3,
.gp-industry-card h3,
.gp-story-card h3,
.gp-post-card h3 {
  margin-bottom: 10px;
}

.gp-workflow {
  background: linear-gradient(180deg, var(--gp-bg), #fff);
}

.gp-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.gp-timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gp-primary), var(--gp-accent));
}

.gp-timeline-step {
  position: relative;
  padding-top: 56px;
}

.gp-timeline-step span {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--gp-white);
  border: 10px solid var(--gp-primary);
  border-radius: 50%;
}

.gp-timeline-step h3 {
  padding: 16px;
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: 8px;
  font-size: 1rem;
}

.gp-analytics {
  color: var(--gp-white);
  background:
    radial-gradient(circle at 80% 20%, rgba(47, 141, 255, .28), transparent 28%),
    linear-gradient(135deg, var(--gp-navy), var(--gp-primary));
}

.gp-analytics h2,
.gp-analytics p {
  color: var(--gp-white);
}

.gp-analytics p {
  opacity: .78;
  margin: 16px 0 28px;
}

.gp-analytics-board {
  padding: 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  backdrop-filter: blur(16px);
}

.gp-line-chart {
  position: relative;
  overflow: hidden;
  height: 180px;
  margin-top: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
}

.gp-line-chart span {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 24px;
  height: 80px;
  border-top: 4px solid var(--gp-accent);
  border-radius: 50%;
  transform: rotate(-6deg);
}

.gp-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.gp-status-grid span {
  padding: 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  font-weight: 600;
}

.gp-story-grid,
.gp-testimonial-row,
.gp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gp-stories,
.gp-faq-preview {
  background: var(--gp-white);
}

.gp-story-card span,
.gp-post-badge {
  color: var(--gp-accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.gp-story-card a,
.gp-post-card a,
.gp-feature-card a {
  color: var(--gp-primary);
  font-weight: 600;
}

.gp-testimonial {
  margin: 0;
}

.gp-testimonial p {
  color: var(--gp-text);
  font-size: 1.08rem;
}

.gp-testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--gp-muted);
  font-style: normal;
  font-weight: 600;
}

.gp-post-thumb {
  display: block;
  overflow: hidden;
  margin: -24px -24px 18px;
  border-radius: 8px 8px 0 0;
}

.gp-post-card h3 a {
  color: var(--gp-navy);
}

.gp-meta {
  display: block;
  color: var(--gp-muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gp-faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.gp-faq-item {
  background: var(--gp-bg);
  border: 1px solid var(--gp-border);
  border-radius: 8px;
}

.gp-faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--gp-navy);
  font-weight: 600;
}

.gp-faq-item p {
  padding: 0 20px 20px;
}

.gp-page-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(47, 141, 255, .12), transparent 28%),
    linear-gradient(180deg, #fff, var(--gp-bg));
}

.gp-page-hero h1 {
  max-width: 900px;
  margin-top: 14px;
}

.gp-page-hero p {
  max-width: 760px;
  margin-top: 16px;
  font-size: 1.08rem;
}

.gp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gp-muted);
  font-size: 13px;
  font-weight: 600;
}

.gp-breadcrumbs a {
  color: var(--gp-primary);
}

.gp-content {
  max-width: 860px;
}

.gp-content>*+* {
  margin-top: 1.25em;
}

.gp-content h2 {
  margin-top: 1.7em;
  font-size: 1.65rem;
}

.gp-content ul {
  color: var(--gp-muted);
}

.gp-single-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--gp-shadow);
}

.gp-product-visual {
  padding: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--gp-border);
  border-radius: 14px;
  box-shadow: var(--gp-shadow);
}

.gp-mini-dashboard--large {
  min-height: 360px;
}

.gp-lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: 12px;
  box-shadow: var(--gp-shadow);
}

.gp-lead-form label {
  display: grid;
  gap: 7px;
  color: var(--gp-navy);
  font-size: 14px;
  font-weight: 600;
}

.gp-lead-form input,
.gp-lead-form select,
.gp-lead-form textarea,
.gp-search-form input,
.gp-search-dialog input {
  width: 100%;
  padding: 13px 14px;
  color: var(--gp-text);
  background: #fff;
  border: 1px solid var(--gp-border);
  border-radius: 8px;
}

.gp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.gp-contact-grid div {
  padding: 16px;
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: 8px;
}

.gp-contact-grid strong,
.gp-contact-grid span {
  display: block;
}

.gp-contact-grid span {
  color: var(--gp-muted);
}

.gp-search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: start center;
  padding: 96px 20px;
  background: rgba(7, 26, 47, .58);
  backdrop-filter: blur(10px);
}

.gp-search-modal.is-open {
  display: grid;
}

.gp-search-dialog {
  position: relative;
  width: min(720px, 100%);
  padding: 28px;
  background: var(--gp-white);
  border-radius: 12px;
  box-shadow: var(--gp-shadow);
}

.gp-search-dialog label {
  display: block;
  margin-bottom: 12px;
  color: var(--gp-navy);
  font-size: 1.4rem;
  font-weight: 600;
}

.gp-search-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--gp-bg);
  cursor: pointer;
  font-size: 24px;
}

.gp-search-results {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.gp-search-results a {
  display: block;
  padding: 12px;
  border: 1px solid var(--gp-border);
  border-radius: 8px;
}

.gp-search-results small {
  display: block;
  color: var(--gp-muted);
  font-weight: 600;
}

.gp-footer {
  color: rgba(255, 255, 255, .78);
  background: var(--gp-navy);
}

.gp-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 48px;
  transform: translateY(-42px);
  margin-bottom: -10px;
  background: linear-gradient(135deg, var(--gp-primary), #0d568a);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  box-shadow: var(--gp-shadow);
}

.gp-footer-cta h2,
.gp-footer-cta p {
  color: var(--gp-white);
}

.gp-footer-cta h2 {
  margin-top: 8px;
}

.gp-footer-cta p {
  margin-top: 12px;
  opacity: .82;
}

/* Footer CTA Buttons Specificity Override */
.gp-footer-cta .gp-btn {
  display: inline-flex;
  margin: 0;
  text-decoration: none;
}

.gp-footer-cta a.gp-btn--light {
  color: var(--gp-primary);
  background: var(--gp-white);
}

.gp-footer-cta a.gp-btn--light:hover {
  background: var(--gp-blue-soft);
  color: var(--gp-primary);
}

.gp-footer-cta a.gp-btn--accent {
  color: var(--gp-white);
  background: var(--gp-accent);
}

.gp-footer-cta a.gp-btn--accent:hover {
  background: var(--gp-primary);
  color: var(--gp-white);
}

.gp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 42px 0;
}

.gp-footer h3 {
  margin-bottom: 14px;
  color: var(--gp-white);
  font-size: 1rem;
}

.gp-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .72);
}

.gp-footer a:hover {
  color: var(--gp-white);
}

.gp-brand--footer {
  margin-bottom: 16px;
}

.gp-brand--footer .gp-logo-img {
  padding: 9px 12px;
  background: var(--gp-white);
  border-radius: 8px;
}

.gp-footer-brand p {
  max-width: 320px;
  color: rgba(255, 255, 255, .68);
}

.gp-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.gp-footer-bottom p {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.gp-sticky-demo {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  padding: 12px 16px;
  color: var(--gp-white);
  background: var(--gp-accent);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(47, 141, 255, .32);
  font-weight: 600;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gpFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes gpGrow {
  from {
    height: 20px;
  }
}

@keyframes gpMarquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .gp-header-inner {
    gap: 14px;
  }

  .gp-header-actions .gp-btn {
    display: none;
  }

  .gp-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gp-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .gp-timeline::before {
    display: none;
  }
}

@media (max-width: 920px) {
  .gp-menu-toggle {
    display: inline-grid;
    gap: 4px;
    place-content: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    background: var(--gp-white);
    border: 1px solid var(--gp-border);
    border-radius: 8px;
  }

  .gp-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gp-primary);
  }

  .gp-primary-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    max-height: calc(100vh - 78px);
    overflow: auto;
    padding: 18px 20px 28px;
    background: var(--gp-white);
    border-bottom: 1px solid var(--gp-border);
    box-shadow: var(--gp-shadow);
  }

  .gp-primary-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }

  .gp-nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
  }

  .gp-mega-panel {
    position: static;
    display: none;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    margin: 8px 0;
    grid-template-columns: 1fr;
  }

  .gp-has-mega:hover .gp-mega-panel,
  .gp-has-mega:focus-within .gp-mega-panel {
    display: grid;
    transform: none;
  }

  .gp-mega-grid {
    grid-template-columns: 1fr;
  }

  .gp-mega-feature {
    display: none;
  }

  .gp-hero-grid,
  .gp-product-hero-grid,
  .gp-analytics-grid,
  .gp-product-tabs,
  .gp-product-panel {
    grid-template-columns: 1fr;
  }

  .gp-dashboard-stage {
    min-height: auto;
  }

  .gp-floating-card {
    display: none;
  }

  .gp-story-grid,
  .gp-testimonial-row,
  .gp-blog-grid,
  .gp-card-grid--three {
    grid-template-columns: 1fr;
  }

  .gp-footer-cta,
  .gp-footer-bottom,
  .gp-section-head--split {
    display: grid;
  }

  .gp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gp-container {
    width: min(100% - 28px, var(--gp-container));
  }

  .gp-section {
    padding: 64px 0;
  }

  .gp-hero {
    padding: 56px 0 70px;
  }

  .gp-header-inner {
    min-height: 68px;
  }

  .gp-primary-nav {
    inset-top: 68px;
    max-height: calc(100vh - 68px);
  }

  .gp-logo-img {
    width: 130px;
  }

  .gp-hero-actions,
  .gp-cta-actions {
    display: grid;
  }

  .gp-btn {
    width: 100%;
  }

  .gp-dashboard-layout {
    grid-template-columns: 1fr;
  }

  .gp-dashboard-layout aside {
    display: none;
  }

  .gp-kpi-row,
  .gp-status-grid,
  .gp-contact-grid,
  .gp-card-grid--four,
  .gp-timeline,
  .gp-footer-grid {
    grid-template-columns: 1fr;
  }

  .gp-product-panel {
    padding: 22px;
  }

  .gp-product-panel h3 {
    font-size: 1.8rem;
  }

  .gp-footer-cta {
    padding: 28px;
  }

  .gp-sticky-demo {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* --- Global Font & Weight Overrides --- */

/* Ensure Poppins is default font-family for all content elements on the site, except icons */
body,
html,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
li,
td,
th,
strong,
b,
label,
section,
main,
header,
footer {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Ensure no element on the entire site has a font weight greater than 600 */
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
th,
.font-bold,
.font-extrabold,
.font-black,
.font-semibold,
[style*="font-weight: 600"],
[style*="font-weight:700"],
[style*="font-weight: 800"],
[style*="font-weight:800"],
[style*="font-weight: 900"],
[style*="font-weight:900"],
[style*="font-weight: bold"],
[style*="font-weight:bold"] {
  font-weight: 600 !important;
}