:root {
  --ink: #17213a;
  --muted: #667085;
  --line: #e7dfd7;
  --white: #ffffff;
  --cream: #fffaf4;
  --peach: #fff0e7;
  --peach-strong: #ff7a55;
  --mint: #eafbf4;
  --mint-strong: #2ca67a;
  --lilac: #f3efff;
  --lilac-strong: #7057d8;
  --sky: #edf8ff;
  --yellow: #fff6c7;
  --shadow: 0 18px 50px rgba(52, 43, 33, .10);
  --shadow-soft: 0 12px 34px rgba(52, 43, 33, .07);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6
}

body.menu-open {
  overflow: hidden
}

a {
  text-decoration: none
}

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

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

::selection {
  background: #ff7a55;
  color: #ffffff
}

::-moz-selection {
  background: #ff7a55;
  color: #ffffff
}

.page-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 122, 85, .15);
  z-index: 9999
}

.page-progress span {
  display: block;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff7a55, #7a65da, #2ca67a);
  transition: width .08s linear
}

.container-fluid {
  max-width: 1560px;
  padding-left: 32px;
  padding-right: 32px
}

.section-space {
  padding: 50px 0;
  position: relative
}

/* Header */
.headerTop {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 1200;
  padding: 0 20px;
  transition: top .25s ease, transform .25s ease
}

.headerTop.is-scrolled {
  top: 6px
}

.headerTop.is-scrolled .navbar {
  box-shadow: 0 18px 46px rgba(47, 38, 28, .13);
  border-color: rgba(255, 122, 85, .16)
}

.headerTop .navbar {
  min-height: 66px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(23, 33, 58, .08);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(47, 38, 28, .10);
  backdrop-filter: blur(16px)
}

.headerTop .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0 12px;
  margin-right: 12px
}

.headerTop .navbar-brand img {
  width: 188px;
  height: auto;
  /* filter: brightness(0); */
  background: #000;
  padding: 8px;
  border-radius: 10px;
  transition: transform .3s ease
}

.headerTop .navbar-brand:hover img {
  transform: translateY(-2px) rotate(-1deg)
}

.headerTop .navbar-collapse {
  justify-content: flex-end
}

.headerTop .real-menu {
  margin-left: auto;
  align-items: center;
  gap: 2px
}

.headerTop .nav-link {
  font-size: 14px;
  font-weight: 700;
  color: #25324b;
  padding: 13px 11px !important;
  border-radius: 12px;
  transition: color .25s ease, background .25s ease
}

.headerTop .nav-link:hover,
.headerTop .nav-link:focus {
  color: #ed6744;
  background: #fff2ea
}

.headerTop .nav-roll {
  position: relative;
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center
}

.headerTop .nav-roll span {
  display: inline-block;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1)
}

.headerTop .nav-roll::before {
  content: attr(data-label);
  position: absolute;
  left: 11px;
  top: 46px;
  color: #ed6744;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
  white-space: nowrap
}

.headerTop .nav-roll:hover span {
  transform: translateY(-46px)
}

.headerTop .nav-roll:hover::before {
  transform: translateY(-46px)
}

.headerTop .dropdown-toggle::after {
  display: none
}

.headerTop .mm-caret {
  font-size: 10px;
  margin-left: 4px;
  transition: transform .25s ease
}

.headerTop .dropdown.show>.nav-link .mm-caret {
  transform: rotate(180deg)
}

.headerTop .navbar-toggler {
  border: 0;
  box-shadow: none !important;
  color: #17213a;
  background: #fff0e7;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 25px
}

.headerTop .mitem {
  display: none;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 15
}

.mega-menu {
  position: fixed !important;
  top: 50px !important;
  left: 20px !important;
  right: 20px !important;
  width: auto !important;
  transform: none !important;
  margin: 0 !important;
  padding: 12px !important;
  background: #fffdf9;
  border: 1px solid #eadfd6;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(51, 41, 32, .14);
  max-height: 650px;
  overflow-y: auto
}

.mega-menu .container-fluid {
  padding: 0;
  max-width: none
}

.mega-menu .mm-row {
  row-gap: 4px
}

.mega-menu .mega-menu-column {
  height: 100%;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #f0e6df;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease
}

.mega-menu .mega-menu-column:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(73, 55, 39, .08);
  background: #fffaf5
}

.mega-menu .mega-menu-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px
}

.mega-menu .mega-menu-title .mm-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #fff0e7;
  color: #e55e3c;
  font-size: 15px;
  flex: none
}

.mega-menu .mega-menu-title>.nav-link {
  font-size: 14px;
  font-weight: 800;
  padding: 4px !important;
  color: #17213a !important;
  background: transparent !important
}

.mega-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap
}

.mega-menu .mm-list .nav-item {
  width: 50%
}

.mega-menu .mm-list-1 .nav-item {
  width: 100%
}

.mega-menu ul .nav-link {
  font-size: 12px;
  font-weight: 600;
  color: #667085;
  padding: 6px 7px !important;
  background: transparent !important;
  border-radius: 8px
}

.mega-menu ul .nav-link:hover,
.mega-menu ul .nav-link.active {
  color: #e65f3e !important;
  background: #fff0e7 !important
}

.mm-simple {
  margin-top: 12px !important;
  padding: 10px;
  border: 1px solid #eadfd6;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  background: #fffdf9;
  min-width: 310px
}

