:root {
  --ink: #17212b;
  --muted: #68717b;
  --line: #dfe3e8;
  --white: #ffffff;
  --peach: #fff4ec;
  --peach-2: #ffe7d8;
  --coral: #ff5c3a;
  --coral-2: #ff8a63;
  --violet: #6657e8;
  --violet-soft: #f0edff;
  --mint: #eafff4;
  --blue-soft: #edf7ff;
  --yellow-soft: #fff8d9;
  --green: #218b63;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection {
  background: var(--coral);
  color: #ffffff;
}

::-moz-selection {
  background: var(--coral);
  color: #ffffff;
}

img {
  max-width: 100%;
}

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

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

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

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #454f59;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.section-eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--coral);
  display: inline-block;
  position: relative;
}

.section-eyebrow span::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  right: -1px;
  top: -2px;
  border-radius: 50%;
  background: var(--coral);
}

.section-heading h2,
.across-wrap h2,
.faq-sticky h2,
.quote-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1.8px;
}

.section-heading p,
.across-wrap>.row>div>p,
.quote-copy>p {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.gix-btn::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 90px;
  left: -45px;
  top: -20px;
  background: rgba(255, 255, 255, .5);
  transform: rotate(22deg);
  transition: left .5s ease;
}

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

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

.gix-btn-primary {
  background: var(--coral);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 92, 58, .2);
}

.gix-btn-primary:hover {
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(255, 92, 58, .28);
}

.gix-btn-ghost {
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  border-color: #d8dde3;
}

.gix-btn-ghost:hover {
  border-color: var(--coral);
}

.reveal-block,
.reveal-card {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--seq-delay, 0ms);
}

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

.reveal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(23, 33, 43, .16);
  border-radius: inherit;
  pointer-events: none;
  clip-path: inset(100% 0 0 0);
  transition: clip-path .65s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--seq-delay, 0ms);
  z-index: 2;
}

.reveal-card.in-view::before {
  clip-path: inset(0 0 0 0);
}

.reveal-card .service-icon,
.reveal-card .why-icon,
.reveal-card .industry-icon,
.reveal-card .price-icon,
.reveal-card .review-icon,
.reveal-card>i {
  opacity: 0;
  transform: translateY(14px) scale(.9);
  transition: opacity .4s ease, transform .4s ease;
  transition-delay: calc(var(--seq-delay, 0ms) + 180ms);
}

