@font-face {
  font-family: 'ZohoPublicSans';
  src: local('Inter');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ZohoPublicSans';
  src: local('Inter');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ZohoPublicSans';
  src: local('Inter');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ZohoPublicSans';
  src: local('Inter');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #010101;
  --secondary-color: #333;
  --highlight-color: #056cb8;
  --brand-red: #ee0014;
  --brand-navy: #0B1F4A;
  --brand-orange: #F77F00;
  --brand-green: #2D9F4F;
  --bg-light: #f8f9fb;
  --bg-footer: #f3f5f9;
  --border-color: #e7ebf0;
  --copyright-bg: #0b0d1f;
  --font-primary: 'Inter', 'ZohoPublicSans', system-ui, -apple-system, sans-serif;
  --font-medium: 'Inter', 'ZohoPublicSans', system-ui, sans-serif;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--secondary-color);
  background: #fff;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--highlight-color); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--brand-navy); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  text-wrap: pretty;
}

p { color: var(--secondary-color); text-wrap: pretty; }

.content-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.zwc-flex { display: flex; }

/* ===== DIVIDER LINE (Zoho red accent line) ===== */
.zwc-divider-line { position: relative; }
.zwc-divider-line::after {
  content: "";
  width: 40px;
  height: 1.5px;
  background-color: var(--brand-red);
  display: block;
  margin-top: 20px;
}

/* ===== COMMON CTA STYLES ===== */
.zwc-cta-main {
  padding: 18px 40px 18px 25px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  background: var(--brand-red);
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  letter-spacing: .5px;
  transition: background .3s ease;
}
.zwc-cta-main:hover { background: #cc0012; color: #fff; }

.zwc-cta-outlined {
  padding: 18px 45px 18px 25px;
  font-size: 14px;
  border-radius: 2px;
  color: var(--highlight-color);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  border: 1px solid var(--highlight-color);
  line-height: 1;
  letter-spacing: .5px;
  transition: all .3s ease;
}
.zwc-cta-outlined:hover { background: var(--highlight-color); color: #fff; }
.zwc-cta-outlined:hover::after { border-color: #fff; }

.zwc-cta-arrow { position: relative; }
.zwc-cta-arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  display: block;
  right: 26px;
  top: 21px;
  transition: right .3s ease;
}
.zwc-cta-arrow:hover::after { right: 21px; }
.zwc-cta-outlined.zwc-cta-arrow::after { border-color: var(--highlight-color); top: 21px; }

/* ===== BLOCKQUOTE ===== */
.zwc-pagewrapper blockquote {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--primary-color);
  letter-spacing: -0.4px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}
.zwc-pagewrapper figcaption { display: flex; align-items: center; gap: 20px; }
.zwc-pagewrapper figcaption p { margin: 0; }
.zwc-pagewrapper figcaption .name { color: var(--primary-color); font-size: 18px; line-height: 1; margin-bottom: 7px; font-weight: 600; }
.zwc-pagewrapper figcaption .role { font-size: 14px; line-height: 1.4; color: var(--secondary-color); }

/* ==========================================================
   HEADER — Zoho exact style
   ========================================================== */
body > header { position: sticky; top: 0; z-index: 1000; }

.zgh-header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  height: 75px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.zgh-header-inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zgh-logo a { display: flex; align-items: center; gap: 10px; }
.zgh-logo img { height: 80px; width: auto; }
.zgh-logo .logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  white-space: nowrap;
}
.zgh-logo .logo-text span.logo-scm { color: #1976d2; display: inline; font-size: 18px; font-weight: 700; }
.zgh-logo .logo-text span.logo-software { color: #f57c00; display: inline; font-size: 18px; font-weight: 700; }
.zgh-logo .logo-text span.logo-lab { color: #9c27b0; display: inline; font-size: 18px; font-weight: 700; }
.zgh-logo .logo-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.3px;
}

/* Navigation */
.zgh-nav { display: flex; align-items: center; gap: 0; }
.zgh-nav > ul { display: flex; align-items: center; gap: 0; margin: 0; padding: 0; }
.zgh-nav > ul > li { position: relative; }
.zgh-nav > ul > li > a {
  display: block;
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-color);
  letter-spacing: -0.1px;
  transition: color .3s ease;
  line-height: 1;
}
.zgh-nav > ul > li > a:hover,
.zgh-nav > ul > li.active > a { color: var(--highlight-color); }

/* Dropdown arrow */
.zgh-nav > ul > li.has-dropdown > a::after,
.zgh-nav > ul > li.has-mega > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 1.5px solid #999;
  border-right: 1.5px solid #999;
  transform: rotate(45deg);
  margin-left: 6px;
  position: relative;
  top: -2px;
  transition: transform .3s ease, border-color .3s ease;
}
.zgh-nav > ul > li.has-dropdown:hover > a::after,
.zgh-nav > ul > li.has-mega.active > a::after {
  transform: rotate(-135deg);
  top: 2px;
  border-color: var(--highlight-color);
}
.zgh-nav > ul > li.has-mega.active > a { color: var(--highlight-color); }

/* Dropdown menu */
.zgh-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 0 0 5px 5px;
  box-shadow: 0 11px 90px 0 rgba(65,67,132,0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 100;
  padding: 12px 0;
}
.zgh-nav > ul > li:hover .zgh-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.zgh-dropdown li a {
  display: block;
  padding: 10px 25px;
  font-size: 14px;
  color: var(--secondary-color);
  transition: all .2s ease;
}
.zgh-dropdown li a:hover {
  background: var(--bg-light);
  color: var(--highlight-color);
}
.zgh-dropdown-wide {
  min-width: 340px;
  max-height: 480px;
  overflow-y: auto;
}
.zgh-dd-heading {
  padding: 8px 25px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #999;
  pointer-events: none;
}
.zgh-dd-heading:first-child { padding-top: 4px; }