.mm-simple .nav-link {
  padding: 9px 11px !important
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
  background: linear-gradient(135deg, #fffaf4 0%, #fff3ec 38%, #f1fbf7 72%, #f5f1ff 100%)
}

.hero-container {
  position: relative;
  z-index: 2
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23, 33, 58, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 33, 58, .035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
  pointer-events: none
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .75;
  animation: orbFloat 8s ease-in-out infinite
}

.hero-orb-one {
  width: 260px;
  height: 260px;
  background: #ffe2d5;
  top: 80px;
  left: -90px
}

.hero-orb-two {
  width: 330px;
  height: 330px;
  background: #e6ddff;
  right: -110px;
  bottom: -100px;
  animation-delay: -3s
}

@keyframes orbFloat {

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

  50% {
    transform: translateY(-22px) rotate(10deg)
  }
}

.hero-copy {
  max-width: 750px;
  padding: 20px 0
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #eadfd6;
  box-shadow: 0 8px 20px rgba(60, 49, 38, .06);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #5b526d;
  margin-bottom: 20px
}

.hero-eyebrow i {
  color: #ff6b46;
  font-size: 16px
}

.hero-title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -2.4px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #17213a;
  max-width: 780px
}

.hero-title span {
  position: relative;
  color: #e86242;
  display: inline-block
}

.hero-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 11px;
  background: #ffe2d2;
  border-radius: 20px;
  z-index: -1;
  transform: rotate(-1deg)
}

.hero-text {
  font-size: 18px;
  color: #5e687b;
  max-width: 700px;
  margin: 0 0 20px
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px
}

.hero-points span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(23, 33, 58, .08);
  font-size: 13px;
  font-weight: 700;
  color: #344054
}

.hero-points i {
  color: #2ba179
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.gix-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  position: relative;
  overflow: hidden
}

.gix-btn::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 120px;
  background: rgba(255, 255, 255, .34);
  transform: rotate(28deg);
  left: -40px;
  top: -35px;
  transition: left .45s ease
}

.gix-btn:hover::before {
  left: 120%
}

.gix-btn:hover {
  transform: translateY(-3px)
}

.gix-btn-primary {
  background: #ff704d;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 112, 77, .25)
}

.gix-btn-primary:hover {
  background: #f2613e;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(255, 112, 77, .3)
}

.gix-btn-soft {
  background: #ffffff;
  color: #17213a;
  border-color: #e7dfd7;
  box-shadow: 0 10px 24px rgba(47, 38, 28, .07)
}

.gix-btn-soft:hover {
  background: #fff6ef;
  color: #df5d3c;
  border-color: #ffd6c7
}

.commerce-cockpit {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d
}

.browser-shell {
  position: relative;
  width: 610px;
  max-width: 100%;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #e8ddd4;
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(58, 45, 34, .16);
  overflow: hidden;
  z-index: 5;
  transform: rotate(1.5deg);
  transition: transform .35s ease
}

.commerce-cockpit:hover .browser-shell {
  transform: rotate(0) translateY(-5px)
}

.browser-top {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  background: #fffaf5;
  border-bottom: 1px solid #eee3db
}

.browser-dots {
  display: flex;
  gap: 6px
}

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block
}

.browser-dots span:nth-child(1) {
  background: #ff8870
}

.browser-dots span:nth-child(2) {
  background: #ffd36d
}

.browser-dots span:nth-child(3) {
  background: #82d5b9
}

.browser-url {
  height: 34px;
  min-width: 240px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #ede2da;
  background: #ffffff;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
  color: #7a7185
}

.browser-action {
  font-size: 18px;
  color: #756b78
}

.browser-body {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #fffaf6)
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px
}

.dash-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a65da;
  font-weight: 800
}

.dashboard-top h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.05;
  margin: 6px 0 0;
  letter-spacing: -1.2px
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eafbf4;
  color: #1f8b67;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800
}

.live-badge span {
  width: 7px;
  height: 7px;
  background: #2ca67a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(44, 166, 122, .12);
  animation: livePulse 1.6s infinite
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(44, 166, 122, .11)
  }

  50% {
    box-shadow: 0 0 0 9px rgba(44, 166, 122, .03)
  }
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px
}

.dash-card {
  border: 1px solid #ece3dc;
  border-radius: 18px;
  background: #ffffff;
  min-height: 108px;
  padding: 13px;
  box-shadow: 0 10px 24px rgba(47, 38, 28, .05);
  transition: transform .3s ease, box-shadow .3s ease
}

.dash-card:hover {
  transform: translateY(-5px) rotate(-.5deg);
  box-shadow: 0 16px 30px rgba(47, 38, 28, .09)
}

.product-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: center
}

.mini-product {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 25px
}

.visual-one {
  background: #fff0e7;
  color: #e86242
}

.visual-two {
  background: #f0ecff;
  color: #6e59ce
}

.product-card small,
.metric-copy small,
.gateway-card small {
  display: block;
  color: #8a8090;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 800
}

.product-card strong,
.metric-copy strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
  margin-top: 4px
}

.status-pill {
  font-size: 9px;
  font-weight: 800;
  background: #eafbf4;
  color: #248b68;
  padding: 5px 7px;
  border-radius: 999px
}

.status-pill.peach {
  background: #fff0e7;
  color: #dc6242
}

.metric-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  background: #f5f1ff
}

.metric-bars {
  height: 58px;
  display: flex;
  align-items: end;
  gap: 4px
}

.metric-bars span {
  width: 10px;
  border-radius: 8px 8px 2px 2px;
  background: #806ad9;
  animation: barBounce 2.4s ease-in-out infinite
}