.reveal-card.in-view .service-icon,
.reveal-card.in-view .why-icon,
.reveal-card.in-view .industry-icon,
.reveal-card.in-view .price-icon,
.reveal-card.in-view .review-icon,
.reveal-card.in-view>i {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-card h3 {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .42s ease, transform .42s ease;
  transition-delay: calc(var(--seq-delay, 0ms) + 280ms);
}

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

.reveal-card p,
.reveal-card .service-includes,
.reveal-card .process-output,
.reveal-card b,
.reveal-card a {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .44s ease, transform .44s ease;
  transition-delay: calc(var(--seq-delay, 0ms) + 380ms);
}

.reveal-card.in-view p,
.reveal-card.in-view .service-includes,
.reveal-card.in-view .process-output,
.reveal-card.in-view b,
.reveal-card.in-view a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .gix-section {
    padding: 20px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2,
  .across-wrap h2,
  .faq-sticky h2,
  .quote-copy h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .section-heading p,
  .across-wrap>.row>div>p,
  .quote-copy>p {
    font-size: 15px;
  }

  .reveal-block,
  .reveal-card {
    transform: translateY(34px);
  }
}

/* ========================= HEADER ========================= */
.headerTop {
  position: sticky;
  top: 0;
  z-index: 1100;
  /* background: rgba(255, 255, 255, .92); */
  border-bottom: 1px solid rgba(23, 33, 43, .08);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(35, 48, 60, .05);
}

.headerTop .navbar {
  min-height: 78px;
  padding: 8px 18px;
}

.headerTop .container-fluid {
  max-width: 1500px;
  margin: 0 auto;
}

.headerTop .navbar-brand {
  padding: 0;
  margin-right: 24px;
}

.gix-logo-plate {
  min-width: 238px;
  min-height: 54px;
  padding: 6px 14px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #18212b;
  box-shadow: 0 8px 20px rgba(23, 33, 43, .15);
}

.gix-logo-plate img {
  width: 210px;
  height: 42px;
  object-fit: contain;
}

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

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

.headerTop .real-menu>.nav-item>.nav-link {
  min-height: 46px;
  padding: 0 12px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2c3540;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.headerTop .real-menu>.nav-item>.nav-link::after {
  border: 0;
  margin: 0;
}

.headerTop .real-menu>.nav-item>.nav-link::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.headerTop .real-menu>.nav-item>.nav-link:hover,
.headerTop .real-menu>.nav-item>.nav-link:focus,
.headerTop .real-menu>.nav-item>.nav-link.show {
  color: var(--coral);
  background: var(--peach);
  transform: translateY(-1px);
}

.headerTop .real-menu>.nav-item>.nav-link:hover::before,
.headerTop .real-menu>.nav-item>.nav-link.show::before {
  transform: scaleX(1);
}

.headerTop .mm-caret {
  font-size: 11px;
  transition: transform .25s ease;
}

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

.headerTop .dropdown-menu {
  border: 1px solid #e6e9ed;
  box-shadow: 0 22px 65px rgba(40, 50, 60, .12);
}

.headerTop .mega-menu {
  position: fixed !important;
  left: 18px !important;
  right: 18px !important;
  top: 78px !important;
  max-width: 1460px;
  margin: 0 auto !important;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  transform: none !important;
}

.headerTop .mm-row {
  max-height: 620px;
  overflow-y: auto;
}

.headerTop .mm-col {
  padding: 6px;
}

.headerTop .mega-menu-column {
  height: 100%;
  padding: 14px;
  border-radius: 14px;
  background: #fbfbfd;
  border: 1px solid #eceef2;
}

.headerTop .mega-menu-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.headerTop .mega-menu-title .nav-link {
  padding: 0;
  color: var(--ink);
}

.headerTop .mm-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  background: var(--peach);
}

.headerTop .mega-menu ul,
.headerTop .mm-simple {
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerTop .mm-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
}

.headerTop .mm-list-1 {
  display: grid;
  gap: 2px;
}

.headerTop .mega-menu .nav-link,
.headerTop .mm-simple .nav-link {
  padding: 7px 8px;
  border-radius: 8px;
  color: #59626c;
  font-size: 12px;
  line-height: 1.35;
  transition: background-color .2s ease, color .2s ease, padding-left .2s ease;
}

.headerTop .mega-menu .nav-link:hover,
.headerTop .mega-menu .nav-link.active,
.headerTop .mm-simple .nav-link:hover {
  color: var(--coral);
  background: var(--peach);
  padding-left: 12px;
}

.headerTop .mm-simple {
  min-width: 310px;
  padding: 10px;
  border-radius: 14px;
  background: #ffffff;
}

.headerTop .navbar-toggler {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #d9dde2;
  border-radius: 12px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
}

.headerTop .navbar-toggler i {
  font-size: 25px;
}

.headerTop .mitem {
  display: none;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .headerTop .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .gix-logo-plate {
    min-width: 198px;
  }

  .gix-logo-plate img {
    width: 178px;
  }

  .headerTop .real-menu>.nav-item>.nav-link {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .headerTop .navbar {
    min-height: 72px;
    padding: 7px 10px;
  }

  .gix-logo-plate {
    min-width: 196px;
    min-height: 50px;
    padding: 5px 12px;
  }

  .gix-logo-plate img {
    width: 176px;
    height: 36px;
  }

  .headerTop .navbar-collapse {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 78px;
    height: 550px;
    padding: 58px 12px 16px;
    overflow-y: auto;
    border: 1px solid #e2e6ea;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(39, 48, 58, .16);
  }

  .headerTop .navbar-collapse.collapsing {
    height: 550px;
    transition: opacity .22s ease;
  }

  .headerTop .navbar-collapse.show~.main-menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .headerTop .mitem {
    position: absolute;
    right: 12px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .headerTop .vijayMenu>.d-flex {
    display: block !important;
  }

  .headerTop .real-menu {
    align-items: stretch;
    gap: 4px;
  }

  .headerTop .real-menu>.nav-item>.nav-link {
    min-height: 48px;
    padding: 0 13px;
    font-size: 14px;
    border: 1px solid #edf0f2;
    background: #ffffff;
  }

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

  .headerTop .mega-menu .container-fluid {
    padding: 0;
  }

  .headerTop .mm-row {
    max-height: none;
    overflow: visible;
  }

  .headerTop .mega-menu-column {
    padding: 10px;
  }

  .headerTop .mm-list {
    grid-template-columns: 1fr;
  }

  .headerTop .mega-menu .nav-link,
  .headerTop .mm-simple .nav-link {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .gix-logo-plate {
    min-width: 172px;
  }

  .gix-logo-plate img {
    width: 154px;
  }
}

/* ========================= HERO ========================= */
.hero-section {
  /* min-height: 720px; */
  padding: 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 190, 154, .36) 0, rgba(255, 190, 154, 0) 300px),
    radial-gradient(circle at 88% 40%, rgba(102, 87, 232, .12) 0, rgba(102, 87, 232, 0) 340px),
    linear-gradient(135deg, #fffdfb 0%, #fff4ec 50%, #f8f6ff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23, 33, 43, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 33, 43, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .65), transparent 82%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px dashed rgba(102, 87, 232, .2);
  border-radius: 50%;
  pointer-events: none;
  animation: orbitSpin 24s linear infinite;
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
  right: -170px;
  top: 35px;
}

.hero-orbit-two {
  width: 300px;
  height: 300px;
  left: -150px;
  bottom: 30px;
  animation-direction: reverse;
}

@keyframes orbitSpin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 62px;
}

.hero-eyebrow {
  padding: 10px 14px;
  border: 1px solid #e5dcd6;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 10px 24px rgba(81, 61, 44, .06);
}

.hero-copy h1 {
  margin: 12px 0 20px;
  max-width: 700px;
  font-size: 70px;
  line-height: .98;
  font-weight: 850;
  letter-spacing: -3.6px;
}

.hero-word {
  display: inline-block;
  color: var(--coral);
  position: relative;
  z-index: 1;
}

.hero-word::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 4px;
  height: 18px;
  border-radius: 4px;
  background: #ffd2bd;
  transform: rotate(-1.5deg);
  z-index: -1;
  animation: underlinePulse 2.8s ease-in-out infinite;
}

@keyframes underlinePulse {

  0%,
  100% {
    transform: rotate(-1.5deg) scaleX(.96);
  }

  50% {
    transform: rotate(-1.5deg) scaleX(1.04);
  }
}

.hero-copy>p {
  max-width: 680px;
  margin: 0 0 13px;
  color: #59636e;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
  max-width: 650px;
}

.hero-proof-row>div {
  min-height: 82px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(23, 33, 43, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
  position: relative;
  overflow: hidden;
}

.hero-proof-row>div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--coral);
  transform: scaleY(.3);
  transform-origin: top;
  transition: transform .35s ease;
}

