/* Branded preloader — hex mark + orbit rings */
.preloader {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #0b1220 !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow: hidden;
}

.preloader.preloader--hiding {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.preloader.preloader--hidden,
.preloader[hidden] {
  display: none !important;
}

/* Kill template `.preloader span` full-bleed rules on leftover markup */
.preloader > span {
  display: none !important;
}

.preloader__stage {
  position: relative !important;
  width: 120px !important;
  height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  z-index: 1;
  margin: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

.preloader__glow {
  position: absolute !important;
  inset: -36px !important;
  top: -36px !important;
  right: -36px !important;
  bottom: -36px !important;
  left: -36px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle, rgba(32, 223, 227, 0.3) 0%, transparent 62%),
    radial-gradient(circle at 70% 35%, rgba(123, 97, 255, 0.26) 0%, transparent 58%) !important;
  background-image:
    radial-gradient(circle, rgba(32, 223, 227, 0.3) 0%, transparent 62%),
    radial-gradient(circle at 70% 35%, rgba(123, 97, 255, 0.26) 0%, transparent 58%) !important;
  -webkit-animation: bytelyPreloaderGlow 2.2s ease-in-out infinite !important;
  animation: bytelyPreloaderGlow 2.2s ease-in-out infinite !important;
  pointer-events: none !important;
}

.preloader__ring {
  position: absolute !important;
  border-radius: 50% !important;
  border-style: solid !important;
  border-color: transparent !important;
  box-sizing: border-box !important;
  pointer-events: none !important;
  will-change: transform;
  background: none !important;
  background-image: none !important;
  width: auto !important;
  height: auto !important;
}

.preloader__ring--outer {
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  border-width: 2.5px !important;
  border-top-color: #20dfe3 !important;
  border-right-color: #7b61ff !important;
  -webkit-animation: bytelyPreloaderSpin 0.9s linear infinite !important;
  animation: bytelyPreloaderSpin 0.9s linear infinite !important;
}

.preloader__ring--inner {
  inset: 16px !important;
  top: 16px !important;
  right: 16px !important;
  bottom: 16px !important;
  left: 16px !important;
  border-width: 2px !important;
  border-bottom-color: #5538f4 !important;
  border-left-color: #20dfe3 !important;
  opacity: 0.9;
  -webkit-animation: bytelyPreloaderSpin 1.35s linear infinite reverse !important;
  animation: bytelyPreloaderSpin 1.35s linear infinite reverse !important;
}

.preloader__mark {
  position: relative !important;
  z-index: 2 !important;
  width: 58px !important;
  height: 58px !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  background: transparent url(../images/resources/preloader.png) center center / contain no-repeat !important;
  background-image: url(../images/resources/preloader.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  -webkit-animation: bytelyPreloaderPulse 1.4s ease-in-out infinite !important;
  animation: bytelyPreloaderPulse 1.4s ease-in-out infinite !important;
  will-change: transform, filter;
}

@-webkit-keyframes bytelyPreloaderSpin {
  from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes bytelyPreloaderSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@-webkit-keyframes bytelyPreloaderPulse {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(32, 223, 227, 0.35));
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    filter: drop-shadow(0 0 18px rgba(123, 97, 255, 0.55));
  }
}

@keyframes bytelyPreloaderPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(32, 223, 227, 0.35));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 18px rgba(123, 97, 255, 0.55));
  }
}

@-webkit-keyframes bytelyPreloaderGlow {
  0%, 100% { opacity: 0.45; -webkit-transform: scale(0.9); transform: scale(0.9); }
  50% { opacity: 1; -webkit-transform: scale(1.12); transform: scale(1.12); }
}

@keyframes bytelyPreloaderGlow {
  0%, 100% { opacity: 0.45; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 767px) {
  .preloader__stage {
    width: 96px !important;
    height: 96px !important;
  }

  .preloader__mark {
    width: 46px !important;
    height: 46px !important;
  }

  .preloader__ring--inner {
    inset: 12px !important;
    top: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
  }
}

.site-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
}
.site-logo-img--footer {
  height: 36px;
  max-width: 180px;
}
.logo-box .navbar-brand {
  display: inline-flex;
  align-items: center;
}
/* Growth Framework section — clear card grid on soft surface */
.bytely-framework {
  background:
    radial-gradient(900px 320px at 8% 0%, rgba(32, 223, 227, 0.1), transparent 55%),
    radial-gradient(800px 300px at 92% 20%, rgba(85, 56, 244, 0.1), transparent 50%),
    #f4f7fb;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.bytely-framework__intro {
  max-width: 640px;
  margin: 0 auto 48px;
}

.bytely-framework__intro .block-title__text {
  margin-left: auto;
  margin-right: auto;
}

.bytely-framework__intro .team-one__block-btn {
  margin-top: 8px;
}

.bytely-framework__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.bytely-framework__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(22, 35, 58, 0.06);
  border-radius: 16px;
  padding: 28px 18px 26px;
  box-shadow: 0 14px 36px rgba(11, 18, 32, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 100%;
  cursor: default;
}

.bytely-framework__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(85, 56, 244, 0.14);
  border-color: rgba(32, 223, 227, 0.35);
}

.bytely-framework__num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #5538f4;
  background: linear-gradient(135deg, rgba(32, 223, 227, 0.18), rgba(85, 56, 244, 0.18));
}

.bytely-framework__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: #20dfe3;
  background: linear-gradient(145deg, #0b1220 0%, #16233a 100%);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.18);
  transition: transform 0.3s ease, color 0.3s ease;
}

.bytely-framework__card:hover .bytely-framework__icon {
  transform: translateY(-2px) scale(1.04);
  color: #7b61ff;
}

.bytely-framework__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1c2433;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.bytely-framework__card:hover .bytely-framework__title {
  color: #5538f4;
}

.bytely-framework__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #5b6472;
}

@media (max-width: 1199px) {
  .bytely-framework__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bytely-framework {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .bytely-framework__intro {
    margin-bottom: 32px;
  }

  .bytely-framework__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Approach list — icon markers instead of grey dots */
.about-one__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0 !important;
  margin-top: 14px !important;
  line-height: 1.45;
}

.about-one__list-item:before {
  display: none !important;
}

.about-one__list-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(32, 223, 227, 0.16), rgba(85, 56, 244, 0.16));
  color: #5538f4;
  font-size: 15px;
  line-height: 1;
}

.about-one__list-copy {
  flex: 1 1 auto;
  padding-top: 6px;
}

/* Soft accent wash (cyan → violet) — reusable section background */
.bytely-accent-bg {
  position: relative;
  overflow: hidden;
  background-color: #eef6fb;
  background-image:
    radial-gradient(ellipse 72% 58% at 8% 18%, rgba(32, 223, 227, 0.32), transparent 62%),
    radial-gradient(ellipse 68% 52% at 92% 22%, rgba(123, 97, 255, 0.26), transparent 60%),
    radial-gradient(ellipse 58% 48% at 48% 100%, rgba(85, 56, 244, 0.16), transparent 58%),
    radial-gradient(ellipse 42% 38% at 72% 68%, rgba(32, 223, 227, 0.14), transparent 55%),
    radial-gradient(ellipse 36% 32% at 28% 78%, rgba(123, 97, 255, 0.12), transparent 52%),
    linear-gradient(168deg, #f3fbfd 0%, #eef1ff 42%, #f6f8fc 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bytely-accent-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(32, 223, 227, 0.14) 26%,
    rgba(123, 97, 255, 0.16) 48%,
    rgba(85, 56, 244, 0.12) 66%,
    transparent 100%
  );
  background-size: 240% 100%;
  -webkit-animation: bytelyServicesSheen 16s ease-in-out infinite;
  animation: bytelyServicesSheen 16s ease-in-out infinite;
}

.bytely-accent-bg > .container,
.bytely-accent-bg > .container-fluid {
  position: relative;
  z-index: 1;
}

.service-one.bytely-accent-bg .service-one__single {
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(85, 56, 244, 0.08);
}

/* Services listing page — drop homepage overlap offsets */
.service-one.service-one__service-page {
  margin-top: 0;
  padding-top: 110px;
  padding-bottom: 100px;
}

.service-one.service-one__service-page > .container > hr.style-one {
  display: none;
}