.metric-bars span:nth-child(1) {
  height: 18px
}

.metric-bars span:nth-child(2) {
  height: 29px;
  animation-delay: .15s
}

.metric-bars span:nth-child(3) {
  height: 24px;
  animation-delay: .3s
}

.metric-bars span:nth-child(4) {
  height: 43px;
  animation-delay: .45s
}

.metric-bars span:nth-child(5) {
  height: 54px;
  animation-delay: .6s
}

@keyframes barBounce {

  0%,
  100% {
    transform: scaleY(1)
  }

  50% {
    transform: scaleY(.78)
  }
}

.gateway-card {
  background: #edf8ff
}

.gateway-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px
}

.gateway-row span {
  font-size: 10px;
  font-weight: 800;
  padding: 6px 7px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #dfe9ef
}

.cockpit-ring {
  position: absolute;
  border: 1px dashed rgba(112, 87, 216, .28);
  border-radius: 50%;
  animation: ringSpin 22s linear infinite;
  z-index: 1
}

.ring-one {
  width: 520px;
  height: 520px
}

.ring-two {
  width: 680px;
  height: 680px;
  animation-direction: reverse;
  animation-duration: 28s;
  border-color: rgba(255, 112, 77, .2)
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg)
  }
}

.float-chip {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #e9ded6;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(49, 38, 29, .11);
  font-size: 12px;
  font-weight: 800;
  animation: chipFloat 4.2s ease-in-out infinite
}

.float-chip i {
  font-size: 16px
}

.chip-shopify {
  left: 5px;
  top: 95px;
  color: #2b9a72
}

.chip-orders {
  right: -5px;
  top: 165px;
  color: #6e59ce;
  animation-delay: -1.3s
}

.chip-growth {
  left: 45px;
  bottom: 68px;
  color: #df6241;
  animation-delay: -2.2s
}

@keyframes chipFloat {

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

  50% {
    transform: translateY(-12px) rotate(-2deg)
  }
}

.hero-marquee-wrap {
  margin-top: 28px;
  padding: 10px 0;
  border-top: 1px solid rgba(23, 33, 58, .08);
  border-bottom: 1px solid rgba(23, 33, 58, .08);
  overflow: hidden
}

.hero-marquee {
  overflow: hidden
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marqueeLeft 24s linear infinite
}

.hero-marquee-track:hover {
  animation-play-state: paused
}

.hero-marquee-track span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(23, 33, 58, .08);
  font-size: 12px;
  font-weight: 800;
  color: #4f5870;
  white-space: nowrap
}

.hero-marquee-track i {
  color: #e66544
}

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

/* Generic heading/reveals */
.section-heading {
  max-width: 800px;
  margin: 0 0 30px
}

.section-heading.text-center {
  margin-left: auto;
  margin-right: auto
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e9ded6;
  color: #e25e3d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px
}

.section-heading h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  margin: 0 0 13px;
  font-weight: 700;
  color: #17213a
}

.section-heading h2 span {
  color: #e86443
}

.section-heading p {
  font-size: 16px;
  line-height: 1.7;
  color: #667085;
  margin: 0;
  max-width: 720px
}

.section-heading.text-center p {
  margin-left: auto;
  margin-right: auto
}

.reveal-block {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1)
}

.reveal-block.in-view {
  opacity: 1;
  transform: translateY(0)
}

.reveal-block .eyebrow-stage,
.reveal-block .title-stage,
.reveal-block .text-stage {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease
}

.reveal-block.in-view .eyebrow-stage {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .08s
}

.reveal-block.in-view .title-stage {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .18s
}

.reveal-block.in-view .text-stage {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s
}

.staged-item {
  opacity: 0;
  transform: translateY(58px);
  transition: opacity .6s ease, transform .7s cubic-bezier(.2, .7, .2, 1)
}

.staged-item.in-view {
  opacity: 1;
  transform: translateY(0)
}

/* Services */
.services-section {
  background: #ffffff
}

.feature-card {
  height: 100%;
  min-height: 290px;
  padding: 22px;
  border-radius: 22px;
  background: #fffdf9;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(53, 42, 32, .04);
  transition: box-shadow .3s ease, background .3s ease;
  transform-style: preserve-3d
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff0e7;
  right: -70px;
  top: -70px;
  transition: transform .5s ease
}

.feature-card:hover::after {
  transform: scale(2.1)
}

.feature-card:hover {
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(57, 43, 31, .11)
}

.card-border {
  position: absolute;
  inset: 0;
  border: 2px solid #ff8a68;
  border-radius: 22px;
  clip-path: inset(0 100% 100% 0);
  transition: clip-path .65s cubic-bezier(.2, .7, .2, 1);
  pointer-events: none;
  z-index: 3
}

.staged-item.in-view .card-border {
  clip-path: inset(0 0 0 0);
  transition-delay: .05s
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff0e7;
  color: #e56040;
  display: grid;
  place-items: center;
  font-size: 21px;
  margin-bottom: 24px;
  position: relative;
  z-index: 4;
  opacity: 0;
  transform: scale(.55) rotate(-16deg);
  transition: opacity .45s ease, transform .5s cubic-bezier(.2, .9, .2, 1)
}

.staged-item.in-view .feature-icon {
  opacity: 1;
  transform: scale(1) rotate(0);
  transition-delay: .3s
}

.feature-card h3,
.industry-card h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 10px;
  position: relative;
  z-index: 4;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease
}