/* Header CTA — Zoho exact: Sign In (red text) + Sign Up (red bordered) */
.zgh-accounts { display: flex; align-items: center; gap: 10px; padding-left: 0; }
.zgh-login {
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.1px;
  margin-right: 10px;
}
.zgh-login:hover { color: #cc0012; }
.zgh-signup {
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  padding: 8px 13px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.1px;
  background: transparent;
  transition: background-color .3s ease;
  line-height: 1;
}
.zgh-signup:hover { background-color: var(--brand-red); color: #fff; }

/* ==========================================================
   MEGA MENU — Zoho exact style
   ========================================================== */
.zgh-mega-menu {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  height: calc(100vh - 75px);
  background: #fff;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.zgh-mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.zgh-mega-inner {
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Mega tabs bar */
.zgh-mega-tabs {
  display: flex;
  align-items: center;
  padding: 0 50px;
  border-bottom: 1px solid var(--border-color);
  height: 60px;
  flex-shrink: 0;
}
.zgh-mega-tab {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary-color);
  padding: 20px 24px;
  position: relative;
  line-height: 1;
  transition: color .3s ease;
}
.zgh-mega-tab:hover { color: var(--highlight-color); }
.zgh-mega-tab.active {
  color: var(--highlight-color);
  font-weight: 500;
}
.zgh-mega-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--brand-red);
}
.zgh-mega-tabs .zwc-explore-all {
  color: var(--highlight-color);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding-right: 20px;
}
.zgh-mega-tabs .zwc-cta-arrow::after { border-color: var(--highlight-color); right: 3px; top: 4px; width: 7px; height: 7px; }
.zgh-mega-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 0 0 0 30px;
  line-height: 1;
  transition: color .3s ease;
}
.zgh-mega-close:hover { color: var(--primary-color); }

/* Mega body */
.zgh-mega-body {
  display: flex;
  flex: 1;
  overflow: auto;
}

/* Mega sidebar */
.zgh-mega-sidebar {
  width: 280px;
  min-width: 280px;
  border-right: 1px solid var(--border-color);
  padding: 25px 0 25px 50px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.zgh-mega-sidebar ul li {
  margin-bottom: 0;
}
.zgh-mega-sidebar ul li a {
  display: block;
  padding: 10px 20px 10px 0;
  font-size: 14px;
  color: var(--secondary-color);
  transition: color .2s ease;
  position: relative;
}
.zgh-mega-sidebar ul li a:hover { color: var(--highlight-color); }
.zgh-mega-sidebar ul li.active a {
  color: var(--highlight-color);
  font-weight: 500;
}
.zgh-mega-sidebar ul li.active a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--highlight-color);
  border-right: 1.5px solid var(--highlight-color);
  transform: rotate(45deg);
  margin-left: 8px;
}

/* Mega content grid */
.zgh-mega-content {
  flex: 1;
  padding: 30px 50px 30px 40px;
}
.zgh-mega-cat-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}
.zgh-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.zgh-mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 0;
  transition: background .2s ease;
  border-right: none;
  border-bottom: 1px solid var(--border-color);
}
.zgh-mega-item:nth-child(5n) {
  border-right: none;
}
.zgh-mega-item:hover {
  background: var(--bg-light);
}
.zgh-mega-icon {
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-top: 7px;
}
.zgh-mega-icon.zgh-mega-ico {
  width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 18px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 18px rgba(11, 31, 74, .14);
  transition: transform .32s cubic-bezier(.16, 1, .3, 1), box-shadow .32s ease;
}
/* the icon glyph floats continuously — animation runs BY DEFAULT, no hover needed */
.zgh-mega-icon.zgh-mega-ico i {
  color: #fff;
  font-size: 44px;
  position: relative;
  z-index: 1;
  animation: zghIcoFloat 3.4s ease-in-out infinite;
  will-change: transform;
}
/* expanding ring pulse (the "active" pop on hover) */
.zgh-mega-icon.zgh-mega-ico::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, .85);
  opacity: 0;
  pointer-events: none;
}
@keyframes zghIcoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes zghRing {
  0%   { opacity: .6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.32); }
}
/* stagger the float so icons bob out of sync (applies to every mega menu) */
.zgh-mega-item:nth-child(2)  .zgh-mega-ico i { animation-delay: .28s; }
.zgh-mega-item:nth-child(3)  .zgh-mega-ico i { animation-delay: .56s; }
.zgh-mega-item:nth-child(4)  .zgh-mega-ico i { animation-delay: .84s; }
.zgh-mega-item:nth-child(5)  .zgh-mega-ico i { animation-delay: 1.12s; }
.zgh-mega-item:nth-child(6)  .zgh-mega-ico i { animation-delay: 1.40s; }
.zgh-mega-item:nth-child(7)  .zgh-mega-ico i { animation-delay: .42s; }
.zgh-mega-item:nth-child(8)  .zgh-mega-ico i { animation-delay: .70s; }
.zgh-mega-item:nth-child(9)  .zgh-mega-ico i { animation-delay: .98s; }
.zgh-mega-item:nth-child(10) .zgh-mega-ico i { animation-delay: 1.26s; }
/* HOVER / ACTIVE — lift & glow the tile, fire the ring (glyph keeps floating) */
.zgh-mega-item:hover .zgh-mega-ico {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 32px rgba(11, 31, 74, .26);
}
.zgh-mega-item:hover .zgh-mega-ico::after { animation: zghRing .6s ease forwards; }
.zgh-mega-item:active .zgh-mega-ico { transform: translateY(-2px) scale(1.02); }
@media (prefers-reduced-motion: reduce) {
  .zgh-mega-icon.zgh-mega-ico i { animation: none; }
  .zgh-mega-icon.zgh-mega-ico { transition: none; }
}
.zgh-mega-icon.zgh-mega-logo {
  width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 18px;
  margin-top: 0;
  background: #fff !important;
  border: 1px solid #e7ebf2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zgh-mega-icon.zgh-mega-logo img { width: 64px; height: 64px; object-fit: contain; }
.zgh-mega-icon.zgh-mega-logo i { font-size: 54px; }
.zgh-mega-icon.zgh-mega-emoji {
  width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 18px;
  margin-top: 0;
  background: #f7f9fc !important;
  border: 1px solid #e7ebf2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zgh-mega-icon.zgh-mega-emoji img { width: 76px; height: 76px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(11, 31, 74, .14)); }

/* ===== multi-color gradient text (phenom-style soft rainbow, full spread per word) ===== */
.aigrad {
  background: linear-gradient(90deg, #ee8a55 0%, #f0b07f 18%, #46baa0 44%, #4fa1e4 68%, #ab8ee6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Services mega: 4 per row */
#mega-grid { grid-template-columns: repeat(4, 1fr); }
#mega-grid .zgh-mega-item { align-items: center; border-right: none; }
.zgh-mega-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}
.zgh-mega-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* Mobile hamburger */
.zgh-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.zgh-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all .3s ease;
}

/* ==========================================================
   BANNER / HERO — Zoho exact style
   ========================================================== */
.zwc-section-banner {
  padding: 60px 0 100px;
  background:
    transparent,
    transparent,
    transparent,
    #f0f4ff;
  position: relative;
}
.zwc-section-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    transparent,
    transparent;
  pointer-events: none;
  z-index: 0;
  mask-image: transparent;
  -webkit-mask-image: transparent;
}
.zwc-section-banner .content-wrap { max-width: 1200px; }

.zwc-banner-iwrap { position: relative; padding-bottom: 60px; }

.zwc-banner-cont {
  text-align: center;
  max-width: 790px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.zwc-banner-cont::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-light) 0 0 no-repeat padding-box;
  border-radius: 100px;
  opacity: .5;
  filter: blur(39px);
  z-index: -1;
}