.hero-proof-row>div:hover::before {
  transform: scaleY(1);
}

.hero-proof-row strong,
.hero-proof-row span {
  display: block;
}

.hero-proof-row strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
}

.hero-proof-row span {
  margin-top: 6px;
  color: #77808a;
  font-size: 11px;
  line-height: 1.35;
}

.hero-lab {
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 1200px;
  z-index: 2;
}

.hero-lab-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(102, 87, 232, .22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 510px;
  height: 510px;
}

.ring-b {
  width: 430px;
  height: 430px;
  border-style: dashed;
  animation: orbitSpin 17s linear infinite;
}

.browser-shell {
  width: 510px;
  max-width: 100%;
  min-height: 450px;
  border: 1px solid rgba(23, 33, 43, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 32px 75px rgba(68, 54, 43, .14);
  overflow: hidden;
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
  transition: transform .25s ease;
  backdrop-filter: blur(12px);
}

.browser-shell::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -60px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(255, 92, 58, .12);
  filter: blur(4px);
}

.browser-bar {
  height: 54px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 70px 1fr 24px;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #eceef1;
  background: #ffffff;
}

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

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffd9cb;
}

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

.browser-dots span:nth-child(3) {
  background: #c8f3de;
}

.browser-address {
  height: 30px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #7b848d;
  background: #f7f8fa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
}

.browser-bar>i {
  color: var(--green);
}

.browser-body {
  padding: 22px;
  position: relative;
  z-index: 2;
}

.build-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #6f7882;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.build-label i {
  color: var(--violet);
  font-size: 16px;
}

.build-label b {
  margin-left: auto;
  padding: 5px 8px;
  border-radius: 7px;
  color: var(--green);
  background: var(--mint);
  font-size: 9px;
  letter-spacing: 1px;
}

.code-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 90px) 74px;
  gap: 10px;
}

.code-panel {
  border: 1px solid #e4e7eb;
  border-radius: 15px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.code-panel-main {
  grid-row: span 2;
  padding: 20px;
  background: linear-gradient(145deg, #fffaf7 0%, #ffffff 100%);
}

.code-no {
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.code-panel-main h2 {
  margin: 8px 0 8px;
  font-size: 26px;
  line-height: 1;
  font-weight: 850;
}

.code-panel-main p {
  margin: 0;
  max-width: 210px;
  color: #69727c;
  font-size: 12px;
  line-height: 1.55;
}

.code-lines {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: grid;
  gap: 7px;
}

.code-lines span {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: #f0ece9;
  position: relative;
  overflow: hidden;
}

.code-lines span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 62%;
  border-radius: inherit;
  background: #ffb697;
  transform: translateX(-110%);
  animation: codeRun 3.2s ease-in-out infinite;
}

.code-lines span:nth-child(2)::after {
  width: 80%;
  animation-delay: .3s;
}

.code-lines span:nth-child(3)::after {
  width: 48%;
  animation-delay: .6s;
}

.code-lines span:nth-child(4)::after {
  width: 72%;
  animation-delay: .9s;
}

@keyframes codeRun {

  0%,
  15% {
    transform: translateX(-110%);
  }

  55%,
  100% {
    transform: translateX(175%);
  }
}

.mini-panel {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5b6570;
  font-size: 11px;
  font-weight: 800;
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
}

.mini-panel i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 16px;
}

.mini-panel:hover {
  transform: translateY(-4px) rotate(-1deg);
  border-color: #cfc8ff;
  background: #faf9ff;
}

.build-terminal {
  grid-column: 1 / -1;
  min-height: 54px;
  margin-top: 10px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 70px 1fr 48px;
  gap: 10px;
  align-items: center;
  border: 1px solid #e3e6e9;
  border-radius: 13px;
  color: #626b75;
  background: #fbfcfd;
  font-size: 10px;
  font-weight: 800;
}

.terminal-track {
  height: 7px;
  border-radius: 99px;
  background: #e9edf0;
  overflow: hidden;
}

.terminal-track i {
  display: block;
  width: 80%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), #ffb477);
  animation: terminalLoad 2.6s ease-in-out infinite;
}

@keyframes terminalLoad {
  0% {
    transform: translateX(-100%);
  }

  45%,
  75% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(130%);
  }
}

.build-terminal b {
  color: var(--green);
  font-size: 9px;
}

.float-chip {
  min-height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  position: absolute;
  z-index: 5;
  border: 1px solid #e1e4e8;
  border-radius: 11px;
  color: #4e5862;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 13px 30px rgba(40, 49, 58, .11);
  font-size: 11px;
  font-weight: 800;
  animation: floatChip 4s ease-in-out infinite;
}

.float-chip i {
  color: var(--coral);
}

.chip-one {
  left: -8px;
  top: 95px;
}

.chip-two {
  right: -4px;
  bottom: 90px;
  animation-delay: .7s;
}

.chip-three {
  left: 60px;
  bottom: 28px;
  animation-delay: 1.4s;
}

@keyframes floatChip {

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

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

.tech-marquee-wrap {
  height: 60px;
  margin-top: 6px;
  overflow: hidden;
  border-top: 1px solid rgba(23, 33, 43, .08);
  border-bottom: 1px solid rgba(23, 33, 43, .08);
  background: rgba(255, 255, 255, .62);
  position: relative;
  z-index: 4;
}

.tech-marquee-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: marqueeLeft 26s linear infinite;
}