.staged-item.in-view .feature-card h3,
.staged-item.in-view .industry-card h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .46s
}

.feature-card p,
.industry-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 20px;
  position: relative;
  z-index: 4;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease
}

.staged-item.in-view .feature-card p,
.staged-item.in-view .industry-card p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .58s
}

.feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #e55e3d;
  position: relative;
  z-index: 4;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease, gap .25s ease
}

.staged-item.in-view .feature-card a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .7s
}

.feature-card a:hover {
  gap: 13px;
  color: #c84c2f
}

/* Why */
.why-section {
  background: #fff5ee;
  overflow: hidden
}

.why-blob {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #e9fbf4;
  right: -100px;
  top: 40px
}

.why-card {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid #eadfd7;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff7a55, #ffd39f, #82d5b9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(60, 44, 31, .10);
  border-color: #ffd4c5
}

.why-card:hover::before {
  transform: scaleX(1)
}

.why-index {
  position: absolute;
  right: 18px;
  top: 15px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
  color: #efe6df;
  font-weight: 700;
  transition: transform .3s ease, color .3s ease
}

.why-card:hover .why-index {
  transform: rotate(-8deg) scale(1.1);
  color: #ffe0d3
}

.why-card h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
  margin: 0 0 12px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease
}

.staged-item.in-view .why-card h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .44s
}

.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease
}

.staged-item.in-view .why-card ul {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .58s
}

.why-card li {
  position: relative;
  padding-left: 20px;
  margin: 7px 0;
  color: #667085;
  font-size: 13px
}

.why-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42aa84;
  box-shadow: 0 0 0 4px #eafbf4
}

/* Portfolio */
.portfolio-section {
  background: #f5f1ff;
  overflow: hidden
}

.section-top-row {
  margin-bottom: 26px
}

.portfolio-swiper {
  padding: 8px 2px 4px;
  overflow: visible
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid #e5dcf5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(66, 54, 91, .06);
  transition: transform .35s ease, box-shadow .35s ease
}

.portfolio-card:hover {
  transform: translateY(-9px) rotate(-.6deg);
  box-shadow: 0 24px 55px rgba(66, 54, 91, .13)
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  background: #f7f4ff;
  aspect-ratio: 16/10
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1)
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.055) rotate(.5deg)
}

.project-chip {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(23, 33, 58, .08);
  font-size: 11px;
  font-weight: 800;
  color: #6b57c8;
  backdrop-filter: blur(8px)
}

.portfolio-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px
}

.portfolio-content small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #8b8199;
  font-weight: 800;
  margin-bottom: 4px
}

.portfolio-content h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
  margin: 0;
  color: #17213a
}

.portfolio-content a,
.portfolio-arrow {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #fff0e7;
  color: #e55f3e;
  font-size: 18px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
  flex: none
}

.portfolio-card:hover .portfolio-content a,
.portfolio-card:hover .portfolio-arrow {
  transform: rotate(45deg);
  background: #ff704d;
  color: #ffffff
}

.portfolio-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px
}

.portfolio-prev,
.portfolio-next {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid #ded4ef;
  background: #ffffff;
  color: #6f5acf;
  font-size: 18px;
  transition: transform .25s ease, background .25s ease, color .25s ease
}

.portfolio-prev:hover,
.portfolio-next:hover {
  transform: translateY(-3px);
  background: #7661d5;
  color: #ffffff
}

.portfolio-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  align-items: center
}

.portfolio-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #b8add2;
  opacity: 1;
  transition: width .25s ease, border-radius .25s ease
}

.portfolio-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: #ff7a55
}

/* Industries */
.industries-section {
  background: #ffffff;
  overflow: hidden
}

.industry-card {
  height: 100%;
  min-height: 245px;
  padding: 22px;
  border-radius: 22px;
  background: #fffdf9;
  border: 1px solid #ece4dc;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease
}

.industry-card::after {
  content: "";
  position: absolute;
  left: -65px;
  bottom: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #eafbf4;
  transition: transform .5s ease
}

.industry-card:hover {
  transform: translateY(-6px) rotate(.4deg);
  box-shadow: 0 18px 42px rgba(50, 41, 33, .09);
  background: #ffffff
}

.industry-card:hover::after {
  transform: scale(1.55)
}

.industry-card .feature-icon {
  background: #eefaf6;
  color: #218b68;
  margin-bottom: 20px
}

.industry-card h3,
.industry-card p {
  position: relative;
  z-index: 4
}

.industry-marquee {
  margin-top: 28px;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid #eee5de;
  border-bottom: 1px solid #eee5de;
  background: #fffaf5
}

.industry-marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marqueeRight 28s linear infinite
}

.industry-marquee-track span {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #3f485f;
  white-space: nowrap
}

.industry-marquee-track i {
  color: #ff7a55;
  font-size: 15px
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

/* Process */
.process-section {
  background: #edf8ff;
  overflow: hidden
}

.process-shell {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  position: relative
}

.process-card {
  min-height: 200px;
  padding: 20px;
  border: 1px solid #dbeaf1;
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease
}

.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #fff0e7;
  transition: height .38s ease;
  z-index: 0
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(48, 75, 87, .1)
}

.process-card:hover::before {
  height: 100%
}

.process-card>* {
  position: relative;
  z-index: 2
}

.process-no {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #758395;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease
}

.staged-item.in-view .process-no {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s
}

.process-card .feature-icon {
  background: #edf8ff;
  color: #417b93;
  margin-bottom: 16px
}