.zwc-section-banner h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}
.zwc-section-banner h1 span { display: block; }
.zwc-banner-cont .zwc-divider-line::after { margin: 15px auto 0; }

.zwc-banner-cont p {
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.2px;
  margin-bottom: 30px;
}
.zwc-banner-cont p span { display: inline-block; }
.zwc-banner-cont p a { border-bottom: 1px dashed rgba(0,0,0,.5); color: var(--secondary-color); }

/* Featured services grid (like Zoho apps grid) */
.zwc-apps-container { width: 100%; }
.zwc-apps-iwrap {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 0 #00000008;
  padding: 15px 45px 15px 15px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 45px;
  align-items: stretch;
}

/* Hero highlight card (left panel) */
.zwc-hero-highlight {
  width: 37%;
  max-width: 400px;
  background: #0e3065;
  border-radius: 8px;
  padding: 40px 30px 45px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zwc-hero-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: transparent;
}
.zwc-hero-highlight .icon-big {
  font-size: 48px;
  color: var(--brand-orange);
  margin-bottom: 16px;
}
.zwc-hero-highlight h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.zwc-hero-highlight p { font-size: 16px; color: #ffffffdd; margin-bottom: 25px; line-height: 1.6; }
.zwc-hero-highlight .zwc-cta-outlined {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  padding: 14px 45px 14px 25px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  letter-spacing: .5px;
}
.zwc-hero-highlight .zwc-cta-outlined:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.zwc-hero-highlight .zwc-cta-outlined.zwc-cta-arrow::after { border-color: #fff; top: 16px; right: 28px; }

/* Right apps grid */
.zwc-apps-grid-wrap { flex: 1; }
.zwc-apps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.zwc-apps-header h2 {
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 500;
  color: #333;
  letter-spacing: .5px;
}
.zwc-apps-header .zwc-explore-all {
  color: var(--highlight-color);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  line-height: 1.4;
  text-transform: uppercase;
  padding-right: 20px;
}
.zwc-apps-header .zwc-cta-arrow::after { border-color: var(--highlight-color); right: 3px; top: 4px; width: 7px; height: 7px; }
.zwc-apps-header .zwc-cta-arrow:hover::after { right: -2px; }

.zwc-apps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
  justify-content: space-between;
  align-content: center;
  height: calc(100% - 60px);
}
.zwc-app-card {
  width: 30%;
  position: relative;
  padding-left: 44px;
  max-width: 200px;
  cursor: pointer;
}
.zwc-app-card .app-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  position: absolute;
  left: 0;
  top: -3px;
}
.zwc-app-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.3px;
  transition: color .3s ease;
  border-bottom: 1px dashed transparent;
  width: fit-content;
}
.zwc-app-card:hover h3 { color: var(--highlight-color); border-color: var(--highlight-color); }
.zwc-app-card p { font-size: 13px; margin-bottom: 0; line-height: 1.4; color: #555; }

/* ==========================================================
   STATS BAR
   ========================================================== */
.zwc-section-stats {
  padding: 100px 0 120px;
  position: relative;
  color: #fff;
  text-align: center;
  background-color: #0060b4;
}
.zwc-stats-cont h2 {
  width: 100%;
  letter-spacing: -1.7px;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  font-size: 44px;
  line-height: 1.15;
}
.zwc-stats-cont h2 span { display: block; }
.zwc-stats-cont .zwc-divider-line::after { background-color: #3cc10c; margin: 15px auto 0; }

.zwc-stats-container {
  display: flex;
  flex-wrap: wrap;
  margin: 60px auto;
  column-gap: 45px;
  justify-content: center;
}
.zwc-user-count p { color: #ffffffd9; font-size: 14px; line-height: 1; letter-spacing: .3px; }
.zwc-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -1px;
}
.zwc-stats-divider {
  width: 1px;
  border-left: 1px solid #fff;
  height: 50px;
  opacity: .15;
  position: relative;
  top: 12px;
}
.zwc-section-stats a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  border-color: rgba(255,255,255,0.5);
}

/* ==========================================================
   TRUSTED BRANDS — Zoho exact style
   ========================================================== */
.zwc-section-tbrands {
  background: #fff;
  padding: 90px 0 70px;
  text-align: center;
}

.zwc-tbrands-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  border: 1.5px solid var(--border-color);
  border-radius: 999px;
  padding: 12px 28px;
  margin-bottom: 22px;
}
.zwc-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
  display: inline-block;
}