.tech-marquee-track span {
  color: #56606b;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.tech-marquee-track i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--coral);
  transform: rotate(45deg);
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1199px) {
  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-lab {
    min-height: 540px;
  }

  .browser-shell {
    width: 460px;
  }

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

  .ring-b {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 46px;
  }

  .hero-copy {
    padding-bottom: 16px;
  }

  .hero-copy h1 {
    max-width: 780px;
    font-size: 56px;
  }

  .hero-lab {
    min-height: 520px;
  }

  .browser-shell {
    width: 560px;
  }

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

  .ring-b {
    width: 440px;
    height: 440px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 0;
    padding-top: 28px;
  }

  .hero-copy h1 {
    margin-top: 8px;
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -2px;
  }

  .hero-copy>p {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gix-btn {
    width: 100%;
  }

  .hero-proof-row {
    grid-template-columns: 1fr;
  }

  .hero-proof-row>div {
    min-height: 68px;
  }

  .hero-lab {
    min-height: 460px;
  }

  .browser-shell {
    min-height: 400px;
    border-radius: 18px;
  }

  .browser-body {
    padding: 14px;
  }

  .code-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 130px 70px 70px;
  }

  .code-panel-main {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 14px;
  }

  .code-lines {
    display: none;
  }

  .code-panel-main p {
    max-width: none;
  }

  .mini-panel {
    padding: 10px;
  }

  .mini-panel i {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .build-terminal {
    grid-template-columns: 55px 1fr 40px;
  }

  .ring-a {
    width: 390px;
    height: 390px;
  }

  .ring-b {
    width: 330px;
    height: 330px;
  }

  .float-chip {
    min-height: 34px;
    padding: 0 9px;
    font-size: 9px;
  }

  .chip-one {
    left: 0;
    top: 52px;
  }

  .chip-two {
    right: 0;
    bottom: 48px;
  }

  .chip-three {
    left: 18px;
    bottom: 4px;
  }

  .tech-marquee-wrap {
    height: 48px;
  }
}

/* ========================= SERVICES ========================= */
.services-section {
  background: #ffffff;
}

.service-card {
  height: 100%;
  min-height: 320px;
  padding: 26px;
  border-radius: 22px;
  background: #fbfcfd;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, background-color .35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -85px;
  bottom: -85px;
  border-radius: 50%;
  background: var(--peach-2);
  transition: width .45s ease, height .45s ease, right .45s ease, bottom .45s ease;
  z-index: 0;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-9px) rotate(-.4deg);
  box-shadow: 0 22px 45px rgba(40, 50, 60, .1);
  background: #fffdfb;
}

.service-card:hover::after {
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -130px;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  background: var(--peach);
  font-size: 22px;
  box-shadow: inset 0 0 0 1px #ffdbc9;
  transition: transform .35s ease, border-radius .35s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);
  border-radius: 50%;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.service-card p,
.service-includes {
  color: #68717b;
  font-size: 13px;
  line-height: 1.72;
}

.service-card p {
  margin: 0;
}

.service-includes {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #d8dde2;
}

.service-includes strong {
  color: var(--ink);
}

.service-index {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #c3c9cf;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

@media (max-width: 767px) {
  .service-card {
    min-height: 0;
    padding: 21px;
    border-radius: 18px;
  }

  .service-icon {
    margin-bottom: 16px;
  }

  .service-card h3 {
    font-size: 19px;
  }
}

/* ========================= WHY CHOOSE ========================= */
.why-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff7f1 0%, #fffdfa 55%, #ffffff 100%);
}

.why-stack {
  display: grid;
  gap: 10px;
}

.why-row {
  min-height: 126px;
  padding: 24px;
  display: grid;
  grid-template-columns: 48px 56px 1fr;
  gap: 20px;
  align-items: start;
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.why-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--coral);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s ease;
}

.why-row:hover {
  transform: translateX(10px);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(58, 47, 39, .08);
}

.why-row:hover::after {
  transform: scaleY(1);
}

.why-number {
  color: #b7bec5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  background: var(--violet-soft);
  font-size: 20px;
}

.why-row h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.why-row p {
  margin: 0;
  color: #68717b;
  font-size: 13px;
  line-height: 1.72;
}

.compare-wrap {
  margin-top: 38px;
  padding: 28px;
  border: 1px solid #e3e6e9;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(50, 58, 67, .07);
}

.compare-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.compare-head span {
  padding: 8px 11px;
  border-radius: 9px;
  color: #85543b;
  background: #fff0e6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.compare-head h3 {
  margin: 0;
  max-width: 700px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 850;
}

.gix-compare-table {
  min-width: 780px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 7px;
}

.gix-compare-table thead th {
  padding: 13px 15px;
  border: 0;
  color: #7a838d;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gix-compare-table tbody th,
.gix-compare-table tbody td {
  padding: 14px 15px;
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
  background: #fbfcfd;
  color: #606a74;
  font-size: 12px;
}

.gix-compare-table tbody th {
  color: var(--ink);
  font-weight: 800;
  border-left: 1px solid #edf0f2;
  border-radius: 10px 0 0 10px;
}

.gix-compare-table tbody td:last-child {
  color: var(--ink);
  font-weight: 800;
  background: #fff5ef;
  border-right: 1px solid #edf0f2;
  border-radius: 0 10px 10px 0;
}

.compare-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  color: #626c76;
  background: #fffaf7;
  font-size: 13px;
  line-height: 1.7;
}