.process-card h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 8px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .4s ease, transform .4s ease
}

.process-card.staged-item.in-view h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .44s
}

.process-card p {
  font-size: 13px;
  color: #637281;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .4s ease, transform .4s ease
}

.process-card.staged-item.in-view p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .57s
}

/* Pricing */
.pricing-section {
  background: #fffaf4;
  overflow: hidden
}

.pricing-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #e8f9f2;
  border-radius: 50%;
  left: -110px;
  bottom: -140px
}

.pricing-card {
  height: 100%;
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #eadfd6;
  position: relative;
  box-shadow: 0 12px 30px rgba(54, 43, 33, .05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(54, 43, 33, .11);
  border-color: #ffd0c0
}

.pricing-card.featured {
  background: #fff0e7;
  border-color: #ffc7b4;
  transform: translateY(-8px)
}

.pricing-card.featured:hover {
  transform: translateY(-13px)
}

.popular-badge {
  position: absolute;
  right: 18px;
  top: -14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #7661d5;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(118, 97, 213, .25);
  animation: badgeWiggle 3.5s ease-in-out infinite
}

@keyframes badgeWiggle {

  0%,
  100% {
    transform: rotate(0)
  }

  50% {
    transform: rotate(3deg)
  }
}

.price-top {
  padding-bottom: 18px;
  border-bottom: 1px dashed #e8ddd5;
  margin-bottom: 18px
}

.price-tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6d6477
}

.price-amount {
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 8px
}

.price-amount strong {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 39px;
  line-height: 1;
  color: #17213a
}

.price-amount small {
  font-size: 12px;
  color: #8b8290;
  margin-bottom: 4px
}

.pricing-card>p {
  font-size: 14px;
  color: #677083;
  line-height: 1.6
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0
}

.pricing-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: #596273;
  margin: 10px 0
}

.pricing-card li i {
  color: #2ca67a;
  font-size: 16px
}

.price-note {
  display: block;
  text-align: center;
  color: #8a8190;
  font-size: 10px;
  margin-top: 10px
}

/* Team */
.team-section {
  background: #ffffff
}

.team-card {
  height: 100%;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #ece3dc;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(54, 43, 33, .10)
}

.team-image {
  position: relative;
  overflow: hidden;
  background: #fff4ec;
  aspect-ratio: 3/4
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease
}

.team-card:hover .team-image img {
  transform: scale(1.04)
}

.team-scan {
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: 18px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent);
  transform: skewY(-4deg);
  opacity: 0;
  transition: opacity .25s ease
}

.team-card:hover .team-scan {
  opacity: 1;
  animation: scanDown 1.3s ease forwards
}

@keyframes scanDown {
  to {
    top: 100%
  }
}

.team-info {
  padding: 17px 18px 19px;
  position: relative
}

.team-info span {
  position: absolute;
  right: 16px;
  top: 15px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 26px;
  color: #eee5df;
  font-weight: 700
}

.team-info h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
  margin: 0 0 4px;
  padding-right: 40px
}

.team-info p {
  font-size: 12px;
  color: #7a7180;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .7px;
  font-weight: 800
}

/* FAQ */
.faq-section {
  background: #f2fbf7
}


.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq-accordion .accordion-item {
  border: 1px solid #dcece5;
  border-radius: 18px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, .86);
  box-shadow: none
}

.faq-accordion .accordion-button {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #27324a;
  background: #ffffff;
  box-shadow: none !important;
  padding: 17px 18px;
  gap: 12px
}

.faq-accordion .accordion-button span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #eafbf4;
  color: #268b69;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  flex: none
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #e25e3d;
  background: #fff7f1
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #fff0e7;
  color: #e25e3d;
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  transform: none;
  transition: transform .25s ease
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: rotate(180deg)
}

.faq-accordion .accordion-body {
  padding: 0 18px 18px 62px;
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
  background: #fff7f1
}

/* Quote */
.quote-section {
  background: #ffffff;
  overflow: hidden
}

.quote-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.quote-shape-one {
  width: 280px;
  height: 280px;
  background: #f0ebff;
  right: -90px;
  top: -90px
}

.quote-shape-two {
  width: 220px;
  height: 220px;
  background: #fff0e7;
  left: -80px;
  bottom: -100px
}

.quote-shell {
  position: relative;
  z-index: 2;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff7f1, #f2fbf7, #f3efff);
  border: 1px solid #eadfd7;
  box-shadow: 0 26px 65px rgba(55, 44, 34, .10)
}

.quote-copy {
  height: 100%;
  padding: 18px
}

.quote-copy h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 0 0 14px
}

.quote-copy h2 span {
  color: #e86443
}

.quote-copy>p {
  font-size: 15px;
  color: #667085;
  line-height: 1.7;
  margin-bottom: 22px
}

.quote-contact {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.quote-contact a,
.quote-contact>div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(23, 33, 58, .07);
  border-radius: 14px;
  color: #27324a
}

.quote-contact i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff0e7;
  color: #df5f3e;
  display: grid;
  place-items: center;
  font-size: 16px;
  flex: none
}

.quote-contact span {
  font-size: 13px;
  font-weight: 800
}

.quote-contact small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #8a8190;
  margin-bottom: 2px
}

.quote-form {
  height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e8ddd5;
  box-shadow: 0 12px 32px rgba(54, 43, 33, .06)
}

.quote-form label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #6e6576;
  margin-bottom: 6px
}