.zwc-tbrands-sub {
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.2px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.zwc-brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 45px 70px;
  max-width: 1100px;
  margin: 0 auto;
}
.zwc-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.45);
  transition: all .4s ease;
  cursor: pointer;
}
.zwc-brand-item:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}
.zwc-brand-item img {
  display: block;
  height: 45px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* ==========================================================
   SECTION: WHAT WE DO — (like Zoho One section)
   ========================================================== */
.zwc-section-one {
  background-color: #fed600;
  padding: 80px 0;
}
.zwc-section-one .content-wrap { max-width: 1140px; }
.zwc-section-one .zwc-flex { justify-content: space-between; }

.zwc-one-cont {
  width: 52%;
  max-width: 600px;
}
.zwc-one-cont .zwc-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .5px;
  color: #333;
  text-transform: uppercase;
}
.zwc-one-cont h2 {
  font-size: 44px;
  line-height: 1.05;
  margin: 5px 0 20px;
  letter-spacing: -1.5px;
}
.zwc-one-cont p { font-size: 17px; margin-bottom: 25px; line-height: 1.65; color: #333; display: block; }
.zwc-one-cont p strong { font-weight: 600; color: #111; }

.zwc-one-testi {
  position: relative;
  padding-top: 70px;
  width: 40%;
  max-width: 370px;
}
.zwc-one-testi::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  background-color: #010101;
  top: 0;
  left: 0;
}
.zwc-one-testi::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 12px;
  z-index: 1;
  font-size: 28px;
  color: #fff;
  font-family: Georgia, serif;
  line-height: 1.5;
}
.zwc-one-iwrap.zwc-flex::before {
  content: "";
  width: 1px;
  border-left: 1px dashed #e1c00e;
  order: 2;
}
.zwc-one-testi { order: 3; }

/* ==========================================================
   ENTERPRISE / KEY SECTION
   ========================================================== */
.zwc-section-enterprise { background-color: var(--bg-light); }
.zwc-enterprise-iwrap {
  max-width: 1000px;
  justify-content: space-between;
  padding: 100px 0 130px;
  margin: 0 auto;
}
.zwc-enterprise-cont { width: 45%; max-width: 500px; }
.zwc-enterprise-cont h2 { font-size: 40px; letter-spacing: -1.3px; line-height: 1; }
.zwc-enterprise-cont p { font-size: 18px; letter-spacing: -0.2px; margin-bottom: 30px; line-height: 1.6; }
.zwc-enterprise-testi { width: 46%; max-width: 410px; }
.zwc-pagewrapper .zwc-enterprise-testi blockquote { font-size: 18px; letter-spacing: -0.2px; line-height: 1.6; }
.zwc-enterprise-testi a {
  font-size: 14px;
  color: var(--highlight-color);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 500;
  margin-top: 25px;
}
.zwc-enterprise-testi .zwc-cta-arrow::after { border-color: var(--highlight-color); right: -15px; top: 7px; width: 7px; height: 7px; }
.zwc-enterprise-testi .zwc-cta-arrow:hover::after { right: -20px; }

.zwc-enterprise-process { width: 48%; max-width: 460px; display: flex; flex-direction: column; gap: 30px; }
.zwc-process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.zwc-step-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--highlight-color);
  opacity: 0.25;
  min-width: 40px;
  line-height: 1;
  letter-spacing: -1px;
}
.zwc-process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}
.zwc-process-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================
   HOW WE COMPARE — Zoho font styles
   ========================================================== */