@-webkit-keyframes bytelyServicesSheen {
  0%,
  100% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
}

@keyframes bytelyServicesSheen {
  0%,
  100% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bytely-accent-bg::before {
    -webkit-animation: none;
    animation: none;
    background-position: 40% 50%;
  }
}

/* Service cards — equal height, gaps, rounded, link fits inside */
.service-one .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  align-items: stretch;
}

.service-one__single {
  border-radius: 16px !important;
  overflow: hidden;
  width: 100%;
  flex: 1 1 auto;
  height: auto !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 36px !important;
  box-sizing: border-box;
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
}

a.service-one__single:hover,
a.service-one__single:focus,
a.service-one__single:focus-visible {
  text-decoration: none !important;
  color: inherit;
}

a.service-one__single:focus-visible {
  outline: 2px solid #20dfe3;
  outline-offset: 3px;
}

.service-one__media {
  position: relative;
  z-index: 2;
  width: calc(100% + 110px);
  margin: 0 -55px 26px;
  height: 150px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #1a1840;
}

.service-one__media img {
  display: block;
  width: 100%;
  height: 200%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
}

.service-one__single:hover .service-one__media img,
.service-one__single:focus-within .service-one__media img {
  -webkit-transform: translateY(-25%) scale(1.04);
  transform: translateY(-25%) scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .service-one__media img,
  .service-one__single:hover .service-one__media img,
  .service-one__single:focus-within .service-one__media img {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
  }
}

.service-one__single.hvr-bounce-to-bottom::before,
.service-one__single::before {
  border-radius: 0 0 16px 16px !important;
  top: 150px !important;
  height: calc(100% - 150px) !important;
}

.service-one__icon,
.service-one__title,
.service-one__text {
  position: relative;
  z-index: 2;
}

.service-one__title {
  color: inherit;
}

a.service-one__single:hover .service-one__title,
a.service-one__single:focus .service-one__title {
  color: #fff;
}

a.service-one__single:hover .service-one__text,
a.service-one__single:focus .service-one__text {
  color: rgba(255, 255, 255, 0.92);
}

.service-one__text {
  flex: 1 1 auto;
  margin-bottom: 0 !important;
}

@media (max-width: 991px) {
  .service-one .row > [class*="col-"] {
    display: block;
    margin-bottom: 24px;
  }

  .service-one__media {
    width: calc(100% + 60px);
    margin: 0 -30px 22px;
    height: 132px;
  }

  .service-one__single.hvr-bounce-to-bottom::before,
  .service-one__single::before {
    top: 132px !important;
    height: calc(100% - 132px) !important;
  }
}

@media (max-width: 575px) {
  .service-one__media {
    height: 120px;
  }

  .service-one__single.hvr-bounce-to-bottom::before,
  .service-one__single::before {
    top: 120px !important;
    height: calc(100% - 120px) !important;
  }
}

/* CTA buttons: gradient + liquid + real bubble nodes */
.thm-btn,
button.thm-btn,
input[type="submit"].thm-btn,
.header-one__btn {
  border-radius: 16px !important;
}

.thm-btn:not(.bytely-btn--ghost),
.header-one__btn,
.banner-one__btn-white-bg,
.cta-three__btn-one {
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
  isolation: isolate;
  z-index: 0;
  border: 2px solid transparent !important;
  background-color: transparent !important;
  background-image:
    linear-gradient(115deg, #20dfe3 0%, #7b61ff 42%, #5538f4 78%, #20dfe3 100%),
    linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%) !important;
  background-repeat: no-repeat !important;
  background-origin: padding-box, border-box !important;
  background-clip: padding-box, border-box !important;
  background-size: 220% 100%, 100% 100% !important;
  background-position: 0% 50%, center center !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 10px 28px rgba(32, 223, 227, 0.22), 0 8px 22px rgba(85, 56, 244, 0.24);
  font-weight: 600;
  -webkit-animation: bytely-btn-sheen 7s linear infinite;
  animation: bytely-btn-sheen 7s linear infinite;
  transition: box-shadow 0.35s ease, transform 0.35s ease !important;
}

.thm-btn:hover,
.thm-btn:focus,
.header-one__btn:hover,
.header-one__btn:focus {
  background-color: transparent !important;
  color: #fff !important;
  -webkit-animation: none;
  animation: none;
  background-position: 100% 50%, center center !important;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(32, 223, 227, 0.3), 0 10px 26px rgba(85, 56, 244, 0.34) !important;
}