.across-wrap {
  margin-top: 38px;
  padding: 32px;
  border-radius: 28px;
  background: #f4f1ff;
  position: relative;
  overflow: hidden;
}

.across-wrap::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  left: -110px;
  bottom: -110px;
  border-radius: 50%;
  border: 30px solid rgba(102, 87, 232, .08);
}

.across-wrap .row {
  position: relative;
  z-index: 2;
}

.across-card {
  height: 100%;
  min-height: 240px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.across-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px rgba(76, 65, 133, .1);
}

.across-card>span {
  color: #a49cb9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.across-card>i {
  width: 43px;
  height: 43px;
  margin: 20px 0 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  background: #ebe6ff;
  font-size: 18px;
}

.across-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
}

.across-card p {
  margin: 0;
  color: #6c7480;
  font-size: 12px;
  line-height: 1.65;
}

.city-marquee {
  margin-top: 40px;
  height: 68px;
  overflow: hidden;
  border-top: 1px solid rgba(23, 33, 43, .08);
  border-bottom: 1px solid rgba(23, 33, 43, .08);
  background: rgba(255, 255, 255, .65);
}

.city-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  animation: marqueeRight 30s linear infinite;
}

.city-track span {
  color: #65707a;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.city-track i {
  color: var(--coral);
  font-size: 12px;
}

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

  to {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .why-row {
    grid-template-columns: 40px 50px 1fr;
    gap: 14px;
  }

  .compare-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .why-row {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 36px 1fr;
  }

  .why-icon {
    width: 44px;
    height: 44px;
  }

  .why-row>div:last-child {
    grid-column: 1 / -1;
  }

  .why-row:hover {
    transform: translateY(-5px);
  }

  .compare-wrap,
  .across-wrap {
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
  }

  .compare-head h3 {
    font-size: 23px;
  }

  .across-card {
    min-height: 0;
  }

  .city-marquee {
    margin-top: 24px;
    height: 54px;
  }
}

/* ========================= PROJECTS ========================= */
.projects-section {
  background: #f8fbff;
  overflow: hidden;
}

.project-nav {
  display: flex;
  gap: 8px;
}

.project-nav button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #dce2e8;
  border-radius: 14px;
  color: var(--ink);
  background: #ffffff;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.project-nav button:hover {
  transform: translateY(-4px) rotate(-3deg);
  color: #ffffff;
  background: var(--coral);
}

.project-swiper {
  overflow: visible;
  padding: 4px 0 24px;
}

.project-card {
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e1e6eb;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease;
}

.project-card:hover {
  transform: translateY(-10px) rotate(-.6deg);
  box-shadow: 0 28px 60px rgba(48, 60, 73, .13);
}