.zwc-section-compare { padding: 100px 0; background: #fff; }
.zwc-compare-header { text-align: center; margin-bottom: 50px; }
.zwc-compare-header h2 {
  font-size: 44px;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.zwc-compare-header h2 span { color: var(--brand-orange); }
.zwc-compare-header h2.zwc-divider-line::after { margin: 15px auto 0; }
.zwc-compare-header p {
  font-size: 18px;
  color: var(--secondary-color);
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.65;
  letter-spacing: -0.2px;
}

.zwc-compare-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.zwc-compare-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  border-bottom: 1px solid #f1f5f9;
}
.zwc-compare-row:last-child { border-bottom: none; }
.zwc-compare-row:nth-child(odd):not(.zwc-compare-head) .zwc-compare-feature { background: #f8fafc; }
.zwc-compare-row:nth-child(even):not(.zwc-compare-head) .zwc-compare-feature { background: #f3f4f6; }
.zwc-compare-row:nth-child(odd):not(.zwc-compare-head) .zwc-compare-us { background: #fafffe; }
.zwc-compare-row:nth-child(even):not(.zwc-compare-head) .zwc-compare-us { background: #f5fef7; }

.zwc-compare-head {
  background: var(--primary-color);
  border-bottom: none;
}
.zwc-compare-head > div {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.zwc-compare-head .zwc-compare-feature { color: rgba(255,255,255,0.5); }
.zwc-compare-head .zwc-compare-them {
  color: #fca5a5;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.zwc-compare-head .zwc-compare-us {
  color: #86efac;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.08);
  background: rgba(22,163,74,0.1) !important;
}
.zwc-compare-head i { margin-right: 6px; }

.zwc-compare-feature {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #f1f5f9;
  letter-spacing: -0.2px;
}
.zwc-compare-feature i { color: var(--brand-orange); font-size: 14px; min-width: 18px; text-align: center; }

.zwc-compare-them {
  padding: 18px 22px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  border-right: 1px solid #f1f5f9;
}
.zwc-compare-us {
  padding: 18px 22px;
  font-size: 14px;
  color: #334155;
  line-height: 1.55;
}

/* ==========================================================
   CORE VALUES — Zoho exact style
   ========================================================== */
.zwc-section-values { position: relative; padding-bottom: 130px; background-color: var(--bg-light); }
.zwc-section-values .content-wrap {
  border: 1px solid var(--border-color);
  padding: 80px 0 90px;
  margin: 0 auto;
  margin-top: -200px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 0 #00000005;
}
.zwc-section-values .zwc-title {
  margin: 0 auto;
  max-width: 550px;
  text-align: center;
  width: 90%;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -1.5px;
}
.zwc-section-values .zwc-title.zwc-divider-line::after { margin: 20px auto 0; }

.zwc-box-wrap {
  padding: 0 85px;
  justify-content: space-between;
  margin: 60px 0 0;
  flex-wrap: wrap;
  gap: 40px;
}
.zwc-box-wrap h3 { font-size: 30px; line-height: 1.2; letter-spacing: -0.6px; margin-bottom: 12px; }
.zwc-box-wrap .zwc-box { width: 46%; position: relative; padding-left: 80px; }
.zwc-box-wrap .zwc-box .box-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}
.zwc-box p { line-height: 1.6; font-size: 16px; }
.zwc-section-values .zwc-text-ct { margin-top: 50px; text-align: center; }

/* ==========================================================
   TECHNOLOGIES WE SPECIALIZE IN
   ========================================================== */
.zwc-section-tech {
  padding: 100px 0;
  background: var(--bg-light);
}
.zwc-tech-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.zwc-tech-header h2 {
  font-size: 44px;
  letter-spacing: -1.5px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.zwc-tech-header h2 span { color: var(--brand-orange); }
.zwc-tech-header h2.zwc-divider-line::after { margin: 15px auto 0; }
.zwc-tech-header p {
  font-size: 18px;
  color: var(--secondary-color);
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.65;
  letter-spacing: -0.2px;
}
.zwc-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.zwc-tech-card {
  border-radius: 10px;
  padding: 40px 35px 35px;
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid var(--border-color);
  border-top: 4px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.zwc-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.zwc-tech-sap { border-top-color: #056cb8; }
.zwc-tech-idempiere { border-top-color: #ee0014; }
.zwc-tech-flutter { border-top-color: #2D9F4F; }
.zwc-tech-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 22px;
}
.zwc-tech-sap .zwc-tech-icon { background: #056cb8; }
.zwc-tech-idempiere .zwc-tech-icon { background: #ee0014; }
.zwc-tech-flutter .zwc-tech-icon { background: #2D9F4F; }
.zwc-tech-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.zwc-tech-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 22px;
}
.zwc-tech-link {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}
.zwc-tech-sap .zwc-tech-link { color: #056cb8; }
.zwc-tech-idempiere .zwc-tech-link { color: #ee0014; }
.zwc-tech-flutter .zwc-tech-link { color: #2D9F4F; }
.zwc-tech-link:hover { opacity: 0.8; }
.zwc-tech-link.zwc-cta-arrow::after { right: -18px; top: 3px; width: 7px; height: 7px; }
.zwc-tech-sap .zwc-tech-link.zwc-cta-arrow::after { border-color: #056cb8; }
.zwc-tech-idempiere .zwc-tech-link.zwc-cta-arrow::after { border-color: #ee0014; }
.zwc-tech-flutter .zwc-tech-link.zwc-cta-arrow::after { border-color: #2D9F4F; }

/* ==========================================================
   HIGHLIGHT BANNER — Zoho style
   ========================================================== */
.zwc-highlight-banner {
  background: #fff;
  position: relative;
}
.zwc-highlight-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-color);
  transform: translateY(-50%);
}
.zwc-highlight-banner .content-wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 10px 0 rgba(0,0,0,0.03);
  max-width: min(1200px, calc(100% - 180px));
  border: 1px solid var(--border-color);
  z-index: 1;
  position: relative;
}
.zwc-highlight-iwrap { width: 100%; }
.zwc-highlight-gallery {
  background-color: #e8f1fc;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.zwc-highlight-banner .zwc-flex {
  justify-content: space-between;
  align-items: center;
}
.zwc-highlight-cont {
  padding: 45px 0 45px 70px;
  max-width: 500px;
  width: 50%;
}
.zwc-highlight-cont h2 {
  font-size: 36px;
  font-family: var(--font-serif);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.zwc-highlight-cont p {
  font-size: 16px;
  font-family: var(--font-serif);
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}
.zwc-highlight-gallery .zwc-cta {
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 14px 45px 14px 30px;
  border-radius: 999px;
  border: 1.5px solid var(--border-color);
  color: var(--primary-color);
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  background: #fff;
  transition: all .3s ease;
}
.zwc-highlight-gallery .zwc-cta:hover {
  border-color: #999;
  color: var(--primary-color);
}
.zwc-highlight-cont .zwc-cta-arrow::after {
  border-color: #000;
  width: 7px;
  height: 7px;
  right: 30px;
  top: 16px;
}
.zwc-highlight-cont .zwc-cta-arrow:hover::after { right: 25px; }
.zwc-highlight-image {
  max-width: 500px;
  width: 50%;
}
.zwc-highlight-gallery-desktop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}
.zwc-hl-visual {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c8ddf5;
}
.zwc-hl-visual i {
  font-size: 100px;
  color: rgba(0,0,0,0.06);
}

/* ==========================================================
   VALUES BANNER (replaces background image)
   ========================================================== */
.zwc-values-banner {
  width: 100%;
  height: 400px;
  background-color: #1a4a8a;
  position: relative;
  z-index: 1;
}

/* ==========================================================
   CTA FOOTER — Zoho exact style
   ========================================================== */
.zwc-section-footer {
  border-top: 1px solid #dde4f3;
  padding: 70px 0 10px;
  text-align: center;
}
.zwc-section-footer h2 { font-size: 44px; line-height: 1.2; letter-spacing: -1.5px; margin-bottom: 0; }
.zwc-section-footer p { font-size: 32px; letter-spacing: -0.8px; margin-bottom: 30px; color: #555; }

/* ==========================================================
   FOOTER
   ========================================================== */
/* Footer — Zoho style: policy links + copyright bar */
.zwc-footer-links {
  padding: 50px 0 30px;
  text-align: center;
}
.zwc-policy-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 4px;
}
.zwc-policy-row a {
  font-size: 13px;
  color: #555;
  transition: color .2s ease;
}
.zwc-policy-row a:hover { color: var(--highlight-color); }
.zwc-policy-row .zwc-sep {
  font-size: 13px;
  color: #ccc;
  margin: 0 4px;
}

/* Copyright bar */
.zwc-copyright {
  padding: 40px 0;
  background: var(--copyright-bg);
  text-align: center;
}
.zwc-copyright p { font-size: 13px; color: #ffffffcc; display: flex; align-items: center; justify-content: center; gap: 8px; }
.zwc-copyright-logo { display: inline-block; height: 22px; width: auto; }

/* ===== SCROLL TO TOP ===== */
.zwc-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
.zwc-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.zwc-scroll-top:hover {
  background: #cc0012;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media only screen and (max-width: 1280px) {
  .zwc-section-banner h1 { font-size: 44px; margin-bottom: 18px; }
  .zwc-banner-cont p { font-size: 17px; margin-bottom: 28px; }
  .zwc-apps-iwrap { padding-right: 30px; }
  .zwc-app-card h3 { font-size: 22px; }
  .zwc-app-card { padding-left: 45px; }
  .zwc-one-cont h2 { font-size: 38px; }
  .zwc-one-cont { max-width: 490px; }
  .zwc-section-values .zwc-title { font-size: 35px; max-width: 500px; }
  .zwc-box-wrap { padding: 0 70px; }
  .zwc-box-wrap h3 { font-size: 26px; }
  .zwc-stats-cont h2 { font-size: 38px; }
  .zwc-section-stats { padding: 80px 0 100px; }
  .zwc-section-footer h2 { font-size: 38px; }
  .zwc-section-footer p { font-size: 28px; }
  .zwc-highlight-banner .content-wrap { max-width: 1100px; width: 80%; }
  .zwc-highlight-cont { padding: 35px 0 35px 55px; }
  .zwc-highlight-cont h2 { font-size: 32px; }
  .zwc-values-banner { height: 320px; }
  .zwc-section-values .content-wrap { margin-top: -150px; padding: 80px 0; }
  .zwc-compare-header h2 { font-size: 38px; }
  .zwc-tech-header h2 { font-size: 38px; }
}

@media only screen and (max-width: 1024px) {
  .zwc-section-banner h1 { font-size: 38px; letter-spacing: -1.5px; }
  .zwc-apps-iwrap { flex-direction: column; padding: 15px; gap: 20px; }
  .zwc-hero-highlight { width: 100%; max-width: 100%; }
  .zwc-apps-grid-wrap { width: 100%; padding: 0 20px 40px; }
  .zwc-apps-grid { gap: 40px 60px; margin-top: 45px; justify-content: space-evenly; }
  .zwc-app-card { width: 44%; max-width: none; padding-left: 45px; }
  .zwc-section-one .zwc-flex { flex-wrap: wrap; justify-content: center; }
  .zwc-one-cont { width: 100%; max-width: 500px; text-align: center; margin-bottom: 50px; }
  .zwc-one-cont:before { display: none; }
  .zwc-one-testi { width: 100%; max-width: 400px; text-align: center; }
  .zwc-one-testi::after { left: calc(50% - 21px); }
  .zwc-one-testi::before { left: calc(50% - 6px); }
  .zwc-one-iwrap.zwc-flex::before { display: none; }
  .zwc-enterprise-iwrap { flex-wrap: wrap; justify-content: center; padding: 80px 0 70px; max-width: 500px; }
  .zwc-enterprise-cont { width: 100%; text-align: center; margin-bottom: 50px; max-width: 500px; }
  .zwc-enterprise-testi { width: 100%; text-align: center; max-width: 500px; }
  .zwc-enterprise-process { width: 100%; max-width: 500px; }
  .zwc-section-values .content-wrap { padding: 60px 0 80px; margin-top: -100px; }
  .zwc-tech-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 25px; }
  .zwc-section-tech { padding: 80px 0; }
  .zwc-tech-header h2 { font-size: 34px; }
  .zwc-box-wrap { gap: 25px; margin: 50px 0 0; padding: 0 40px; }
  .zwc-box-wrap .zwc-box { padding-left: 60px; }
  .zwc-stats-cont h2 { font-size: 34px; }
  .zwc-stats-container { gap: 60px; max-width: 500px; }
  .zwc-stats-divider { display: none; }
  .zwc-section-footer h2 { font-size: 35px; }
  .zwc-highlight-cont { padding: 30px 0 40px 40px; width: 55%; max-width: 400px; }
  .zwc-highlight-cont h2 { font-size: 30px; }
  .zwc-highlight-banner .content-wrap { width: 80%; padding: 10px; }
  .zwc-values-banner { height: 280px; }
}

/* Tablets & small laptops: use the clean drawer, not the cramped mega-menu */
@media only screen and (max-width: 991px) {
  .zgh-header { padding: 0 24px; }
  .zgh-nav { display: none; }
  .zgh-mobile-toggle { display: flex; }
  .zgh-accounts { display: none; }
}

@media only screen and (max-width: 767px) {
  .zgh-header { padding: 0 20px; }
  .zgh-nav { display: none; }
  .zgh-mobile-toggle { display: flex; }
  .zgh-accounts { display: none; }

  .zwc-section-banner { padding: 40px 0 70px; }
  .zwc-section-banner h1 { font-size: 32px; }
  .zwc-banner-cont p { font-size: 16px; }
  .zwc-apps-grid { gap: 40px 30px; }
  .zwc-section-one { padding: 60px 0; }
  .zwc-one-cont h2 { font-size: 34px; }

  .zwc-pagewrapper blockquote { font-size: 18px; }
  .zwc-pagewrapper figcaption { justify-content: center; text-align: left; }

  .zwc-section-values .zwc-title { font-size: 32px; }
  .zwc-box-wrap .zwc-box { width: 100%; padding-left: 60px; }
  .zwc-section-values { padding-bottom: 80px; }
  .zwc-section-values .content-wrap { max-width: 600px; padding: 50px 0 60px; margin-top: -80px; }
  .zwc-values-banner { height: 240px; }

  .zwc-enterprise-iwrap { flex-wrap: wrap; justify-content: center; padding: 80px 0 70px; max-width: 410px; }
  .zwc-enterprise-cont { width: 100%; text-align: center; margin-bottom: 50px; max-width: 500px; }
  .zwc-enterprise-cont p { font-size: 16px; }
  .zwc-pagewrapper .zwc-enterprise-testi blockquote { font-size: 16px; }
  .zwc-enterprise-testi { width: 100%; max-width: 490px; text-align: center; }

  .zwc-stats-cont h2 { font-size: 30px; }
  .zwc-section-stats { padding: 60px 0 80px; }

  .zwc-highlight-banner .content-wrap { max-width: min(510px, calc(100% - 60px)); }
  .zwc-highlight-banner .zwc-flex { flex-wrap: wrap; justify-content: center; }
  .zwc-highlight-cont { width: 100%; padding: 40px 30px 20px; text-align: center; }
  .zwc-highlight-image { width: 100%; max-width: 100%; }
  .zwc-highlight-cont h2 { font-size: 28px; }

  .zwc-section-footer h2 { font-size: 32px; }
  .zwc-section-footer p { font-size: 22px; }

  .zwc-section-tech { padding: 60px 0; }
  .zwc-tech-header h2 { font-size: 32px; }
  .zwc-tech-header p { font-size: 16px; }
  .zwc-tech-grid { max-width: 400px; }
  .zwc-tech-card { padding: 35px 28px 30px; }
  .zwc-section-compare { padding: 70px 0; }
  .zwc-compare-header h2 { font-size: 32px; }
  .zwc-compare-header p { font-size: 16px; }
  .zwc-compare-row { grid-template-columns: 1fr; }
  .zwc-compare-head { display: none; }
  .zwc-compare-feature {
    background: #f3f4f6 !important;
    border-right: none;
    border-bottom: none;
    font-size: 16px;
    padding: 16px 20px;
  }
  .zwc-compare-them, .zwc-compare-us { padding: 14px 20px; border-right: none; }
  .zwc-compare-them::before { content: "Others: "; font-weight: 600; color: #94a3b8; }
  .zwc-compare-us::before { content: "SCM: "; font-weight: 600; color: var(--brand-green); }
}

@media only screen and (max-width: 480px) {
  .zwc-section-banner h1 { font-size: 28px; letter-spacing: -1px; }
  .zwc-banner-cont p { font-size: 15px; }
  .zwc-app-card { width: 100%; max-width: 300px; padding-left: 55px; }
  .zwc-one-cont h2 { font-size: 28px; }
  .zwc-box-wrap .zwc-box { padding-left: 0; padding-top: 60px; }
  .zwc-box-wrap .zwc-box .box-icon { position: relative; left: auto; top: auto; margin-bottom: 15px; }
  .zwc-stats-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 40px; justify-items: center; }

  .zwc-highlight-banner .content-wrap { max-width: calc(100% - 40px); padding: 6px; }
  .zwc-highlight-cont { padding: 30px 20px 15px; }
  .zwc-highlight-cont h2 { font-size: 24px; }
  .zwc-highlight-cont p { font-size: 15px; }
  .zwc-hl-visual { height: 200px; }
  .zwc-hl-visual i { font-size: 60px; }

  .zwc-enterprise-cont h2 { font-size: 28px; }
  .zwc-values-banner { height: 200px; }
  .zwc-section-values .content-wrap { margin-top: -60px; padding: 40px 0 50px; max-width: calc(100% - 40px); }
  .zwc-section-values .zwc-title { font-size: 26px; letter-spacing: -0.5px; }
  .zwc-box-wrap { padding: 0 25px; }
  .zwc-section-values { padding-bottom: 60px; }

  .zwc-section-footer h2 { font-size: 26px; }
  .zwc-section-footer p { font-size: 18px; }
  .zwc-stats-cont h2 { font-size: 26px; }
}

/* ===== Mobile menu drawer — premium side panel ===== */
.zgh-mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: min(386px, 89%);
  height: 100%;
  background: #fff;
  z-index: 9999;
  transform: translateX(-105%);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 28px;
}
.zgh-mobile-menu.active {
  transform: translateX(0);
  box-shadow: 0 0 0 100vmax rgba(11, 31, 74, .5);   /* dim the rest of the page */
}
/* branded sticky header with logo */
.zgh-mobile-menu::before {
  content: "";
  position: sticky; top: 0;
  display: block; height: 66px;
  background: #fff url(../images/AppsXpert-logo.svg) no-repeat 22px center;
  background-size: auto 30px;
  border-bottom: 1px solid #eef0f4;
  z-index: 3;
}
.zgh-mobile-menu .close-btn {
  position: fixed;
  top: 14px; left: calc(min(386px, 89%) - 52px);
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1; color: #0B1F4A;
  background: #f1f4f9; border: none; cursor: pointer; z-index: 4;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.zgh-mobile-menu .close-btn:hover { background: #e63946; color: #fff; transform: scale(1.06); }

.zgh-mobile-menu ul { list-style: none; margin: 0; padding: 14px 14px 0; }

/* top-level items */
.zgh-mobile-menu > ul > li { border-bottom: none; margin-bottom: 2px; }
.zgh-mobile-menu.active > ul > li { animation: zghMmIn .45s cubic-bezier(.16, 1, .3, 1) both; }
.zgh-mobile-menu.active > ul > li:nth-child(1) { animation-delay: .04s; }
.zgh-mobile-menu.active > ul > li:nth-child(2) { animation-delay: .09s; }
.zgh-mobile-menu.active > ul > li:nth-child(3) { animation-delay: .14s; }
.zgh-mobile-menu.active > ul > li:nth-child(4) { animation-delay: .19s; }
.zgh-mobile-menu.active > ul > li:nth-child(5) { animation-delay: .24s; }
.zgh-mobile-menu.active > ul > li:nth-child(6) { animation-delay: .29s; }
.zgh-mobile-menu.active > ul > li:nth-child(7) { animation-delay: .34s; }
@keyframes zghMmIn { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }

.zgh-mobile-menu > ul > li > a {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 14px; border-radius: 12px;
  font-size: 16px; font-weight: 600; color: #0B1F4A;
  transition: background .2s ease, color .2s ease;
}
.zgh-mobile-menu > ul > li > a:hover,
.zgh-mobile-menu > ul > li.open > a { background: #f2f6fc; color: var(--highlight-color); }

/* leading icon chips (per item) */
.zgh-mobile-menu > ul > li > a::before {
  font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 14px;
  width: 34px; height: 34px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: #eaf1fd; color: var(--highlight-color);
  transition: background .2s ease, color .2s ease;
}
.zgh-mobile-menu > ul > li:nth-child(1) > a::before { content: "\f0ad"; }  /* Services - wrench */
.zgh-mobile-menu > ul > li:nth-child(2) > a::before { content: "\f1b3"; }  /* Products - cubes */
.zgh-mobile-menu > ul > li:nth-child(3) > a::before { content: "\f1ad"; }  /* Industries - building */
.zgh-mobile-menu > ul > li:nth-child(4) > a::before { content: "\f091"; }  /* Case Studies - trophy */
.zgh-mobile-menu > ul > li:nth-child(5) > a::before { content: "\f1ea"; }  /* Blogs - newspaper */
.zgh-mobile-menu > ul > li:nth-child(6) > a::before { content: "\f0c0"; }  /* Company - users */
.zgh-mobile-menu > ul > li.open > a::before { background: var(--highlight-color); color: #fff; }

/* chevron on expandable items */
.zgh-mobile-menu > ul > li:has(.mob-dropdown) > a::after {
  content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  margin-left: auto; font-size: 12px; color: #aab2c0;
  transition: transform .3s ease, color .3s ease;
}
.zgh-mobile-menu > ul > li.open > a::after { transform: rotate(180deg) !important; color: var(--highlight-color); }

/* animated dropdown */
.zgh-mobile-menu .mob-dropdown {
  display: block; max-height: 0; overflow: hidden;
  margin: 2px 0 6px 47px; padding: 0;
  border-left: 2px solid #e9eef6;
  transition: max-height .4s ease;
}
.zgh-mobile-menu > ul > li.open .mob-dropdown { max-height: 820px !important; }
.zgh-mobile-menu .mob-dropdown li a {
  display: block; padding: 9px 14px; margin: 1px 0;
  font-size: 14.5px; font-weight: 500; color: #5b6473; border-radius: 8px;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.zgh-mobile-menu .mob-dropdown li a:hover {
  background: #f2f6fc; color: var(--highlight-color); padding-left: 18px;
}

/* Contact CTA (last item) */
.zgh-mobile-menu > ul > li:last-child { padding: 18px 4px 4px !important; }
.zgh-mobile-menu > ul > li:last-child > a.zwc-cta-main {
  display: block; width: 100%; text-align: center; border-radius: 12px;
}
.zgh-mobile-menu > ul > li:last-child > a::before { display: none; }

@media (prefers-reduced-motion: reduce) {
  .zgh-mobile-menu { transition: none; }
  .zgh-mobile-menu.active > ul > li { animation: none; }
  .zgh-mobile-menu .mob-dropdown { transition: none; }
}

/* ======================= AI HERO (centered, static) ======================= */
.zwc-banner-cont.zwc-aih { max-width: 880px; text-align: center; }

.zwc-aih-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; margin-bottom: 22px;
  background: #fff; border: 1px solid #d9e2f5; border-radius: 100px;
  box-shadow: 0 8px 22px rgba(11,31,74,.08);
  font: 600 12.5px/1 var(--font-primary);
  letter-spacing: .06em; text-transform: uppercase; color: #0B1F4A;
}
.zwc-aih-dot { width: 8px; height: 8px; border-radius: 50%; background: #2D9F4F; flex: 0 0 8px; }

.zwc-aih .zwc-aih-h1 { font-size: 47px; line-height: 1.14; margin-bottom: 18px; }
.zwc-aih .zwc-aih-h1 .aigrad { display: block; }
.zwc-aih .zwc-divider-line::after { margin: 16px auto 0; }

.zwc-banner-cont.zwc-aih p { font-size: 18px; line-height: 1.6; letter-spacing: -.2px; max-width: 680px; margin: 0 auto 16px; }
.zwc-aih-strong { font-weight: 700; color: #0B1F4A; }
.zwc-banner-cont.zwc-aih p a { border-bottom: 1px dashed rgba(0,0,0,.5); color: var(--secondary-color); }

.zwc-aih-proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 0 auto 28px; max-width: 640px; }
.zwc-aih-proof span { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: #0B1F4A; white-space: nowrap; }
.zwc-aih-proof i { color: #2D9F4F; font-size: 14px; }

.zwc-aih-ctas { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.zwc-aih-ctas .zwc-cta-main { transition: transform .25s ease, box-shadow .25s ease; }
.zwc-aih-ctas .zwc-cta-main:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(238,0,20,.32); }
.zwc-aih-ctalink { font: 600 15px/1 var(--font-primary); color: #0060b4; padding-right: 22px; }
.zwc-aih-ctalink.zwc-cta-arrow::after { border-color: #0060b4; width: 7px; height: 7px; top: 50%; right: 5px; transform: translateY(-50%) rotate(135deg); }
.zwc-aih-ctalink.zwc-cta-arrow:hover::after { right: 2px; top: 50%; }

@media (max-width: 767px) {
  .zwc-aih .zwc-aih-h1 { font-size: 34px; letter-spacing: -1px; }
  .zwc-aih-proof span { font-size: 13px; }
}
@media (max-width: 480px) {
  .zwc-aih .zwc-aih-h1 { font-size: 28px; }
  .zwc-aih-ctas { gap: 14px; }
}