.quote-form .form-control,
.quote-form .form-select {
  min-height: 50px;
  border: 1px solid #e7ddd5;
  border-radius: 13px;
  padding: 11px 13px;
  font-size: 13px;
  color: #27324a;
  background: #fffdfb;
  box-shadow: none
}

.quote-form textarea.form-control {
  min-height: 130px;
  resize: vertical
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: #ff997b;
  box-shadow: 0 0 0 4px rgba(255, 122, 85, .10);
  background: #ffffff
}


/* Responsive */
@media (max-width:1399px) {
  .hero-title {
    font-size: 54px
  }

  .process-shell {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }
}

@media (max-width:1199px) {
  .container-fluid {
    padding-left: 24px;
    padding-right: 24px
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: -1.8px
  }

  .commerce-cockpit {
    min-height: 510px
  }

  .browser-shell {
    width: 520px
  }

  .ring-one {
    width: 470px;
    height: 470px
  }

  .ring-two {
    width: 590px;
    height: 590px
  }

  .headerTop .nav-link {
    padding: 13px 8px !important;
    font-size: 13px
  }

  .process-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media (max-width:991px) {
  body.menu-open .nav-open-button {
    opacity: 0;
    pointer-events: none
  }

  .headerTop {
    top: 8px;
    padding: 0 10px
  }

  .headerTop .navbar {
    min-height: 60px;
    border-radius: 18px;
    padding: 7px 8px
  }

  .headerTop .navbar-brand img {
    width: 168px
  }

  .headerTop .navbar-collapse {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 8px;
    bottom: 8px;
    background: #fffdf9;
    border: 1px solid #eadfd7;
    border-radius: 20px;
    padding: 68px 14px 18px;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(55, 42, 31, .17);
    height: 550px;
  }

  .headerTop .navbar-collapse.collapsing {
    height: auto;
    transition: opacity .2s ease;
    opacity: .4
  }

  .headerTop .mitem {
    display: grid;
    place-items: center
  }

  .headerTop .real-menu {
    align-items: stretch;
    gap: 3px;
    width: 100%
  }

  .headerTop .real-menu>.nav-item>.nav-link {
    height: auto;
    min-height: 45px;
    justify-content: space-between;
    font-size: 14px;
    padding: 12px !important;
    background: #fffaf5;
    border: 1px solid #eee4dc
  }

  .headerTop .nav-roll::before {
    display: none
  }

  .headerTop .nav-roll:hover span {
    transform: none
  }

  .headerTop .mega-menu,
  .headerTop .mm-simple {
    position: static !important;
    transform: none !important;
    inset: auto !important;
    width: 100% !important;
    max-height: none;
    margin: 6px 0 !important;
    box-shadow: none;
    border-radius: 16px;
    padding: 8px !important;
    background: #ffffff
  }

  .mega-menu .mega-menu-column {
    padding: 10px;
    background: #fffdf9
  }

  .mega-menu .mm-list .nav-item {
    width: 100%
  }

  .hero-section {
    padding: 104px 0 38px
  }

  .hero-copy {
    max-width: 100%
  }

  .hero-title {
    font-size: 50px;
    max-width: 760px
  }

  .commerce-cockpit {
    margin-top: 8px;
    min-height: 500px
  }

  .section-heading h2 {
    font-size: 40px
  }

  .process-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .pricing-card.featured {
    transform: none
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px)
  }

  .sticky-heading {
    position: static
  }

}