.project-image {
  height: 330px;
  margin: 10px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #eef2f6;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 37, 46, .18), transparent 48%);
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.project-image span {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  font-size: 10px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.project-copy {
  min-height: 95px;
  padding: 8px 18px 18px;
  position: relative;
}

.project-copy small {
  display: block;
  margin-bottom: 5px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0;
  padding-right: 50px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.project-copy>i {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 16px;
  top: 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  background: var(--peach);
  transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

.project-card:hover .project-copy>i {
  transform: rotate(45deg);
  color: #ffffff;
  background: var(--coral);
}

@media (max-width: 991px) {
  .project-image {
    height: 290px;
  }
}

@media (max-width: 767px) {
  .project-nav button {
    width: 44px;
    height: 44px;
  }

  .project-swiper {
    padding-bottom: 8px;
  }

  .project-card {
    border-radius: 18px;
  }

  .project-image {
    height: 245px;
    border-radius: 14px;
  }
}

/* ========================= INDUSTRIES ========================= */
.industries-section {
  background: #fffdf7;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e5e2d9;
  border-left: 1px solid #e5e2d9;
}

.industry-card {
  min-height: 285px;
  padding: 22px;
  border-right: 1px solid #e5e2d9;
  border-bottom: 1px solid #e5e2d9;
  background: rgba(255, 255, 255, .68);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -45px;
  top: -45px;
  border-radius: 50%;
  background: #ffe4d4;
  transform: scale(0);
  transition: transform .45s ease;
}

.industry-card:hover {
  z-index: 4;
  transform: translateY(-8px) scale(1.02);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(61, 57, 49, .1);
}

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

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

.industry-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f5e12;
  background: var(--yellow-soft);
  font-size: 20px;
}

.industry-card:nth-child(2n) .industry-icon {
  color: var(--violet);
  background: var(--violet-soft);
}

.industry-card:nth-child(3n) .industry-icon {
  color: var(--green);
  background: var(--mint);
}

.industry-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.industry-card p {
  margin: 0;
  color: #6d756f;
  font-size: 12px;
  line-height: 1.65;
}

.industry-card>span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: #c4c5c0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.industry-note {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px dashed #ddd6c8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
}

.industry-note i {
  color: var(--coral);
  font-size: 20px;
}

.industry-note p {
  margin: 0;
  color: #606a64;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

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

  .industry-icon {
    margin-bottom: 18px;
  }
}

/* ========================= PROCESS ========================= */
.process-section {
  background: #f7f7ff;
}

.process-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
}

.process-rail-wrap {
  min-height: 680px;
  position: relative;
}

.process-rail {
  width: 82px;
  height: 540px;
  position: sticky;
  top: 118px;
  margin: 0 auto;
}

.process-rail::before,
.process-fill {
  content: "";
  width: 4px;
  position: absolute;
  left: 39px;
  top: 14px;
  bottom: 14px;
  border-radius: 99px;
}

.process-rail::before {
  background: #dedbf7;
}

.process-fill {
  height: 0;
  bottom: auto;
  background: linear-gradient(to bottom, var(--violet), var(--coral));
  transition: height .25s ease;
}

.process-dot {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 24px;
  border: 3px solid #f7f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b879f;
  background: #e8e5fb;
  font-size: 10px;
  font-weight: 900;
  transition: transform .3s ease, background-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.process-dot.active {
  transform: scale(1.16);
  color: #ffffff;
  background: var(--violet);
  box-shadow: 0 8px 18px rgba(102, 87, 232, .26);
}

.dot-1 {
  top: 0;
}

.dot-2 {
  top: 126px;
}

.dot-3 {
  top: 252px;
}

.dot-4 {
  top: 378px;
}

.dot-5 {
  top: 504px;
}

.process-day {
  width: 98px;
  height: 98px;
  margin: 15px 0;
  border: 1px solid #dcd8f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--violet);
  background: #ffffff;
}

.process-day strong {
  font-size: 28px;
  line-height: 1;
}

.process-day span {
  margin-top: 3px;
  color: #77718f;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 24px solid rgba(102, 87, 232, .06);
  transition: transform .45s ease;
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px rgba(77, 70, 121, .09);
}

.process-card:hover::after {
  transform: scale(1.15) rotate(20deg);
}

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

.process-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.process-meta span,
.process-meta b {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.process-meta span {
  color: var(--violet);
}

.process-meta b {
  padding: 7px 9px;
  border-radius: 8px;
  color: #7b6685;
  background: #fff0f4;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 850;
}

.process-card>p {
  margin: 0;
  max-width: 900px;
  color: #68717b;
  font-size: 14px;
  line-height: 1.75;
}

.process-output {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid #e5e2f2;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #faf9ff;
}

.process-output i {
  margin-top: 2px;
  color: var(--green);
}

.process-output p {
  margin: 0;
  color: #68667a;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .process-layout {
    grid-template-columns: 100px 1fr;
    gap: 18px;
  }

  .process-rail-wrap {
    min-height: 620px;
  }
}

@media (max-width: 767px) {
  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-rail-wrap {
    min-height: 80px;
  }

  .process-rail {
    width: 100%;
    height: 44px;
    position: relative;
    top: auto;
    margin: 0;
  }

  .process-rail::before,
  .process-fill {
    height: 4px;
    width: auto;
    left: 16px;
    right: 16px;
    top: 20px;
    bottom: auto;
  }

  .process-fill {
    width: 0;
    right: auto;
    transition: width .25s ease;
  }

  .process-dot {
    top: 5px !important;
    left: auto;
  }

  .dot-1 {
    left: 0;
  }

  .dot-2 {
    left: 22%;
  }

  .dot-3 {
    left: 45%;
  }

  .dot-4 {
    left: 68%;
  }

  .dot-5 {
    right: 0;
  }

  .process-day {
    display: none;
  }

  .process-card {
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
  }

  .process-card h3 {
    font-size: 23px;
  }
}

/* ========================= PRICING ========================= */
.pricing-section {
  background: #ffffff;
}

.price-card {
  height: 100%;
  min-height: 330px;
  padding: 24px;
  border-radius: 22px;
  background: #fff9f5;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease;
}

.price-card:nth-child(2n) {
  background: #f7f5ff;
}

.price-card::after {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  border: 18px solid rgba(255, 92, 58, .08);
  transition: transform .45s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(56, 59, 64, .11);
}

.price-card:hover::after {
  transform: scale(1.5) rotate(30deg);
}

.price-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  background: #ffe7db;
  font-size: 21px;
}

.price-card>span {
  display: block;
  margin-bottom: 10px;
  color: #767f88;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 29px;
  line-height: 1.05;
  font-weight: 850;
}

.price-card h3 small {
  display: block;
  margin-top: 6px;
  color: #737b84;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.price-card p {
  margin: 0;
  color: #68717b;
  font-size: 13px;
  line-height: 1.65;
}

.price-card>a {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
}

.price-card>a i {
  transition: transform .25s ease;
}

.price-card>a:hover i {
  transform: translate(3px, -3px);
}

@media (max-width: 767px) {
  .price-card {
    min-height: 290px;
    padding: 20px;
  }

  .price-card>a {
    left: 20px;
  }
}



/* ========================= REVIEWS ========================= */
.reviews-section {
  background: #fffaf3;
}

.review-platform-card {
  height: 100%;
  min-height: 250px;
  padding: 22px;
  border-radius: 20px;
  display: block;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.review-platform-card::after {
  content: "↗";
  position: absolute;
  right: -10px;
  bottom: -28px;
  color: #fff0e7;
  font-size: 110px;
  line-height: 1;
  font-weight: 800;
  transition: transform .45s ease, color .45s ease;
}

.review-platform-card:hover {
  transform: translateY(-8px) rotate(-.5deg);
  box-shadow: 0 20px 45px rgba(71, 57, 47, .1);
}

.review-platform-card:hover::after {
  transform: translate(-8px, -8px) rotate(10deg);
  color: #ffe4d6;
}

.review-platform-card>span {
  color: #c1b7af;
  font-size: 10px;
  font-weight: 900;
}

.review-icon {
  width: 48px;
  height: 48px;
  margin: 26px 0 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  background: var(--peach);
  font-size: 20px;
}

.review-platform-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 850;
}

.review-platform-card p {
  margin: 0 0 18px;
  color: #6e747b;
  font-size: 12px;
  line-height: 1.6;
}

.review-platform-card b {
  position: relative;
  z-index: 2;
  color: var(--coral);
  font-size: 11px;
}

@media (max-width: 767px) {
  .review-platform-card {
    min-height: 220px;
    padding: 20px;
  }
}

/* ========================= FAQ ========================= */
.faq-section {
  background: #ffffff;
}

.faq-sticky {
  position: sticky;
  top: 110px;
}

.faq-sticky h2 {
  max-width: 360px;
}

.faq-badge {
  margin-top: 24px;
  padding: 14px;
  border: 1px solid #e4e7eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #69727b;
  background: #fafbfc;
  font-size: 12px;
  font-weight: 750;
}

.faq-badge i {
  color: var(--violet);
  font-size: 20px;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-accordion .accordion-item {
  border: 0;
  border-radius: 16px;
  background: #f8f9fb;
  overflow: hidden;
  position: relative;
}

.faq-accordion .accordion-button {
  min-height: 72px;
  padding: 15px 18px;
  border: 0;
  gap: 14px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.faq-accordion .accordion-button span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #81788f;
  background: #eeeaf9;
  font-size: 9px;
  font-weight: 900;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #3f366c;
  background: #f3f0ff;
}

.faq-accordion .accordion-button:not(.collapsed) span {
  color: #ffffff;
  background: var(--violet);
}

.faq-accordion .accordion-button::after {
  width: 32px;
  height: 32px;
  margin-left: auto;
  border-radius: 10px;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "+";
  color: var(--coral);
  background-color: #ffffff;
  font-size: 22px;
  line-height: 1;
  transform: none;
  text-align: center;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  color: #ffffff;
  background-color: var(--coral);
}

.faq-accordion .accordion-body {
  padding: 0 66px 20px;
  color: #68717b;
  font-size: 13px;
  line-height: 1.75;
}

@media (max-width: 991px) {
  .faq-sticky {
    position: relative;
    top: auto;
    margin-bottom: 8px;
  }

  .faq-sticky h2 {
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  .faq-accordion .accordion-button {
    min-height: 66px;
    padding: 13px;
    gap: 10px;
    font-size: 13px;
  }

  .faq-accordion .accordion-button span {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

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

/* ========================= QUOTE ========================= */
.quote-section {
  background: linear-gradient(135deg, #fff5ed 0%, #f6f3ff 100%);
}

.quote-shell {
  padding: 12px;
  border: 1px solid rgba(23, 33, 43, .11);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 28px 65px rgba(55, 51, 48, .09);
  backdrop-filter: blur(12px);
}

.quote-copy {
  height: 100%;
  padding: 30px;
  border-radius: 22px;
  background: #fffaf6;
  position: relative;
  overflow: hidden;
}

.quote-copy::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  bottom: -110px;
  border-radius: 50%;
  border: 30px solid #ffe8db;
}

.quote-phone {
  width: 100%;
  max-width: 390px;
  margin-top: 28px;
  padding: 15px;
  border: 1px solid #eadfd7;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #ffffff;
  position: relative;
  z-index: 2;
  transition: transform .3s ease, box-shadow .3s ease;
}

.quote-phone:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(76, 56, 44, .09);
}

.quote-phone>i {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--coral);
}

.quote-phone span {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 850;
}

.quote-phone small {
  display: block;
  margin-bottom: 4px;
  color: #838a91;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quote-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  position: relative;
  z-index: 2;
}

.quote-facts span {
  padding: 8px 10px;
  border-radius: 9px;
  color: #5f6a64;
  background: #f4fff9;
  font-size: 10px;
  font-weight: 800;
}

.quote-facts i {
  margin-right: 4px;
  color: var(--green);
}

.quote-form {
  height: 100%;
  padding: 30px;
  border-radius: 22px;
  background: #ffffff;
}

.quote-form label {
  margin-bottom: 7px;
  color: #59636d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .4px;
}

.quote-form .form-control,
.quote-form .form-select {
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #dfe4e8;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfcfd;
  box-shadow: none;
  font-size: 13px;
}

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

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: #ffb294;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 92, 58, .08);
}

.quote-submit {
  width: 100%;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .quote-shell {
    padding: 8px;
    border-radius: 20px;
  }

  .quote-copy,
  .quote-form {
    padding: 20px;
    border-radius: 16px;
  }

  .quote-phone span {
    font-size: 16px;
  }
}

/* ========================= FOOTER ========================= */
.gix-footer {
  padding: 50px 0 24px;
  color: var(--ink);
  background: #fbfaf8;
  border-top: 1px solid #e6e2dd;
}

.gix-footer__inner {
  width: calc(100% - 40px);
  max-width: 1500px;
  margin: 0 auto;
}

.gix-footer__main-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.2fr .8fr .75fr 1.1fr;
  gap: 26px;
}

.gix-footer__brand p,
.gix-footer__office p {
  margin: 14px 0;
  color: #71777c;
  font-size: 12px;
  line-height: 1.65;
}

.gix-footer__logo {
  width: 250px;
  min-height: 66px;
  padding: 7px 12px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  background: #18212b;
}

.gix-footer__logo img {
  width: 220px;
  height: auto;
}

.gix-footer__brand-mark {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.gix-footer__brand-mark span {
  padding: 7px 9px;
  border: 1px solid #e2ded8;
  border-radius: 8px;
  color: #7d746d;
  background: #ffffff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.gix-footer__title {
  margin: 2px 0 18px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .2px;
}

.gix-footer__office {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed #ddd9d3;
}

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

.gix-footer__office h3 {
  margin: 0 0 7px;
  color: #49525a;
  font-size: 12px;
  font-weight: 850;
}

.gix-footer__office a,
.gix-footer__links a,
.gix-footer__sector-links a {
  color: #6b7278;
  font-size: 11px;
  transition: color .22s ease, padding-left .22s ease;
}

.gix-footer__office>a {
  display: block;
  margin-top: 4px;
}

.gix-footer__office a:hover,
.gix-footer__links a:hover,
.gix-footer__sector-links a:hover {
  color: var(--coral);
}

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

.gix-footer__links li {
  padding: 8px 0;
  border-bottom: 1px solid #efede9;
}

.gix-footer__links a:hover {
  padding-left: 5px;
}

.gix-footer__sector-links {
  display: grid;
  gap: 9px;
}

.gix-footer__sector-links li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 7px;
  align-items: start;
}

.gix-footer__sector-links i {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  background: #fff0e8;
  font-size: 11px;
}

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

.gix-footer__reviews {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e4e0db;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gix-footer__review-card {
  min-height: 82px;
  padding: 12px;
  border: 1px solid #e4e1dd;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 70px 1fr 18px;
  gap: 10px;
  align-items: center;
  background: #ffffff;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.gix-footer__review-card:hover {
  transform: translateY(-5px);
  border-color: #ffcdb8;
  box-shadow: 0 13px 28px rgba(60, 53, 47, .08);
}

.gix-footer__review-card img {
  max-width: 68px;
  max-height: 38px;
  object-fit: contain;
}

.gix-footer__review-card span {
  color: #666e75;
  font-size: 10px;
  font-weight: 800;
}

.gix-footer__review-card i {
  color: var(--coral);
  font-size: 12px;
}

.gix-footer__bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e4e0db;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
}

.gix-footer__bottom p {
  margin: 0;
  color: #80858a;
  font-size: 10px;
}

.gix-footer__legal,
.gix-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gix-footer__legal a {
  color: #747a80;
  font-size: 10px;
}

.gix-footer__legal a:hover {
  color: var(--coral);
}

.gix-footer__social a {
  width: 34px;
  height: 34px;
  border: 1px solid #e1ddd8;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #596269;
  background: #ffffff;
  transition: transform .25s ease, color .25s ease, border-color .25s ease;
}

.gix-footer__social a:hover {
  transform: translateY(-4px) rotate(-4deg);
  color: var(--coral);
  border-color: #ffc7ad;
}

@media (max-width: 1199px) {
  .gix-footer__main-grid {
    grid-template-columns: 1.2fr 1.2fr 1fr;
  }
}

@media (max-width: 991px) {
  .gix-footer__main-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gix-footer__reviews {
    grid-template-columns: 1fr 1fr;
  }

  .gix-footer__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .gix-footer {
    padding: 20px 0;
  }

  .gix-footer__inner {
    width: calc(100% - 24px);
  }

  .gix-footer__main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gix-footer__reviews {
    grid-template-columns: 1fr;
  }

  .gix-footer__review-card {
    min-height: 70px;
  }

  .gix-footer__legal,
  .gix-footer__social {
    flex-wrap: wrap;
  }
}

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

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

/* =========================================
   DESKTOP SCROLLED HEADER - EXPAND ON HOVER
   ========================================= */
@media (min-width: 992px) {

  .headerTop.is-scrolled:hover {
    padding: 6px 14px;
    /* background: #fff8f2; */
    box-shadow: none;
  }

  .headerTop.is-scrolled:hover .gix-reference-nav {
    min-height: 70px;
    padding: 6px 7px;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(52, 67, 82, .10),
                0 2px 0 rgba(23, 33, 43, .06);
  }

  .headerTop.is-scrolled:hover .navbar-brand {
    margin-right: 34px;
  }

  .headerTop.is-scrolled:hover .gix-logo-plate-v2 {
    min-width: 236px;
    min-height: 68px;
    padding: 10px 16px;
    border-radius: 17px;
  }

  .headerTop.is-scrolled:hover .gix-logo-plate-v2 img {
    width: 210px;
    height: 42px;
  }

  .headerTop.is-scrolled:hover .real-menu {
    gap: 8px;
  }

  .headerTop.is-scrolled:hover .real-menu > .nav-item > .gix-icon-link {
    width: 104px;
    min-height: 60px;
    padding: 8px 5px 6px;
    gap: 5px;
    border-radius: 12px;
  }

  .headerTop.is-scrolled:hover .gix-nav-label {
    max-height: 22px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .headerTop.is-scrolled:hover .gix-nav-icon {
    font-size: 25px;
  }

  .headerTop.is-scrolled:hover .gix-icon-link .mm-caret {
    right: 10px;
    top: 11px;
    font-size: 9px;
  }

  .headerTop.is-scrolled:hover
  .real-menu > .nav-item > .gix-icon-link::before {
    left: 28px;
    right: 28px;
    bottom: -2px;
  }

  .headerTop.is-scrolled:hover .gix-call-item {
    margin-left: 10px;
  }

  .headerTop.is-scrolled:hover .gix-header-call {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }

  /* Mega menu bhi expanded navbar ke niche hi open ho */
  .headerTop.is-scrolled:hover .mega-menu {
    top: 70px !important;
  }

  .headerTop.is-scrolled:hover .mm-simple {
    margin-top: 12px !important;
  }
}