/* Liquid wave */
.thm-btn:not(.bytely-btn--ghost)::before,
.header-one__btn::before,
.banner-one__btn-white-bg::before,
.cta-three__btn-one::before {
  content: "";
  position: absolute;
  left: -30%;
  bottom: -45%;
  width: 160%;
  height: 80%;
  border-radius: 45% 50% 45% 50%;
  background: rgba(255, 255, 255, 0.28);
  -webkit-transform: translate3d(0, 120%, 0) scale(1.05);
  transform: translate3d(0, 120%, 0) scale(1.05);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.thm-btn:not(.bytely-btn--ghost):hover::before,
.thm-btn:not(.bytely-btn--ghost):focus::before,
.header-one__btn:hover::before,
.header-one__btn:focus::before,
.banner-one__btn-white-bg:hover::before,
.banner-one__btn-white-bg:focus::before,
.cta-three__btn-one:hover::before,
.cta-three__btn-one:focus::before {
  opacity: 1;
  -webkit-animation: bytely-liquid-wave 1.6s ease-in-out infinite;
  animation: bytely-liquid-wave 1.6s ease-in-out infinite;
}

/* Disable old pseudo bubble layer if any */
.thm-btn:not(.bytely-btn--ghost)::after,
.header-one__btn::after,
.banner-one__btn-white-bg::after,
.cta-three__btn-one::after {
  content: none !important;
  display: none !important;
}

/* Real bubble nodes injected by js/bytely.js */
.bytely-btn-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.thm-btn:hover .bytely-btn-bubbles,
.thm-btn:focus .bytely-btn-bubbles,
.header-one__btn:hover .bytely-btn-bubbles,
.header-one__btn:focus .bytely-btn-bubbles {
  opacity: 1;
}

.bytely-btn-bubble {
  position: absolute;
  bottom: -8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  -webkit-animation: none;
  animation: none;
  will-change: transform, opacity;
}

.thm-btn:hover .bytely-btn-bubble,
.thm-btn:focus .bytely-btn-bubble,
.header-one__btn:hover .bytely-btn-bubble,
.header-one__btn:focus .bytely-btn-bubble {
  -webkit-animation: bytely-bubble-up 1.8s linear infinite;
  animation: bytely-bubble-up 1.8s linear infinite;
}

.thm-btn > *,
.header-one__btn > *,
.thm-btn__label {
  position: relative;
  z-index: 1;
}

.bytely-btn-bubbles {
  z-index: 0;
}

@-webkit-keyframes bytely-btn-sheen {
  0% { background-position: 0% 50%, center center; }
  100% { background-position: 100% 50%, center center; }
}
@keyframes bytely-btn-sheen {
  0% { background-position: 0% 50%, center center; }
  100% { background-position: 100% 50%, center center; }
}

@-webkit-keyframes bytely-liquid-wave {
  0%, 100% {
    -webkit-transform: translate3d(0, -35%, 0) scale(1.05);
    transform: translate3d(0, -35%, 0) scale(1.05);
    border-radius: 45% 50% 45% 50%;
  }
  50% {
    -webkit-transform: translate3d(4%, -42%, 0) scale(1.08);
    transform: translate3d(4%, -42%, 0) scale(1.08);
    border-radius: 50% 42% 52% 45%;
  }
}
@keyframes bytely-liquid-wave {
  0%, 100% {
    -webkit-transform: translate3d(0, -35%, 0) scale(1.05);
    transform: translate3d(0, -35%, 0) scale(1.05);
    border-radius: 45% 50% 45% 50%;
  }
  50% {
    -webkit-transform: translate3d(4%, -42%, 0) scale(1.08);
    transform: translate3d(4%, -42%, 0) scale(1.08);
    border-radius: 50% 42% 52% 45%;
  }
}

@-webkit-keyframes bytely-bubble-up {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(0.7);
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  12% { opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, -72px, 0) scale(1);
    transform: translate3d(0, -72px, 0) scale(1);
    opacity: 0;
  }
}
@keyframes bytely-bubble-up {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(0.7);
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }
  12% { opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, -72px, 0) scale(1);
    transform: translate3d(0, -72px, 0) scale(1);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thm-btn:not(.bytely-btn--ghost),
  .header-one__btn,
  .banner-one__btn-white-bg,
  .cta-three__btn-one {
    -webkit-animation: none !important;
    animation: none !important;
  }
  .thm-btn:hover::before,
  .header-one__btn:hover::before,
  .thm-btn:hover .bytely-btn-bubble,
  .header-one__btn:hover .bytely-btn-bubble {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

/* Nav current / hover — accent gradient sheen */
.site-header .header-navigation ul.navigation-box > li.current > a,
.site-header .header-navigation ul.navigation-box > li.active > a,
.site-header .header-navigation ul.navigation-box > li:hover > a,
.stricked-menu ul.navigation-box > li.current > a,
.stricked-menu ul.navigation-box > li.active > a,
.stricked-menu ul.navigation-box > li:hover > a {
  background-image: linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  animation: bytely-footer-sheen 6s linear infinite;
}

.site-header__header-two .header-navigation ul.navigation-box > li > a {
  -webkit-text-fill-color: #fff;
}

/* Homepage overlay nav — frosted bar so logo + active link stay readable */
.home-one .site-header__header-two > .header-navigation {
  background: linear-gradient(
    180deg,
    rgba(11, 18, 32, 0.78) 0%,
    rgba(11, 18, 32, 0.55) 72%,
    rgba(11, 18, 32, 0.2) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(11, 18, 32, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-one .site-header__header-two .site-logo-img--on-dark {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 12px rgba(32, 223, 227, 0.25));
}

.home-one .site-header__header-two .header-navigation ul.navigation-box > li > a {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.home-one .site-header__header-two .header-navigation ul.navigation-box > li.current > a,
.home-one .site-header__header-two .header-navigation ul.navigation-box > li.active > a,
.home-one .site-header__header-two .header-navigation ul.navigation-box > li:hover > a {
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #20dfe3 !important;
  -webkit-text-fill-color: #20dfe3 !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55), 0 0 14px rgba(32, 223, 227, 0.35);
  animation: none !important;
}

.home-one .site-header__header-two .stricked-menu.stricky-fixed {
  border-bottom: none;
}

.site-header__header-one .header-navigation ul.navigation-box > li > a {
  -webkit-text-fill-color: #1c2433;
}

/* Scrolled sticky nav — ink + accent gradient */
.stricked-menu.stricky-fixed,
.site-header__header-one .stricked-menu.stricky-fixed,
.site-header__header-two .stricked-menu.stricky-fixed {
  background-color: transparent !important;
  background-image:
    linear-gradient(90deg, rgba(32, 223, 227, 0.55), rgba(123, 97, 255, 0.65), rgba(32, 223, 227, 0.55)),
    linear-gradient(115deg, #0b1220 0%, #121a2c 38%, #1a1840 72%, #0b1220 100%) !important;
  background-size: 200% 2px, 180% 100% !important;
  background-position: 0 100%, 0 0 !important;
  background-repeat: no-repeat, no-repeat !important;
  box-shadow: 0 10px 32px rgba(85, 56, 244, 0.22), 0 4px 16px rgba(11, 18, 32, 0.35) !important;
  animation: bytely-nav-scroll-sheen 10s linear infinite;
}

@keyframes bytely-nav-scroll-sheen {
  0% { background-position: 0 100%, 0% 0; }
  100% { background-position: 200% 100%, 100% 0; }
}

.stricked-menu.stricky-fixed ul.navigation-box > li > a {
  color: #f2fcfc !important;
  -webkit-text-fill-color: #f2fcfc;
}

.stricked-menu.stricky-fixed ul.navigation-box > li.current > a,
.stricked-menu.stricky-fixed ul.navigation-box > li.active > a,
.stricked-menu.stricky-fixed ul.navigation-box > li:hover > a {
  background-image: linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}

/* Dropdown / submenu — same accent text sheen, no solid fill */
.header-navigation ul.navigation-box > li > .submenu > li > a,
.header-navigation ul.navigation-box > li > ul > li > .submenu > li > a {
  background: transparent !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.header-navigation ul.navigation-box > li > .submenu > li:hover > a,
.header-navigation ul.navigation-box > li > .submenu > li.current > a,
.header-navigation ul.navigation-box > li > .submenu > li.active > a,
.header-navigation ul.navigation-box > li > ul > li > .submenu > li:hover > a {
  background-color: transparent !important;
  background-image: linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  animation: bytely-footer-sheen 6s linear infinite;
}

.bytely-nav-contact {
  display: none !important;
}

/* Keep Contact visible in footer Quick Links */
.footer-widget__links .bytely-nav-contact {
  display: list-item !important;
}

/* Tighter footer vertical spacing */
.site-footer__upper {
  padding-top: 60px !important;
  padding-bottom: 50px !important;
}

@media (max-width: 991px) {
  .site-footer__upper {
    padding-top: 50px !important;
    padding-bottom: 30px !important;
  }
}

/*
 * Desktop header: Contact Us in normal flow so FAQ→CTA gap matches
 * nav item spacing (li + li).
 */
@media (min-width: 1200px) {
  .header-navigation ul.navigation-box > li + li {
    margin-left: 28px;
  }

  .site-header .header-navigation .container,
  .stricked-menu .container {
    display: flex !important;
    align-items: center;
    padding-right: 15px;
  }

  .site-header .header-navigation .container .logo-box,
  .stricked-menu .container .logo-box {
    position: relative;
    top: auto;
    left: auto;
    float: none;
    -webkit-transform: none;
    transform: none;
    flex: 0 0 auto;
    margin-right: 24px;
  }

  .site-header .header-navigation .main-navigation,
  .stricked-menu .main-navigation {
    float: none;
    flex: 1 1 auto;
    display: flex !important;
    justify-content: flex-end;
    text-align: right;
    padding-left: 0;
  }

  .site-header .header-navigation .container .right-side-box,
  .stricked-menu .container .right-side-box {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
    transform: none;
    flex: 0 0 auto;
    margin-left: 28px; /* same as nav item spacing */
    display: flex !important;
  }

  .site-header__header-one .header-navigation .container,
  .site-header__header-two .header-navigation .container {
    padding-right: 15px;
  }
}

@media (max-width: 1199px) {
  .bytely-nav-contact {
    display: list-item !important;
  }

  .header-navigation .container .right-side-box,
  .stricked-menu .right-side-box {
    display: none !important;
  }

  .site-header__header-one .header-navigation .container,
  .site-header__header-two .header-navigation .container,
  .stricked-menu .container {
    padding-right: 0;
  }
}
.cta-one .container > p {
  max-width: 640px;
  margin: 0 auto 22px;
  color: #fff;
  opacity: 0.9;
}

.cta-one__title {
  margin-bottom: 28px !important;
}

.cta-one .thm-btn {
  margin-top: 4px;
}

/* Soften inner page banner + breadcrumbs */
.inner-banner {
  padding: 88px 0 !important;
  background-attachment: scroll !important;
}

.inner-banner::before {
  background: linear-gradient(145deg, rgba(11, 18, 32, 0.38), rgba(32, 223, 227, 0.18) 45%, rgba(85, 56, 244, 0.32)) !important;
  opacity: 1 !important;
}

.inner-banner__content-wrap {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px !important;
  padding: 28px 40px 24px !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.22);
}

.inner-banner__title {
  font-size: 36px !important;
  line-height: 1.25 !important;
  margin-bottom: 12px !important;
  letter-spacing: 0.01em;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.thm-breadcrumb {
  display: block !important;
  margin: 0 !important;
}

.thm-breadcrumb__list {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}

.thm-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.thm-breadcrumb__item + .thm-breadcrumb__item::before {
  content: "/" !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 10px !important;
  border-radius: 0 !important;
  background: none !important;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  line-height: 1;
}

.thm-breadcrumb__item a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none !important;
  transition: color 0.25s ease;
}

.thm-breadcrumb__item a:hover,
.thm-breadcrumb__item a:focus {
  color: #20dfe3 !important;
}

.thm-breadcrumb__item--current span {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 575px) {
  .inner-banner__content-wrap {
    padding: 22px 20px 18px !important;
    width: calc(100% - 10px);
  }

  .inner-banner__title {
    font-size: 28px !important;
  }
}

/* About / How We Work tabs + list icons */
.about-two__tab-title .about-two__tab-title-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1.35;
  padding-left: 0 !important;
  padding-right: 8px;
}

/* Remove template teal bar that shifts text past the divider */
.about-two__tab-title .about-two__tab-title-link:before {
  display: none !important;
}

.about-two__tab-title .about-two__tab-title-link:hover,
.about-two__tab-title .about-two__tab-title-link.active {
  padding-left: 0 !important;
}

.about-two__tab-title .about-two__tab-title-link span {
  flex: 1 1 auto;
  min-width: 0;
}

.about-two__tab-title .about-two__tab-title-link i {
  flex: 0 0 18px;
  width: 18px;
  margin-top: 2px;
  text-align: center;
  color: #7b61ff;
  opacity: 0.85;
}

.about-two__tab-title .about-two__tab-title-link.active i,
.about-two__tab-title .about-two__tab-title-link:hover i {
  color: #20dfe3;
  opacity: 1;
}

/* How We Work — stage tabs as solid buttons filling the left column height */
.bytely-process-tabs.about-two__tab-block {
  align-items: stretch !important;
}

.bytely-process-tabs .about-two__tab-title {
  width: 220px;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
  border: none;
}

.bytely-process-tabs .about-two__tab-content {
  flex: 0 0 calc(100% - 220px) !important;
  max-width: calc(100% - 220px);
  border-left: 1px solid #e5e5e5;
  padding-left: 36px;
}

.bytely-process-tabs .about-two__tab-title-item {
  flex: 1 1 0;
  display: flex;
  margin: 0 !important;
  width: 100%;
}

.bytely-process-tabs .about-two__tab-title-link {
  width: 100% !important;
  height: 100%;
  min-height: 72px;
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  margin: 0 !important;
  padding: 16px 16px 16px 18px !important;
  border: 1px solid rgba(22, 35, 58, 0.08) !important;
  border-radius: 14px !important;
  background: #f4f7fb !important;
  color: #16233a !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(11, 18, 32, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.bytely-process-tabs .about-two__tab-title-link:before {
  display: none !important;
}

.bytely-process-tabs .about-two__tab-title-link:hover,
.bytely-process-tabs .about-two__tab-title-link.active,
.bytely-process-tabs .about-two__tab-title-link.active:hover {
  padding: 16px 16px 16px 18px !important;
}

.bytely-process-tabs .about-two__tab-title-link i {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  border-radius: 10px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #5538f4 !important;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(11, 18, 32, 0.06);
  opacity: 1;
}

.bytely-process-tabs .about-two__tab-title-link:hover {
  background: #fff !important;
  border-color: rgba(32, 223, 227, 0.45) !important;
  color: #0b1220 !important;
  box-shadow: 0 10px 24px rgba(85, 56, 244, 0.1);
  transform: translateY(-1px);
}

.bytely-process-tabs .about-two__tab-title-link.active,
.bytely-process-tabs .about-two__tab-title-link.active:hover {
  background: linear-gradient(145deg, #0b1220 0%, #16233a 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(11, 18, 32, 0.22);
  transform: none;
}

.bytely-process-tabs .about-two__tab-title-link.active i,
.bytely-process-tabs .about-two__tab-title-link:hover i {
  color: #5538f4 !important;
}

.bytely-process-tabs .about-two__tab-title-link.active i {
  background: rgba(32, 223, 227, 0.16);
  color: #20dfe3 !important;
  box-shadow: none;
}

@media (max-width: 991px) {
  .bytely-process-tabs.about-two__tab-block {
    flex-direction: column;
  }

  .bytely-process-tabs .about-two__tab-title {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .bytely-process-tabs .about-two__tab-title-item {
    flex: 1 1 calc(50% - 8px);
  }

  .bytely-process-tabs .about-two__tab-title-link {
    min-height: 56px;
    padding: 12px 12px !important;
    white-space: normal;
  }

  .bytely-process-tabs .about-two__tab-content {
    flex: 0 0 100% !important;
    max-width: 100%;
    border-left: none;
    border-top: 1px solid #e5e5e5;
    padding-left: 0;
    padding-top: 24px;
    margin-top: 8px;
  }
}

@media (max-width: 575px) {
  .bytely-process-tabs .about-two__tab-title-item {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bytely-process-tabs .about-two__tab-title-link {
    transition: none;
  }
}

.about-two__list-item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0 !important;
  margin-top: 14px !important;
  line-height: 1.45;
}

.about-two__list-item:before {
  display: none !important;
}

.about-two__list-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(32, 223, 227, 0.16), rgba(85, 56, 244, 0.16));
  color: #5538f4;
  font-size: 15px;
  line-height: 1;
}

.about-two__list-copy {
  flex: 1 1 auto;
  padding-top: 6px;
}

/* Focus cards — visible on soft surface, clear hover */
.bytely-focus {
  background:
    radial-gradient(900px 280px at 10% 0%, rgba(32, 223, 227, 0.08), transparent 55%),
    radial-gradient(800px 260px at 90% 30%, rgba(85, 56, 244, 0.08), transparent 50%),
    #f4f7fb !important;
  padding-top: 90px;
  padding-bottom: 70px;
}

.bytely-focus .row > [class*="col-"] {
  display: flex;
  margin-bottom: 24px;
}

.bytely-focus__card {
  width: 100%;
  height: 100%;
  background: #fff !important;
  border: 1px solid rgba(22, 35, 58, 0.06);
  border-radius: 16px !important;
  padding: 26px 22px !important;
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.bytely-focus__card::before {
  display: none !important;
}

.bytely-focus__card:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(145deg, rgba(32, 223, 227, 0.1), rgba(123, 97, 255, 0.08)),
    #fff !important;
  border-color: rgba(32, 223, 227, 0.55);
  box-shadow:
    0 22px 48px rgba(85, 56, 244, 0.22),
    0 0 0 1px rgba(32, 223, 227, 0.2);
}

.bytely-focus__card:hover .bytely-focus__icon {
  background: linear-gradient(135deg, #20dfe3 0%, #7b61ff 55%, #5538f4 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(85, 56, 244, 0.28);
}

.bytely-focus__card:hover .service-three__title {
  color: #0b1220;
}

@media (prefers-reduced-motion: reduce) {
  .bytely-focus__card:hover {
    transform: none;
  }
}

.bytely-focus__icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  background: linear-gradient(145deg, #0b1220 0%, #16233a 100%);
  color: #20dfe3;
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.16);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.bytely-focus__icon img {
  display: none;
}

.bytely-focus__card .service-three__title {
  margin-top: 14px;
  margin-bottom: 10px;
}

.bytely-focus__card .service-three__text {
  margin: 0;
  color: #5b6472;
}

@media (max-width: 767px) {
  .bytely-focus .row > [class*="col-"] {
    display: block;
  }
}
.bytely-field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: #c0392b;
}
.bytely-field.is-invalid .bytely-field-error {
  display: block;
}
.contact-one__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 575px) {
  .site-logo-img {
    height: 32px;
    max-width: 160px;
  }
}

/* Home banner — lock all slides to first-slide height (bg 1920x864) */
.banner-one {
  overflow: hidden;
}

.banner-one__carousel.owl-carousel .owl-stage-outer,
.banner-one__carousel.owl-carousel .owl-stage,
.banner-one__carousel.owl-carousel .owl-item,
.banner-one__carousel .item {
  height: 864px !important;
  min-height: 864px !important;
  max-height: 864px !important;
}

.banner-one__single {
  position: relative !important;
  height: 864px !important;
  min-height: 864px !important;
  max-height: 864px !important;
  display: flex !important;
  align-items: center;
  box-sizing: border-box !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  overflow: hidden;
}

.banner-one__single::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(11, 18, 32, 0.78) 0%,
      rgba(11, 18, 32, 0.58) 36%,
      rgba(11, 18, 32, 0.28) 58%,
      rgba(11, 18, 32, 0.08) 78%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(11, 18, 32, 0.35) 0%,
      transparent 28%,
      transparent 72%,
      rgba(11, 18, 32, 0.25) 100%
    );
}

.banner-one .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  display: flex !important;
  align-items: center;
  box-sizing: border-box;
  padding-top: 160px !important;
  padding-bottom: 120px !important;
}