@media (max-width:767px) {
  body {
    font-size: 15px
  }

  .container-fluid {
    padding-left: 16px;
    padding-right: 16px
  }

  .section-space {
    padding: 20px 0
  }

  .hero-section {
    padding: 92px 0 24px
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -1.3px
  }

  .hero-text {
    font-size: 15px
  }

  .hero-points {
    gap: 7px
  }

  .hero-points span {
    font-size: 11px;
    padding: 8px 9px
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr
  }

  .gix-btn {
    min-height: 48px;
    width: 100%
  }

  .commerce-cockpit {
    min-height: 440px;
    margin-top: 8px
  }

  .browser-shell {
    width: 100%;
    border-radius: 21px;
    transform: none
  }

  .browser-top {
    height: 48px;
    padding: 0 12px
  }

  .browser-url {
    min-width: 0;
    font-size: 10px;
    height: 30px
  }

  .browser-body {
    padding: 15px
  }

  .dashboard-top h2 {
    font-size: 27px
  }

  .dashboard-grid {
    grid-template-columns: 1fr
  }

  .dash-card {
    min-height: 90px
  }

  .gateway-card {
    min-height: 88px
  }

  .cockpit-ring {
    display: none
  }

  .float-chip {
    font-size: 10px;
    padding: 8px 9px
  }

  .chip-shopify {
    left: -5px;
    top: 62px
  }

  .chip-orders {
    right: -4px;
    top: 125px
  }

  .chip-growth {
    left: 12px;
    bottom: 22px
  }

  .hero-marquee-wrap {
    margin-top: 14px
  }

  .section-heading {
    margin-bottom: 20px
  }

  .section-heading h2 {
    font-size: 34px;
    letter-spacing: -1px
  }

  .section-heading p {
    font-size: 14px
  }

  .feature-card {
    min-height: 260px;
    padding: 20px
  }

  .why-card {
    padding: 20px
  }

  .industry-card {
    min-height: 220px;
    padding: 20px
  }

  .portfolio-section {
    overflow: hidden
  }

  .portfolio-swiper {
    overflow: visible
  }

  .portfolio-content h3 {
    font-size: 20px
  }

  .process-shell {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .process-card {
    min-height: 210px
  }

  .price-amount strong {
    font-size: 34px
  }

  .pricing-card {
    padding: 21px
  }

  .team-info h3 {
    font-size: 19px
  }

  .faq-accordion .accordion-button {
    font-size: 14px;
    padding: 14px 13px
  }

  .faq-accordion .accordion-button span {
    width: 29px;
    height: 29px
  }

  .faq-accordion .accordion-button::after {
    width: 29px;
    height: 29px
  }

  .faq-accordion .accordion-body {
    padding: 0 14px 15px 54px;
    font-size: 13px
  }

  .quote-shell {
    padding: 12px;
    border-radius: 22px
  }

  .quote-copy {
    padding: 10px
  }

  .quote-copy h2 {
    font-size: 34px
  }

  .quote-form {
    padding: 16px
  }
}

@media (max-width:479px) {
  .headerTop .navbar-brand img {
    width: 145px
  }

  .headerTop .navbar-toggler {
    width: 40px;
    height: 40px
  }

  .hero-title {
    font-size: 36px
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: .4px
  }

  .commerce-cockpit {
    min-height: 410px
  }

  .dashboard-top {
    gap: 8px
  }

  .dashboard-top h2 {
    font-size: 24px
  }

  .live-badge {
    font-size: 9px;
    padding: 6px 7px
  }

  .product-card {
    grid-template-columns: 50px 1fr auto
  }

  .mini-product {
    width: 50px;
    height: 50px
  }

  .float-chip {
    display: none
  }

  .section-heading h2 {
    font-size: 31px
  }

  .portfolio-controls {
    justify-content: center
  }
}

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

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

  .reveal-block,
  .staged-item,
  .reveal-block .eyebrow-stage,
  .reveal-block .title-stage,
  .reveal-block .text-stage,
  .feature-icon,
  .feature-card h3,
  .feature-card p,
  .feature-card a,
  .industry-card h3,
  .industry-card p,
  .why-card h3,
  .why-card ul,
  .process-no,
  .process-card h3,
  .process-card p {
    opacity: 1 !important;
    transform: none !important
  }

  .card-border {
    clip-path: inset(0 0 0 0) !important
  }
}

@media (max-width: 991px){
    .sticky-heading{
        position: relative;
        top: 0;
    }
}

.faq-sticky-col{
    position: sticky;
    top: 120px;
    align-self: flex-start;
    z-index: 5;
}
@media (max-width: 991px){

    .faq-sticky-col{
        position: static;
        top: auto;
    }

}


.gix-footer{
    position:relative;
    padding:50px 0 0;
    background:#fff8f4;
    overflow:hidden;
    border-top:1px solid #f2ded4;
}

.gix-footer::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    left:-160px;
    top:100px;
    border-radius:50%;
    background:#eaf8f3;
    filter:blur(20px);
    pointer-events:none;
}

.gix-footer::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    right:-120px;
    top:-90px;
    border-radius:50%;
    background:#fff0e8;
    filter:blur(20px);
    pointer-events:none;
    z-index: -1;
}

.gix-footer .container{
    position:relative;
    z-index:2;
}


/* ===============================
   MAIN FOOTER
================================ */

.gix-footer__main{
    padding:0 0 45px;
}

.gix-footer__brand,
.gix-footer__column{
    height:100%;
}

.gix-footer__brand{
    padding:26px;
    background:#ffffff;
    border:1px solid #eadfd9;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(39,55,73,.06);
}

.gix-footer__logo{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    margin-bottom:24px;
    border-radius:16px;
    background:#ff704f;
    transition:transform .35s ease, box-shadow .35s ease;
}

.gix-footer__logo:hover{
    transform:translateY(-4px) rotate(-1deg);
    box-shadow:0 12px 25px rgba(255,112,79,.25);
}

.gix-footer__logo img{
    width:210px;
    height:auto;
    display:block;
}

.gix-footer__brand > p{
    margin:0 0 24px;
    color:#657283;
    font-size:14px;
    line-height:1.8;
}

.gix-footer__brand-mark{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.gix-footer__brand-mark span{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:64px;
    height:34px;
    padding:0 12px;
    border-radius:30px;
    background:#eff9f5;
    border:1px solid #d8eee5;
    color:#16775b;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    transition:all .3s ease;
}

.gix-footer__brand-mark span:hover{
    transform:translateY(-3px);
    background:#16775b;
    color:#ffffff;
}


/* ===============================
   TITLES
================================ */

.gix-footer__title{
    position:relative;
    display:inline-block;
    margin:0 0 24px;
    padding-bottom:10px;
    color:#172942;
    font-size:18px;
    font-weight:800;
}

.gix-footer__title::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:28px;
    height:3px;
    border-radius:20px;
    background:#ff704f;
    transition:width .35s ease;
}

.gix-footer__column:hover .gix-footer__title::before{
    width:100%;
}


/* ===============================
   LINKS
================================ */

.gix-footer__links,
.gix-footer__sector-links{
    list-style:none;
    padding:0;
    margin:0;
}

.gix-footer__links li{
    margin-bottom:7px;
}

.gix-footer__links a{
    position:relative;
    display:block;
    padding:6px 0 6px 18px;
    color:#637181;
    text-decoration:none;
    font-size:13px;
    line-height:1.5;
    transition:color .25s ease, transform .25s ease;
}

.gix-footer__links a::before{
    content:"";
    position:absolute;
    left:0;
    top:14px;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#ffc7b7;
    transition:all .25s ease;
}

.gix-footer__links a:hover{
    color:#ff6241;
    transform:translateX(5px);
}

.gix-footer__links a:hover::before{
    width:10px;
    border-radius:10px;
    background:#ff6241;
}


/* ===============================
   CONTACT
================================ */

.gix-footer__office{
    position:relative;
    margin-bottom:16px;
    padding:14px 15px;
    border-radius:14px;
    background:rgba(255,255,255,.68);
    border:1px solid #ebdfd8;
    transition:transform .3s ease, background .3s ease, border-color .3s ease;
}

.gix-footer__office:last-child{
    margin-bottom:0;
}

.gix-footer__office:hover{
    transform:translateY(-3px);
    background:#ffffff;
    border-color:#ffc4b2;
}

.gix-footer__office-head{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:7px;
}

.gix-footer__office-head i{
    color:#ff704f;
    font-size:14px;
}

.gix-footer__office h3{
    margin:0;
    color:#183047;
    font-size:13px;
    font-weight:800;
}

.gix-footer__office p{
    margin:0 0 7px;
    color:#718090;
    font-size:11px;
    line-height:1.6;
}

.gix-footer__office a{
    display:block;
    width:max-content;
    max-width:100%;
    color:#30495d;
    font-size:11px;
    line-height:1.7;
    text-decoration:none;
    transition:color .25s ease;
}

.gix-footer__office a:hover{
    color:#ff6241;
}

.gix-footer__inline-links{
    display:flex;
    flex-wrap:wrap;
    gap:5px 12px;
}


/* ===============================
   SECTOR LINKS
================================ */

.gix-footer__sector-links{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.gix-footer__sector-links li{
    display:flex;
    align-items:flex-start;
    gap:9px;
}

.gix-footer__sector-links i{
    flex:0 0 30px;
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    background:#edf8f4;
    color:#158263;
    font-size:12px;
    transition:all .3s ease;
}

.gix-footer__sector-links a{
    padding-top:4px;
    color:#637181;
    font-size:12px;
    line-height:1.45;
    text-decoration:none;
    transition:color .3s ease, transform .3s ease;
}

.gix-footer__sector-links li:hover i{
    background:#158263;
    color:#ffffff;
    transform:rotate(-7deg) scale(1.06);
}

.gix-footer__sector-links li:hover a{
    color:#158263;
    transform:translateX(3px);
}


/* ===============================
   REVIEW AREA
================================ */

.gix-footer__reviews{
    padding:28px 0;
    border-top:1px solid #eadfd9;
}

.gix-footer__review-card{
    position:relative;
    height:90px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    border-radius:18px;
    background:#ffffff;
    border:1px solid #e8ded8;
    text-decoration:none;
    overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.gix-footer__review-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:100%;
    background:#fff1eb;
    transition:width .35s ease;
    z-index:0;
}

.gix-footer__review-card:hover::before{
    width:100%;
}

.gix-footer__review-card > *{
    position:relative;
    z-index:2;
}

.gix-footer__review-card:hover{
    transform:translateY(-7px);
    border-color:#ffc2ae;
    box-shadow:0 15px 35px rgba(40,50,70,.08);
}

.gix-footer__review-logo{
    width:62px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:6px;
    border-radius:12px;
    background:#ffffff;
    border:1px solid #eee7e3;
}

.gix-footer__review-logo img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.gix-footer__review-card span{
    flex:1;
    color:#26384e;
    font-size:12px;
    font-weight:700;
}

.gix-footer__review-card > i{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff1eb;
    color:#ff6847;
    font-size:13px;
    transition:all .3s ease;
}

.gix-footer__review-card:hover > i{
    transform:rotate(45deg);
    background:#ff6847;
    color:#ffffff;
}


/* ===============================
   BOTTOM
================================ */

.gix-footer__bottom{
    padding:20px 0;
    border-top:1px solid #eadfd9;
}

.gix-footer__copyright{
    margin:0;
    color:#718090;
    font-size:11px;
}

.gix-footer__legal{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px 18px;
}

.gix-footer__legal a{
    position:relative;
    color:#5c6d7e;
    font-size:11px;
    text-decoration:none;
    transition:color .25s ease;
}

.gix-footer__legal a:hover{
    color:#ff6241;
}

.gix-footer__social{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:7px;
}

.gix-footer__social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    border:1px solid #e8dad2;
    background:#ffffff;
    color:#2e4659;
    text-decoration:none;
    font-size:13px;
    transition:transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.gix-footer__social a:hover{
    transform:translateY(-4px) rotate(-5deg);
    background:#ff704f;
    border-color:#ff704f;
    color:#ffffff;
}


/* ===============================
   TABLET
================================ */

@media(max-width:1199px){

    .gix-footer__social{
        justify-content:flex-end;
    }

}


/* ===============================
   MOBILE
================================ */

@media(max-width:991px){

    .gix-footer{
        padding:35px 0 0;
    }

    .gix-footer__main{
        padding-bottom:30px;
    }

    .gix-footer__legal{
        justify-content:flex-start;
    }

    .gix-footer__social{
        justify-content:flex-start;
    }

}


@media(max-width:767px){

    .gix-footer{
        padding:20px 0 0;
    }

    .gix-footer__brand{
        padding:20px;
        border-radius:18px;
    }

    .gix-footer__title{
        margin-bottom:18px;
    }

    .gix-footer__review-card{
        height:78px;
    }

    .gix-footer__bottom{
        padding:18px 0;
    }

}