.banner-one__content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.banner-one__title {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.banner-one__text {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.96) !important;
}

.banner-one__tag-line {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  color: #20dfe3 !important;
}

@media (max-width: 1199px) {
  .banner-one__carousel.owl-carousel .owl-stage-outer,
  .banner-one__carousel.owl-carousel .owl-stage,
  .banner-one__carousel.owl-carousel .owl-item,
  .banner-one__carousel .item,
  .banner-one__single {
    height: 720px !important;
    min-height: 720px !important;
    max-height: 720px !important;
  }

  .banner-one .container {
    padding-top: 130px !important;
    padding-bottom: 90px !important;
  }
}

@media (max-width: 991px) {
  .banner-one__carousel.owl-carousel .owl-stage-outer,
  .banner-one__carousel.owl-carousel .owl-stage,
  .banner-one__carousel.owl-carousel .owl-item,
  .banner-one__carousel .item,
  .banner-one__single {
    height: 90vh !important;
    min-height: 90vh !important;
    max-height: 90vh !important;
    height: 90dvh !important;
    min-height: 90dvh !important;
    max-height: 90dvh !important;
  }

  .banner-one .container {
    padding-top: 110px !important;
    padding-bottom: 48px !important;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .banner-one__carousel.owl-carousel .owl-stage-outer,
  .banner-one__carousel.owl-carousel .owl-stage,
  .banner-one__carousel.owl-carousel .owl-item,
  .banner-one__carousel .item,
  .banner-one__single {
    height: 90vh !important;
    min-height: 90vh !important;
    max-height: 90vh !important;
    height: 90dvh !important;
    min-height: 90dvh !important;
    max-height: 90dvh !important;
  }

  .banner-one .container {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }
}

/* Footer copyright brand — same accent gradient as nav buttons */
.site-footer__brand {
  display: inline-block;
  font-weight: 600;
  background-image: linear-gradient(
    135deg,
    #20dfe3 0%,
    #7b61ff 48%,
    #5538f4 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: bytely-footer-sheen 7s linear infinite;
}

@keyframes bytely-footer-sheen {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 220% center;
  }
}

/* Footer links — button-matching gradient text on hover */
.footer-widget__links a:hover,
.footer-widget__links a:focus,
.footer-widget__links a.active,
.footer-widget__links a.current,
.footer-widget__links li.active > a,
.footer-widget__links li.current > a,
.site-footer__links a:hover,
.site-footer__links a:focus,
.site-footer__links a.active,
.site-footer__links a.current,
.site-footer__links li.active > a,
.site-footer__links li.current > a,
.footer-widget__text a:hover,
.footer-widget__text a:focus {
  background-image: linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  opacity: 1 !important;
  animation: bytely-footer-sheen 6s linear infinite;
}

.footer-widget__links a:hover:before,
.footer-widget__links a:focus:before,
.footer-widget__links a.active:before,
.footer-widget__links a.current:before,
.footer-widget__links li.active > a:before,
.footer-widget__links li.current > a:before {
  background-image: linear-gradient(90deg, #20dfe3 0%, #7b61ff 50%, #5538f4 100%) !important;
  background-color: transparent !important;
  opacity: 1;
}

.footer-widget__links a:hover:after,
.footer-widget__links a:focus:after,
.footer-widget__links a.active:after,
.footer-widget__links a.current:after,
.footer-widget__links li.active > a:after,
.footer-widget__links li.current > a:after {
  background-image: linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__brand,
  .footer-widget__links a.active,
  .footer-widget__links a.current,
  .footer-widget__links li.active > a,
  .footer-widget__links li.current > a,
  .site-footer__links a.active,
  .site-footer__links a.current,
  .site-header .header-navigation ul.navigation-box > li.current > a,
  .site-header .header-navigation ul.navigation-box > li.active > a,
  .site-header .header-navigation ul.navigation-box > li:hover > a,
  .stricked-menu ul.navigation-box > li.current > a,
  .stricked-menu ul.navigation-box > li.active > a,
  .stricked-menu ul.navigation-box > li:hover > a {
    animation: none;
    background-position: 40% center;
  }

  .stricked-menu.stricky-fixed {
    animation: none !important;
    background-position: 0 100%, 50% 0 !important;
  }
}

/* Approach (and similar) parent labels — no navigation */
.main-navigation a.bytely-nav-parent,
.stricked-menu a.bytely-nav-parent {
  cursor: default;
}

.main-navigation a.bytely-nav-parent:focus,
.stricked-menu a.bytely-nav-parent:focus {
  outline-offset: 2px;
}

/* ---------- Inner pages: topbar + nav bar surfaces ---------- */

/* Topbar — deep ink with soft accent wash (above nav) */
.topbar-one,
.topbar-one__dark {
  background-color: #0a1020;
  background-image:
    linear-gradient(
      105deg,
      rgba(32, 223, 227, 0.16) 0%,
      rgba(123, 97, 255, 0.1) 42%,
      rgba(85, 56, 244, 0.14) 100%
    ),
    linear-gradient(180deg, #121a32 0%, #0a1020 100%);
  border-bottom: 1px solid rgba(32, 223, 227, 0.22);
  box-shadow: inset 0 -1px 0 rgba(85, 56, 244, 0.12);
}

.topbar-one__left-text,
.topbar-one__right-info li {
  color: rgba(242, 252, 252, 0.92);
}

.topbar-one__right-info i {
  color: #20dfe3;
}

/* ---------- Mobile header / footer fixes (inner pages; not homepage) ---------- */
@media (max-width: 1199px) {
  /* 1. Hide topbar above nav on all pages except index */
  body:not(.home-one) .topbar-one {
    display: none !important;
  }

  /* 2. Hamburger on the right (inner pages) */
  body:not(.home-one) .header-navigation .container .logo-box {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px !important;
  }

  body:not(.home-one) .header-navigation .container .logo-box .navbar-brand {
    float: none;
  }

  body:not(.home-one) .header-navigation .container .menu-toggler {
    float: none !important;
    margin: 23px 0 23px auto !important;
    color: #0b1220 !important;
    position: relative;
    z-index: 2;
  }

  /* Scrolled sticky nav — light hamburger on dark bar */
  body:not(.home-one) .stricked-menu.stricky-fixed .menu-toggler,
  body:not(.home-one) .header-navigation.stricky-fixed .menu-toggler {
    color: #f2fcfc !important;
  }

  body:not(.home-one) .stricked-menu.stricky-fixed .menu-toggler:hover,
  body:not(.home-one) .header-navigation.stricky-fixed .menu-toggler:hover {
    color: #20dfe3 !important;
  }

  body:not(.home-one) .header-navigation .container .right-side-box {
    display: none !important;
  }

  /* 3. Open mobile menu — readable links on dark panel */
  .header-navigation .main-navigation ul.navigation-box > li > a {
    color: #e8eef8 !important;
    -webkit-text-fill-color: #e8eef8 !important;
    background-image: none !important;
    opacity: 1 !important;
  }

  .header-navigation .main-navigation ul.navigation-box > li.current > a,
  .header-navigation .main-navigation ul.navigation-box > li.active > a,
  .header-navigation .main-navigation ul.navigation-box > li:hover > a {
    background-image: linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    opacity: 1 !important;
  }

  .header-navigation .main-navigation ul.navigation-box > li > .submenu > li > a {
    color: #c8d0de !important;
    -webkit-text-fill-color: #c8d0de !important;
  }

  .header-navigation .main-navigation ul.navigation-box > li > .submenu > li.current > a,
  .header-navigation .main-navigation ul.navigation-box > li > .submenu > li.active > a,
  .header-navigation .main-navigation ul.navigation-box > li > .submenu > li:hover > a {
    background-image: linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
  }

  .header-navigation .main-navigation ul.navigation-box li a .sub-nav-toggler {
    border-color: rgba(232, 238, 248, 0.35) !important;
    color: #e8eef8 !important;
  }

  .header-navigation .main-navigation .sub-nav-toggler .icon-bar {
    background: #e8eef8 !important;
  }
}

@media (max-width: 991px) {
  /* 5. Clearer separation between footer columns */
  .site-footer__upper .row > [class*="col-"] {
    margin-bottom: 8px;
  }

  .site-footer__upper .footer-widget {
    margin-bottom: 36px !important;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer__upper .row > [class*="col-"]:last-child .footer-widget {
    margin-bottom: 0 !important;
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* Inner-page nav bar (not homepage overlay header) */
.site-header__header-one {
  position: relative;
  z-index: 992;
  background-color: #eef4fb;
  background-image:
    radial-gradient(ellipse 70% 140% at 0% 50%, rgba(32, 223, 227, 0.18), transparent 58%),
    radial-gradient(ellipse 60% 120% at 100% 40%, rgba(123, 97, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #f7fbff 0%, #e8eef9 100%);
  border-bottom: 1px solid rgba(85, 56, 244, 0.1);
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.07);
}

.site-header__header-one .header-navigation {
  background-color: transparent;
}

/* ---------- Footer — dark base + accent sheen (all pages) ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: #0a1020 !important;
  background-image:
    radial-gradient(ellipse 80% 60% at 12% 0%, rgba(32, 223, 227, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 55% at 88% 8%, rgba(123, 97, 255, 0.2), transparent 52%),
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(85, 56, 244, 0.18), transparent 55%),
    linear-gradient(165deg, #0e1730 0%, #0a1020 42%, #120e28 78%, #0a1020 100%) !important;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(32, 223, 227, 0.1) 28%,
    rgba(123, 97, 255, 0.14) 50%,
    rgba(85, 56, 244, 0.1) 68%,
    transparent 100%
  );
  background-size: 240% 100%;
  -webkit-animation: bytelyServicesSheen 18s ease-in-out infinite;
  animation: bytelyServicesSheen 18s ease-in-out infinite;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #20dfe3 22%,
    #7b61ff 50%,
    #5538f4 78%,
    transparent 100%
  );
  background-size: 200% 100%;
  opacity: 0.85;
  -webkit-animation: bytelyFooterLine 10s linear infinite;
  animation: bytelyFooterLine 10s linear infinite;
}

@-webkit-keyframes bytelyFooterLine {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes bytelyFooterLine {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.site-footer__upper,
.site-footer__bottom {
  position: relative;
  z-index: 1;
}

.site-footer__bottom .container::before {
  border-top-color: rgba(32, 223, 227, 0.28);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer::before,
  .site-footer::after {
    -webkit-animation: none;
    animation: none;
  }

  .site-footer::before {
    background-position: 40% 50%;
  }

  .site-footer::after {
    background-position: 50% 0;
  }
}

/* Growth Framework — sticky intro stays mid-viewport while accordion grows */
.faq-one__home-three > .container > .row {
  align-items: stretch;
}

.faq-one__home-three > .container > .row > [class*="col-"]:first-child {
  display: flex;
}

.faq-one__block--sticky {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  padding-right: 40px;
  margin-top: auto;
  margin-bottom: auto;
  align-self: center;
}

.faq-one__block--sticky .block-title__text + .block-title__text {
  margin-top: 18px;
}

.faq-one .accrodion-title h4 .bytely-acc-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(32, 223, 227, 0.16), rgba(85, 56, 244, 0.16));
  color: #5538f4;
  font-size: 13px;
  line-height: 1;
}

.faq-one .accrodion.active .accrodion-title h4 .bytely-acc-icon {
  background: linear-gradient(145deg, #0b1220 0%, #16233a 100%);
  color: #20dfe3;
}

.faq-one .accrodion-content .about-two__list {
  margin-top: 12px;
  margin-bottom: 0;
}

.faq-one .accrodion-content .about-two__list-item {
  margin-top: 10px !important;
}

@media (max-width: 991px) {
  .faq-one__home-three > .container > .row > [class*="col-"]:first-child {
    display: block;
  }

  .faq-one__block--sticky {
    position: static;
    top: auto;
    transform: none;
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 36px;
    align-self: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-one__block--sticky {
    transition: none;
  }
}

/* FAQ category rail — light list with numbers, not filled process cards */
.faq-one__faq-page .bytely-faq-cats.about-two__tab-title {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border: none;
  border-left: 1px solid rgba(22, 35, 58, 0.12);
}

.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-item {
  width: 100%;
  margin: 0;
}

.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link {
  display: flex !important;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 !important;
  padding: 14px 12px 14px 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #5b6472 !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  white-space: normal;
  box-shadow: none !important;
  transform: none !important;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}

.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link:before {
  content: "" !important;
  display: block !important;
  width: 3px !important;
  height: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #20dfe3 !important;
  position: absolute !important;
  left: -1px;
  top: 50%;
  transform: translateY(-50%) !important;
  transition: height 0.25s ease;
}

.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link:hover,
.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link.active {
  padding-left: 18px !important;
  color: #0b1220 !important;
  background: linear-gradient(90deg, rgba(32, 223, 227, 0.1), transparent 78%) !important;
}

.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link:hover:before,
.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link.active:before {
  height: 70% !important;
}

.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link.active {
  color: #0b1220 !important;
  font-weight: 600 !important;
}

.faq-one__faq-page .bytely-faq-cats__index {
  flex: 0 0 auto;
  min-width: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #9aa3b2;
  font-variant-numeric: tabular-nums;
}

.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link.active .bytely-faq-cats__index,
.faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link:hover .bytely-faq-cats__index {
  color: #20dfe3;
}

.faq-one__faq-page .bytely-faq-cats__label {
  flex: 1 1 auto;
  text-align: left;
}

@media (max-width: 991px) {
  .faq-one__faq-page .bytely-faq-cats.about-two__tab-title {
    max-width: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 0;
    border-left: none;
    border-bottom: 1px solid rgba(22, 35, 58, 0.12);
    margin-bottom: 8px;
  }

  .faq-one__faq-page .bytely-faq-cats .about-two__tab-title-item {
    flex: 1 1 50%;
  }

  .faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link {
    padding: 12px 10px 14px !important;
  }

  .faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link:before {
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 0;
    width: auto !important;
    height: 2px !important;
    transform: none !important;
    opacity: 0;
  }

  .faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link:hover:before,
  .faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link.active:before {
    height: 2px !important;
    opacity: 1;
  }

  .faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link:hover,
  .faq-one__faq-page .bytely-faq-cats .about-two__tab-title-link.active {
    background: transparent !important;
    padding-left: 10px !important;
  }
}

@media (max-width: 575px) {
  .faq-one__faq-page .bytely-faq-cats .about-two__tab-title-item {
    flex: 1 1 100%;
  }
}

/* Contact card — icons + hover motion */
.bytely-contact-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

.bytely-contact-map-row {
  align-items: stretch;
}

.bytely-contact-map-row > [class*="col-"] {
  display: flex;
}

.bytely-contact-map-row .google-map__contact {
  flex: 1 1 auto;
  width: 100%;
  min-height: 360px !important;
  height: 100% !important;
  align-self: stretch;
  border: 0;
  border-radius: 16px;
}

.bytely-contact-card.contact-info-one__box {
  display: flex;
  flex-direction: column;
  padding: 24px 22px !important;
  border-radius: 18px;
  height: 100% !important;
  width: 100%;
}

.bytely-contact-card.contact-info-one__box::before {
  display: none !important;
  content: none !important;
}

.bytely-contact-card__item.contact-info-one__single {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 12px 10px;
  border-radius: 14px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.bytely-contact-card .contact-info-one__single + .contact-info-one__single {
  margin-top: 4px;
}

.bytely-contact-card__item:hover {
  background: rgba(32, 223, 227, 0.08);
  transform: translateX(4px);
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.06);
}

.bytely-contact-card__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0b1220 0%, #16233a 100%);
  color: #20dfe3;
  font-size: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bytely-contact-card__item:hover .bytely-contact-card__icon {
  transform: scale(1.06);
  box-shadow: 0 8px 18px rgba(32, 223, 227, 0.28);
}

.bytely-contact-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.bytely-contact-card .contact-info-one__label {
  margin-bottom: 4px;
}

.bytely-contact-card .contact-info-one__text {
  margin-bottom: 0;
}

.bytely-contact-card__note {
  margin: 6px 0 0;
  font-size: 13px;
  color: #7a8494;
}

.bytely-contact-card__slogan {
  margin: auto 0 0;
  padding: 16px 12px 4px;
  border-top: 1px solid rgba(22, 35, 58, 0.08);
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #16233a;
  text-align: center;
}

/* Contact select — same gradient text sheen as Services nav submenu */
.bytely-contact-form .bootstrap-select .dropdown-menu > li > a,
.bytely-contact-form .bootstrap-select .dropdown-menu > li > a:hover,
.bytely-contact-form .bootstrap-select .dropdown-menu > li > a:focus,
.bytely-contact-form .bootstrap-select .dropdown-menu > li.selected > a,
.bytely-contact-form .bootstrap-select .dropdown-menu > li.active > a,
.bytely-contact-form .bootstrap-select .dropdown-menu .dropdown-item,
.bytely-contact-form .bootstrap-select .dropdown-menu .dropdown-item:hover,
.bytely-contact-form .bootstrap-select .dropdown-menu .dropdown-item:focus,
.bytely-contact-form .bootstrap-select .dropdown-menu .dropdown-item.active,
.bytely-contact-form .bootstrap-select .dropdown-menu .dropdown-item.selected {
  background: transparent !important;
  background-color: transparent !important;
  color: #16233a !important;
  -webkit-text-fill-color: #16233a !important;
}

.bytely-contact-form .bootstrap-select .dropdown-menu > li:hover > a,
.bytely-contact-form .bootstrap-select .dropdown-menu > li.selected > a,
.bytely-contact-form .bootstrap-select .dropdown-menu > li.active > a,
.bytely-contact-form .bootstrap-select .dropdown-menu .dropdown-item:hover,
.bytely-contact-form .bootstrap-select .dropdown-menu .dropdown-item:focus,
.bytely-contact-form .bootstrap-select .dropdown-menu .dropdown-item.active,
.bytely-contact-form .bootstrap-select .dropdown-menu .dropdown-item.selected {
  background-color: transparent !important;
  background-image: linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  animation: bytely-footer-sheen 6s linear infinite;
}

/* Compact contact form */
.bytely-contact-form-section.contact-one {
  padding-top: 70px;
  padding-bottom: 70px;
}

.bytely-contact-form-section .block-title {
  margin-bottom: 28px;
}

.bytely-contact-form-section .block-title__text {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.bytely-contact-form.contact-one__form {
  max-width: 820px;
  margin: 0 auto;
}

.bytely-contact-form .bytely-field {
  margin-bottom: 14px;
}

.bytely-contact-form.contact-one__form input,
.bytely-contact-form.contact-one__form textarea {
  height: 46px;
  margin-bottom: 0;
  border: 1px solid rgba(22, 35, 58, 0.1);
  border-radius: 12px;
  padding: 0 16px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(11, 18, 32, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bytely-contact-form.contact-one__form textarea {
  height: auto;
  min-height: 110px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.bytely-contact-form.contact-one__form input:focus,
.bytely-contact-form.contact-one__form textarea:focus {
  border-color: rgba(32, 223, 227, 0.65);
  box-shadow: 0 0 0 3px rgba(32, 223, 227, 0.15);
  outline: none;
}

.bytely-contact-form .bootstrap-select > .dropdown-toggle {
  height: 46px !important;
  border: 1px solid rgba(22, 35, 58, 0.1) !important;
  border-radius: 12px !important;
  background: #fff !important;
  padding-left: 16px !important;
  box-shadow: 0 4px 14px rgba(11, 18, 32, 0.03);
}

.bytely-contact-form .bytely-field.is-invalid input,
.bytely-contact-form .bytely-field.is-invalid textarea,
.bytely-contact-form .bytely-field.is-invalid .bootstrap-select > .dropdown-toggle {
  border-color: #c0392b !important;
}

.bytely-contact-form .contact-one__consent {
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #5b6472;
}

.bytely-contact-form .contact-one__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
}

.bytely-contact-form .contact-one__consent a {
  color: #5538f4;
  text-decoration: underline;
}

.bytely-contact-form .thm-btn {
  margin-top: 8px;
  position: relative;
  min-width: 180px;
  min-height: 52px;
}

.bytely-contact-form .thm-btn.is-loading {
  pointer-events: none;
  cursor: wait;
  opacity: 1;
  -webkit-animation: none !important;
  animation: none !important;
  -webkit-transform: none !important;
  transform: none !important;
}

.bytely-contact-form .thm-btn.is-loading .thm-btn__label,
.bytely-contact-form .thm-btn.is-loading .bytely-btn-bubbles {
  opacity: 0 !important;
  visibility: hidden !important;
}

.bytely-contact-form .thm-btn.is-loading::before,
.bytely-contact-form .thm-btn.is-loading::after {
  display: none !important;
  -webkit-animation: none !important;
  animation: none !important;
  opacity: 0 !important;
}

.bytely-contact-form .thm-btn .bytely-btn-spinner {
  display: none !important;
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  z-index: 8 !important;
  pointer-events: none !important;
  -webkit-transform: none !important;
  transform: none !important;
  align-items: center !important;
  justify-content: center !important;
}

.bytely-contact-form .thm-btn.is-loading .bytely-btn-spinner {
  display: flex !important;
}

.bytely-contact-form .bytely-btn-spinner__ring {
  display: block !important;
  box-sizing: border-box !important;
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  border: 2.5px solid rgba(255, 255, 255, 0.28) !important;
  border-top-color: #fff !important;
  border-right-color: rgba(32, 223, 227, 0.95) !important;
  border-radius: 50% !important;
  background: transparent !important;
  will-change: transform;
  -webkit-animation: bytely-submit-spin 0.65s linear infinite !important;
  animation: bytely-submit-spin 0.65s linear infinite !important;
}

@-webkit-keyframes bytely-submit-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes bytely-submit-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Success modal — richer look with icon + sheen */
.bytely-success-modal .modal-dialog {
  max-width: 420px;
}

.bytely-success-modal__content.modal-content {
  position: relative;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(420px 180px at 10% 0%, rgba(32, 223, 227, 0.18), transparent 55%),
    radial-gradient(380px 160px at 100% 100%, rgba(85, 56, 244, 0.16), transparent 50%),
    #fff;
  box-shadow: 0 24px 60px rgba(11, 18, 32, 0.22);
}

.bytely-success-modal__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(32, 223, 227, 0.12) 35%,
    rgba(123, 97, 255, 0.14) 55%,
    transparent 75%
  );
  background-size: 220% 100%;
  animation: bytely-modal-sheen 5s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.bytely-success-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  opacity: 0.55;
}

.bytely-success-modal__close:hover {
  opacity: 1;
}

.bytely-success-modal__body {
  position: relative;
  z-index: 1;
  padding: 42px 32px 34px;
  text-align: center;
}

.bytely-success-modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, #20dfe3 0%, #7b61ff 48%, #5538f4 100%);
  background-size: 220% auto;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(85, 56, 244, 0.28);
  animation: bytely-modal-icon-pop 0.55s ease both, bytely-btn-sheen 7s linear infinite;
}

.bytely-success-modal__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #0b1220;
}

.bytely-success-modal__text {
  margin: 0 auto 22px;
  max-width: 300px;
  font-size: 15px;
  line-height: 1.55;
  color: #5b6472;
}

.bytely-success-modal__btn {
  min-width: 140px;
}

@keyframes bytely-modal-sheen {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 220% center;
  }
}

@keyframes bytely-modal-icon-pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .bytely-contact-map-row > [class*="col-"] {
    display: block;
  }

  .bytely-contact-map-row .google-map__contact {
    min-height: 280px;
    height: 280px;
  }

  .bytely-contact-card.contact-info-one__box {
    height: auto !important;
    margin-top: 28px;
  }

  .bytely-contact-card__slogan {
    margin-top: 18px;
  }
}

@media (max-width: 767px) {
  .bytely-contact-form-section.contact-one {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .bytely-contact-form .bytely-field {
    margin-bottom: 12px;
  }

  .bytely-contact-card__item:hover {
    transform: none;
  }

  .bytely-success-modal__body {
    padding: 36px 22px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bytely-contact-card__item,
  .bytely-contact-card__icon {
    transition: none;
  }

  .bytely-contact-card__item:hover {
    transform: none;
  }

  .bytely-contact-card__item:hover .bytely-contact-card__icon {
    transform: none;
  }

  .bytely-success-modal__sheen,
  .bytely-success-modal__icon {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

/* ---------- Service detail pages ---------- */
.services-details__content.bytely-accent-bg {
  padding-top: 90px;
  padding-bottom: 90px;
}

.services-details__content.bytely-accent-bg .services-details__content-info {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 35, 58, 0.06);
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 14px 36px rgba(85, 56, 244, 0.08);
  position: sticky;
  top: 110px;
}

.services-details__content-info-title {
  margin-bottom: 8px !important;
}

.services-details__content-info-text {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 18px !important;
}

.services-details__content-block .block-title {
  margin-bottom: 20px;
}

.services-details__content-block .services-details__image {
  margin: 0 0 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
}

.services-details__content-block .services-details__image img {
  display: block;
  width: 100%;
  height: auto;
}

.services-details__content-block .services-details__content-text {
  margin-bottom: 18px;
}

.services-details__content-block .services-details__sub-title {
  margin-top: 28px;
  margin-bottom: 14px;
}

.services-details__content-block .about-one__list {
  margin-bottom: 8px;
}

.services-details__content-block .about-one__list-item + .about-one__list-item {
  margin-top: 12px;
}

/* Service sidebar nav — process-tabs style */
.bytely-service-nav.about-two__tab-title {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  border: none;
  margin: 0;
}

.bytely-service-nav .about-two__tab-title-item {
  margin: 0 !important;
  width: 100%;
  display: flex;
}

.bytely-service-nav .about-two__tab-title-link {
  width: 100% !important;
  min-height: 56px;
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  margin: 0 !important;
  padding: 14px 14px 14px 16px !important;
  border: 1px solid rgba(22, 35, 58, 0.08) !important;
  border-radius: 14px !important;
  background: #f4f7fb !important;
  color: #16233a !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  white-space: normal !important;
  box-shadow: 0 6px 16px rgba(11, 18, 32, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.bytely-service-nav .about-two__tab-title-link:before {
  display: none !important;
}

.bytely-service-nav .about-two__tab-title-link:hover,
.bytely-service-nav .about-two__tab-title-link.active,
.bytely-service-nav .about-two__tab-title-link.active:hover {
  padding: 14px 14px 14px 16px !important;
}

.bytely-service-nav .about-two__tab-title-link i {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  border-radius: 10px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #5538f4 !important;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(11, 18, 32, 0.06);
  opacity: 1;
}

.bytely-service-nav .about-two__tab-title-link span {
  flex: 1 1 auto;
  min-width: 0;
}

.bytely-service-nav .about-two__tab-title-link:hover {
  background: #fff !important;
  border-color: rgba(32, 223, 227, 0.45) !important;
  color: #0b1220 !important;
  box-shadow: 0 10px 24px rgba(85, 56, 244, 0.1);
  transform: translateY(-1px);
}

.bytely-service-nav .about-two__tab-title-link.active,
.bytely-service-nav .about-two__tab-title-link.active:hover {
  background: linear-gradient(145deg, #0b1220 0%, #16233a 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(11, 18, 32, 0.22);
  transform: none;
}

.bytely-service-nav .about-two__tab-title-link:hover i {
  color: #5538f4 !important;
}

.bytely-service-nav .about-two__tab-title-link.active i {
  background: rgba(32, 223, 227, 0.16);
  color: #20dfe3 !important;
  box-shadow: none;
}

@media (max-width: 1199px) {
  .services-details__content.bytely-accent-bg .services-details__content-info {
    position: static;
    top: auto;
  }
}

@media (max-width: 991px) {
  .services-details__content.bytely-accent-bg {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .services-details__content.bytely-accent-bg .services-details__content-info {
    margin-bottom: 36px;
    padding: 22px 18px;
  }

  .bytely-service-nav.about-two__tab-title {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .bytely-service-nav .about-two__tab-title-item {
    flex: 1 1 calc(50% - 8px);
  }

  .bytely-service-nav .about-two__tab-title-link {
    min-height: 52px;
    padding: 12px !important;
    font-size: 13px !important;
  }

  .bytely-service-nav .about-two__tab-title-link:hover,
  .bytely-service-nav .about-two__tab-title-link.active,
  .bytely-service-nav .about-two__tab-title-link.active:hover {
    padding: 12px !important;
  }

  .services-details__content-block .services-details__image {
    margin-bottom: 22px;
  }
}

@media (max-width: 575px) {
  .bytely-service-nav .about-two__tab-title-item {
    flex: 1 1 100%;
  }

  .services-details__content.bytely-accent-bg {
    padding-top: 48px;
    padding-bottom: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bytely-service-nav .about-two__tab-title-link {
    transition: none;
  }

  .bytely-service-nav .about-two__tab-title-link:hover {
    transform: none;
  }
}

/* Homepage process tabs — four stages in one row where space allows */
.bytely-home-process-tabs {
  display: flex;
  flex-wrap: wrap;
}

.bytely-home-process-tabs .about-one__tab-title-item {
  flex: 1 1 0;
  min-width: 0;
}

.bytely-home-process-tabs .about-one__tab-title-link {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .bytely-home-process-tabs .about-one__tab-title-item {
    flex: 1 1 48%;
  }
}

/* Legal pages — tighter content spacing (template default is 150px) */
.legal-page .inner-banner {
  padding: 56px 0 !important;
}

.legal-page .blog-details {
  padding-top: 48px;
  padding-bottom: 48px;
}

.legal-page .blog-details__content > .blog-details__text:first-child {
  margin-top: 0;
}

.legal-page .blog-details__content > :last-child {
  margin-bottom: 0;
}

.legal-page .cta-one {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (max-width: 767px) {
  .legal-page .inner-banner {
    padding: 40px 0 !important;
  }

  .legal-page .blog-details {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .legal-page .cta-one {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* ---------- Cookie banner ---------- */
.bytely-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.bytely-cookie.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bytely-cookie__panel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(11, 18, 32, 0.96) 0%, rgba(22, 35, 58, 0.94) 55%, rgba(32, 24, 64, 0.96) 100%);
  box-shadow:
    0 22px 50px rgba(11, 18, 32, 0.35),
    0 0 0 1px rgba(32, 223, 227, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bytely-cookie__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #20dfe3 0%, #5b7cff 48%, #5538f4 100%);
}

.bytely-cookie__sheen {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 223, 227, 0.22) 0%, rgba(85, 56, 244, 0.12) 42%, transparent 70%);
  pointer-events: none;
}

.bytely-cookie__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 20px;
}

.bytely-cookie__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.bytely-cookie__eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #20dfe3, #7b61ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bytely-cookie__title {
  margin: 0 0 6px;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.bytely-cookie__text {
  margin: 0;
  max-width: none;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.bytely-cookie__text a {
  color: #20dfe3;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.bytely-cookie__text a:hover,
.bytely-cookie__text a:focus {
  color: #7b61ff;
}

.bytely-cookie__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.bytely-cookie__actions .thm-btn.bytely-cookie__btn {
  margin: 0;
  min-height: 44px;
  padding: 10px 18px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  border-radius: 16px !important;
}

@media (max-width: 991px) {
  .bytely-cookie__body {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px 20px 18px;
  }

  .bytely-cookie__actions {
    width: 100%;
  }

  .bytely-cookie__actions .thm-btn.bytely-cookie__btn {
    flex: 1 1 0;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .bytely-cookie {
    padding: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .bytely-cookie__panel {
    border-radius: 16px;
  }

  .bytely-cookie__title {
    font-size: 19px;
  }

  .bytely-cookie__text {
    font-size: 13px;
  }

  .bytely-cookie__actions {
    flex-direction: column-reverse;
    gap: 8px;
  }

  .bytely-cookie__actions .thm-btn.bytely-cookie__btn {
    width: 100%;
    padding: 12px 18px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bytely-cookie {
    transition: none;
    transform: none;
  }
}

/* Legal page content lists */
.blog-details__list {
  margin: 0 0 25px;
  padding-left: 1.25rem;
  list-style: disc;
  font-size: 15px;
  line-height: 26px;
  color: #848484;
}

.blog-details__list li + li {
  margin-top: 0.4rem;
}
