:root {
  --gradient-start: #ff952d;
  --gradient-mid: #d956a6;
  --gradient-end: #ac27ff;
  --banner-design-gradient: linear-gradient(90deg, #006b7a 0%, #009fb5 55%, #00d4ee 100%);
  --banner-develop-gradient: linear-gradient(90deg, #006bc7 0%, #5430d8 28%, #c70f91 52%, #d68222 74%, #d8a20b 100%);
  --banner-grow-gradient: linear-gradient(90deg, #7a3100 0%, #ad5f00 55%, #d89508 100%);
  --banner-underline-gradient: linear-gradient(90deg, #f0a800 0%, #e40088 58%, #5b2dff 100%);
  --orange: #ff952d;
  --pink: #ac27ff;
  --violet: #ac27ff;
  --ink: #151515;
  --muted: #666;
  --font-roman: "Archivo", sans-serif;
  --font-black: "Archivo", sans-serif;
  --font-description: "Archivo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-roman);
  background: #fff;
  overflow-x: hidden;
}

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

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



main 58px,
main h2,
main h3,
.site-footer h3 {
  font-family: var(--font-roman);
  font-weight: 400;
}

main p,
.site-footer p,
.site-footer li {
  font-family: var(--font-description);
  font-weight: 400;
}

.site-header {
  padding: 18px 0;
  transition: background .25s ease, padding .25s ease;
}

.site-header.scrolled,
.site-header:has(.navbar-collapse.show) {
  background: rgba(12, 12, 12, .92);
  padding: 8px 0;
  backdrop-filter: blur(10px);
}

.logo {
  display: inline-flex;
  width: 128px;
}

.logo img {
  width: 150px;
  height: auto;
}

.navbar .nav-link {
  color: #fff;


font-weight:500;
font-size:18px;
font-family: var(--font-roman);
}


.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

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

.search-btn,
.menu-btn {
  width: 44px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 0;
}

.search-btn {
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  font-size: 17px;
}

.menu-btn {
  font-size: 24px;
}

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg,
.testimonial-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .55) 48%, rgba(0, 0, 0, .34) 100%),
    url("../image/herobanner.jpg");
}

.hero-content {
  position: relative;
  padding-top: 76px;
}

.eyebrow {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 33px);
  font-family: var(--font-black);
  font-weight: 900;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(46px, 8vw, 58px);
  line-height: .98;
}

.hero .lead {
  max-width: 558px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 2.2vw, 23px);
  font-family: var(--font-description);
  font-weight: 400;
  
}

.section {
  padding: 70px 0;
}

.about-section h2 {
  margin-bottom: 22px;
  color: #6542eb;
  font-size: clamp(28px, 4vw, 46px);
  font-family: var(--font-roman);
  font-weight: 400;
 
}

.about-section p {
  margin-bottom: 18px;
  color: #111;
  font-size: 17px;
  font-family: var(--font-description);
  font-weight: 400;
  line-height: 1.22;
  text-align: justify;
}

.about-photo {
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  /* background: linear-gradient(145deg, rgba(174, 62, 206, .7), rgba(238, 104, 31, .72)); */
}

.about-photo img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
 
}

.pattern-bg {
  background-color: #f7f7f7;
  background-image:
    linear-gradient(30deg, rgba(180, 180, 180, .16) 12%, transparent 12.5%, transparent 87%, rgba(180, 180, 180, .16) 87.5%, rgba(180, 180, 180, .16)),
    linear-gradient(150deg, rgba(180, 180, 180, .16) 12%, transparent 12.5%, transparent 87%, rgba(180, 180, 180, .16) 87.5%, rgba(180, 180, 180, .16)),
    linear-gradient(30deg, rgba(180, 180, 180, .16) 12%, transparent 12.5%, transparent 87%, rgba(180, 180, 180, .16) 87.5%, rgba(180, 180, 180, .16)),
    linear-gradient(150deg, rgba(180, 180, 180, .16) 12%, transparent 12.5%, transparent 87%, rgba(180, 180, 180, .16) 87.5%, rgba(180, 180, 180, .16));
  background-position: 0 0, 0 0, 42px 74px, 42px 74px;
  background-size: 84px 148px;
}

.gradient-title {
  margin-bottom: 46px;
  font-size: clamp(34px, 5vw, 58px);
  font-family: var(--font-roman);
  font-weight: 400;

  background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-mid) 48%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-section {

  padding-top: 48px;
  padding-bottom: 56px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, .24)),
    url("../image/explore-bg.png");
  background-position: center;
  background-size: cover;
}






@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 18px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(15, 15, 15, .95);
  }

  .header-actions {
    margin-top: 12px;
  }

  .hero {
    min-height: 600px;
  }

  .about-photo img {
    min-height: 390px;
  }

  
  .footer-preview {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    padding: 10px 0;
  }

  .logo {
    width: 108px;
  }

  .hero {
    min-height: 540px;
  }

  
}

.navbar-nav > li > a {
 display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: .3s;
    padding: 0px 0.5rem;
    font-weight: 500;
    font-size: 18px;
    font-family: var(--font-roman);
}

/* Home page redesign */
body {
  --home-bg: #020202;
  --home-panel: #070707;
  --home-line: rgba(255, 255, 255, .17);
  --home-text: #f6f6f6;
  --home-muted: rgba(255, 255, 255, .68);
  --home-cyan: #00c7f5;
  --home-gold: #f5a400;
  --home-pink: #ff168e;
  color: var(--home-text);
  background: var(--home-bg);
  font-family: var(--font-roman);
}

main h1,
main h2,
main h3,
main p,
.navbar .nav-link,
.outline-btn,
.scroll-link {
  font-family: var(--font-roman);
}

.container {
  max-width: 1320px;
}

.site-header {
  padding: 0px 0 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .98), rgba(0, 0, 0, .72) 76%, rgba(0, 0, 0, 0));
}

.site-header.scrolled,
.site-header:has(.navbar-collapse.show) {
  background: rgba(0, 0, 0, .94);
  border-bottom: 1px solid var(--home-line);
}

.logo {
  width: 188px;
}

.navbar .nav-link,
.navbar-nav > li > a {
  min-width: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.navbar-nav.gap-lg-4 {
  gap: 12px !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.outline-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, .01);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, transform .2s ease, background .2s ease;
}

.outline-btn:hover,
.outline-btn:focus-visible {
 border-color: transparent;
  background:
    linear-gradient(rgba(0, 199, 245, .08), rgba(0, 199, 245, .08)) padding-box,
    linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;
}

.outline-btn.cyan {
  border: 2px solid transparent;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;
}

.outline-btn.cyan:hover,
.outline-btn.cyan:focus-visible {
  border-color: transparent;
  background:
    linear-gradient(rgba(0, 199, 245, .08), rgba(0, 199, 245, .08)) padding-box,
    linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;
}

.header-cta {
  min-height: 50px;
  padding: 0 32px;
  text-transform: none;
  font-size: 20px;
}

.twa-hero {
  min-height: 850px;
  padding-top: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--home-line);
}
.stat-icon img {
    width: 52px;
    height: 78px;
    display: block;
    object-fit: contain;
}
.hero-shell {
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-carousel-shell {
  position: relative;
}

.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item,
.hero-slide {
  min-height: 640px;
}

.hero-carousel .owl-item {
  overflow: hidden;
}

.hero-copy {
  width: min(620px, 52%);
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
}

.hero-tabs {
  display: flex;
  gap: 42px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-tabs span {
  color: transparent;
  background: var(--banner-grow-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-tabs span:first-child {
  background-image: var(--banner-design-gradient);
}

.hero-tabs span:nth-child(2) {
  background-image: var(--banner-develop-gradient);
}

.hero-tabs span:nth-child(3) {
  background-image: var(--banner-grow-gradient);
}

.hero-tabs .active::after {
  content: "";
  width: 50px;
  height: 2px;
  display: block;
  margin-top: 8px;
  background: var(--banner-underline-gradient);
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(46px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.17;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 440px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 26px;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.scroll-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
}

.hero-art {
  position: absolute;
  top: -5px;
  right: -92px;
  bottom: -88px;
  width: 78%;
  z-index: 1;
  pointer-events: none;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .78) 17%, rgba(0, 0, 0, .26) 43%, rgba(0, 0, 0, 0) 68%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 76%, #000 100%);
  z-index: 2;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}

.hero-pager {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  gap: 24px;
  color: rgba(255, 255, 255, .34);
}

.hero-pager button {
  width: 58px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .36);
  background: transparent;
  font-family: var(--font-roman);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  text-align: left;
  transition: color .2s ease;
}

.hero-pager button:hover,
.hero-pager button:focus-visible,
.hero-pager button.active {
  color: #fff;
  outline: 0;
}

.hero-pager button.active::after {
  content: "";
  width: 30px;
  height: 3px;
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--home-cyan), var(--home-gold));
}

.brand-strip {
  padding: 54px 0 58px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: #020202;
}

.brand-strip .container {
  display: flex;
  align-items: center;
  gap: 76px;
}

.brand-strip p {
  width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-row {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  gap: 46px;
  opacity: .76;
  filter: grayscale(1);
}

.brand-row img {
  max-height: 48px;
  margin: 0 auto;
  object-fit: contain;
}

.twa-section {
  padding: 70px 0;
  background: #020202;
}

.solutions-section {
  padding-top: 40px;
  padding-bottom: 52px;
}

.section-heading span {
  display: block;
  margin-bottom: 12px;
  width: fit-content;
  background: linear-gradient(90deg, #f7931e 0%, #ffd23f 25%, #ed1e79 50%, #3422db 75%, #00c2e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-roman);
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.18;
  font-family: var(--font-roman);
  text-transform: uppercase;
}

.section-heading p {
  margin: 20px 0 44px;
  color: rgba(255, 255, 255, .94);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.48;
}

.section-heading a,
.section-top > a {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
 
    width: fit-content;
    background: linear-gradient(90deg, #f7931e 0%, #ffd23f 25%, #ed1e79 50%, #3422db 75%, #00c2e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}

.solutions-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.solutions-grid .section-heading {
  padding: 28px 26px 0 0;
}

.solution-card {
  min-height: 354px;
  padding: 24px 32px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  background: #020202;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.solution-card:hover {
  border-color: transparent;
  background: linear-gradient(145deg, #ffb45c 0%, #ed1e79 42%, #3422db 74%, #007fe8 100%);
  transform: translateY(-4px);
}

.process-line article > i {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(135deg, #00c2e0 0%, #3422db 28%, #ed1e79 52%, #ffd23f 74%, #f7931e 100%) border-box;
  color: #ed1e79;
  font-size: 38px;
}

/* .solution-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
} */

.process-line article > i::before {
  background: linear-gradient(135deg, #00c2e0 0%, #3422db 28%, #ed1e79 52%, #ffd23f 74%, #f7931e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solution-card h3 {
  margin: 24px 0 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
}

.solution-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .94);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.solution-card a {
  margin-top: auto;
  color: #fff;
  font-size: 24px;
}

.solution-card.featured {
  border: 1px solid rgba(255, 255, 255, .24);
  background: #020202;
}

.solution-card.featured .solution-icon {
  /* background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(135deg, #00c2e0 0%, #3422db 28%, #ed1e79 52%, #ffd23f 74%, #f7931e 100%) border-box;
  color: #ed1e79; */
}

.stats-row {
  margin: 116px 10px 0;
  padding: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, #f7931e 0%, #ffd23f 25%, #ed1e79 50%, #3422db 75%, #00c2e0 100%) 1;
}

.stat-item {
  min-height: 88px;
  display: grid;
  grid-template-columns: 92px minmax(96px, auto);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: end;
  justify-content: center;
  gap: 8px 28px;
  padding: 0 30px;
  border-right: 2px solid rgba(255, 255, 255, .22);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item-text {
  grid-template-columns: auto;
  gap: 12px;
  justify-items: start;
  align-items: center;
  align-content: center;
}

.stat-icon {
  grid-row: 1 / 3;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
}

.stat-icon img {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.stats-row strong {
  align-self: end;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.stats-row span {
  align-self: start;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
}

.stats-row .stat-icon {
  align-self: center;
  border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(135deg, #00c2e0 0%, #3422db 26%, #ed1e79 52%, #ffd23f 76%, #f7931e 100%) border-box;
}

.section-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.work-gallery {
  padding-top: 50px;
  padding-bottom: 32px;
  background: #000;
}

.work-gallery .container {
  display: block;
}

.work-gallery .section-top {
  position: relative;
  align-items: flex-start;
  margin-bottom: 28px;
  z-index: 2;
}

.work-gallery .section-heading {
  max-width: 370px;
}

.work-gallery .section-heading span {
  margin-bottom: 12px;
}

.work-gallery .section-heading h2 {
  font-size: clamp(30px, 2.45vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.work-gallery .section-top > a {
  gap: 16px;
  font-size: 18px;
  line-height: 1;
}

.work-grid,
.insight-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 12px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.work-carousel {
  display: block;
}

.work-carousel .owl-stage {
  display: flex;
}

.work-carousel .owl-item {
  display: flex;
}

.work-carousel .work-card {
  width: 100%;
  height: 100%;
  margin-top: 0;

}

.work-card,
.insight-card {
  position: relative;
  min-height: 206px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: #080808;
}

.work-card {
  /* min-height: 322px; */
  border-width: 2px;
  border-color: rgba(255, 255, 255, .26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  margin-top:40px;
}

.work-card.wide {
  grid-column: 1;
  grid-row: 2;
  min-height: 210px;
}

.work-card:not(.wide) {
  grid-row: auto;
}

.work-grid > .work-card:nth-child(2) {
  grid-column: 2;
}

.work-grid > .work-card:nth-child(3) {
  grid-column: 3;
}

.work-grid > .work-card:nth-child(4) {
  grid-column: 4;
}

.work-grid > .work-card:nth-child(5) {
  grid-column: 5;
}

.work-carousel .owl-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.work-carousel .owl-nav button.owl-prev,
.work-carousel .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38) !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .08) !important;
  transition: border-color .2s ease, background .2s ease;
}

.work-carousel .owl-nav button.owl-prev:hover,
.work-carousel .owl-nav button.owl-next:hover,
.work-carousel .owl-nav button.owl-prev:focus-visible,
.work-carousel .owl-nav button.owl-next:focus-visible {
  border-color: rgba(255, 255, 255, .75) !important;
  background: rgba(255, 255, 255, .16) !important;
}

.work-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.work-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  display: block;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28) !important;
  transition: background .2s ease, transform .2s ease;
}

.work-carousel .owl-dot.active span,
.work-carousel .owl-dot:hover span,
.work-carousel .owl-dot:focus-visible span {
  background: var(--home-gold) !important;
  transform: scale(1.18);
}

.work-card img,
.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease;
}
.work-card:hover,
.insight-card:hover {
    border: 2px solid transparent;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;

}

.work-card:hover img,
.insight-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}
.work-card:hover{
    border: 2px solid transparent;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;

}


.work-card::after,
.insight-card::after,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .86) 100%);
  pointer-events: none;
}

.work-card div {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  gap: 18px;
}

.work-card i,
.insight-card > i {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  font-size: 16px;
}

.work-card strong {
  min-width: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
}

.process-section {
  padding-top: 64px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--home-line);
}

.process-section .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}

.process-section .section-heading {
  max-width: 260px;
  padding-top: 4px;
}

.process-section .section-heading span,
.client-love .section-heading span {
  margin-bottom: 14px;
}

.process-section .section-heading h2,
.client-love .section-heading h2 {
  font-size: clamp(29px, 2.65vw, 30px);
  line-height: 1.08;
  font-weight: 400;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 38px;
  margin-top: 0;
  padding-left: 0;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 37px;
  right: 54px;
  left: 54px;
  border-top: 2px dashed rgba(255, 255, 255, .8);
}

.process-line article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  border: 2px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(135deg, #00c2e0 0%, #3422db 26%, #ed1e79 52%, #ffd23f 76%, #f7931e 100%) border-box;
}

.process-icon img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.process-line h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.process-line p {
  margin: 0 auto;
  max-width: 150px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.58;
}

.client-love {
  padding-top: 46px;
  padding-bottom: 34px;
}

.client-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  align-items: start;
}

.client-love .section-heading {
  max-width: 230px;
  padding-top: 10px;
}

.quote-card {
  min-height: 292px;
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 36px 120px 58px;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #030303;
}

.quote-card .quote-prev,
.quote-card .quote-next {
  width: 62px;
  height: 62px;
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 29px;
  line-height: 1;
  transform: translateY(-50%);
  transition: border-color .2s ease, background .2s ease;
}

.quote-card .quote-prev {
  left: 30px;
}

.quote-card .quote-next {
  right: 30px;
}

.quote-card .quote-prev:hover,
.quote-card .quote-next:hover,
.quote-card .quote-prev:focus-visible,
.quote-card .quote-next:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.quote-dots {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.quote-dots button {
  width: 12px;
  height: 12px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}

.quote-dots button.active {
  background: #ffc400;
}

.quote-content {
  display: none;
  min-width: 0;
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  padding-top: 2px;
}

.quote-content.active {
  display: block;
}

.quote-card blockquote {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.48;
    display: flex;
}

.quote-card blockquote span {
  display: inline-block;
  margin-right: 16px;
  background: linear-gradient(135deg, #f7931e 0%, #ffd23f 26%, #ed1e79 50%, #3422db 72%, #00c2e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 82px;
  font-weight: 900;
  line-height: .75;
  vertical-align: -.24em;
}

.quote-card blockquote strong {
  color: #ffc400;
  font-weight: 400;
}

.quote-card em {
  display: block;
  color: #ffc400;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.quote-person img {
  width: 62px !important;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 55% 42%;
}

.quote-person strong,
.quote-person small {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.quote-person small {
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  text-transform: none;
}

.cta-band {
  position: relative;
  min-height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--home-gold);
  border-radius: 8px;
  background-image: url("../img/lets-bg.png");
  background-position: center 18%;
  background-size: cover;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band p {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}

.insights-section {
  padding-top: 42px;
  padding-bottom: 64px;
  background: #000;
}

.insights-section .section-top {
  align-items: flex-start;
  margin-bottom: 30px;
}

.insights-section .section-heading {
  max-width: 340px;
}

.insights-section .section-heading span {
  margin-bottom: 14px;
}

.insights-section .section-heading h2 {
  font-size: clamp(31px, 2.6vw, 38px);
  line-height: 1.08;
  font-weight: 400;
}

.insights-section .section-top > a {
  margin-top: 14px;
  margin-right: 78px;
  gap: 16px;
  font-size: 17px;
  font-weight: 700;
}

.insight-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.insight-card {
  min-height: 258px;
  padding: 0;
  border-color: rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.insight-card h3,
.insight-card p,
.insight-card > i {
  position: absolute;
  z-index: 1;
}

.insight-card h3 {
  right: 72px;
  bottom: 64px;
  left: 22px;
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.22;
}

.insight-card p {
  right: 72px;
  bottom: 32px;
  left: 22px;
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.insight-card p span {
  margin-left: 22px;
}

.insight-card p span::before {
  content: "";
  width: 4px;
  height: 4px;
  display: inline-block;
  margin: 0 17px 2px 0;
  border-radius: 50%;
  background: #fff;
}

.insight-card > i {
  right: 32px;
  bottom: 34px;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.twa-footer {
  padding: 44px 0 0;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--home-gold), var(--home-pink), var(--home-cyan)) 1;
  background: #000;
  color: #fff;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 1.35fr) repeat(4, minmax(140px, 1fr));
  gap: 58px;
  align-items: start;
}

.footer-brand {
  display: inline-grid;
  gap: 6px;
  margin-bottom: 22px;
  color: #fff;
}

.footer-brand span {
  display: block;
  width: fit-content;
  background: linear-gradient(135deg, #f7931e 0%, #ffd23f 18%, #00c2e0 38%, #3422db 58%, #ed1e79 78%, #f7931e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 88px;
  font-weight: 900;
  line-height: .74;
  letter-spacing: 0;
}

.footer-brand small {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 8px;
  line-height: 1;
  text-transform: uppercase;
}

.twa-footer h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.twa-footer h3::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--home-cyan), var(--home-pink), var(--home-gold));
}

.twa-footer p,
.twa-footer a,
.twa-footer strong {
  display: block;
  margin: 0 0 9px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.footer-grid > div:first-child p {
  max-width: 292px;
  margin-bottom: 30px;
}

.twa-footer a:hover {
  color: #fff;
}

.footer-grid > div:last-child strong {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 24px;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 24px;
  margin-top: 14px;
}

.social-icons a {
  width: auto;
  height: auto;
  color: #fff;
  background: transparent;
  font-size: 30px;
  line-height: 1;
}

.social-icons a[aria-label="LinkedIn"] {
  color: #0a66c2;
}

.social-icons a[aria-label="Instagram"] i {
  background: radial-gradient(circle at 30% 108%, #feda75 0, #fa7e1e 24%, #d62976 52%, #962fbf 78%, #4f5bd5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-icons img {
  width: 30px;
  height: 30px;
  display: block;
}

.twa-footer .copyright {
 margin-top: 29px;
    padding: 18px 0;
    color: #fff;
    background: transparent;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payoneer-btn {
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #ff4800, #ff7a00, #00a7e1) border-box;
  color: #fff;
  font-size: 15px;
  font-weight: 700 !important;
  line-height: 1;
}

.payoneer-btn img {
  width: 112px;
  height: auto;
  display: block;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.footer-payment-icons .payoneer-btn {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  
}

.footer-payment-icons .payoneer-btn img {
  width: 60px;
  max-height: 24px;
  object-fit: contain;
}

.footer-payment-icons > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
  background:#fff;
  color: #fff;
  font-size: 21px;
  line-height: 1;
}

.footer-payment-icons > span i {
  background: linear-gradient(135deg, #00c2e0, #3422db, #ed1e79, #f7931e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.payoneer-btn:hover,
.payoneer-btn:focus-visible {
  background:
    linear-gradient(#f7f7f7, #f7f7f7) padding-box,
    linear-gradient(90deg, #ff4800, #ff7a00, #00a7e1) border-box;
  color: #fff;
  outline: 0;
}

.footer-payment-icons .payoneer-btn:hover,
.footer-payment-icons .payoneer-btn:focus-visible {
  background: rgba(255, 255, 255, .14);
}

@media (max-width: 1199.98px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-grid .section-heading {
    grid-column: 1 / -1;
  }

  .work-gallery .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .work-gallery .section-top {
    grid-column: 1 / -1;
    min-height: auto;
    margin-bottom: 8px;
  }

  .work-card,
  .work-card.wide,
  .work-card:not(.wide),
  .work-grid > .work-card:nth-child(2),
  .work-grid > .work-card:nth-child(3),
  .work-grid > .work-card:nth-child(4),
  .work-grid > .work-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .process-line {
    margin-top: 0;
    padding-left: 0;
  }

  .process-line::before {
    left: 70px;
  }

  .process-section .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-section .section-heading {
    max-width: 360px;
  }

  .process-line {
    gap: 24px;
  }

  .process-line p {
    font-size: 15px;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    padding: 12px 0;
    background: rgba(0, 0, 0, .96);
  }

  .navbar-collapse {
    padding: 18px 0;
  }

  .twa-hero {
    min-height: auto;
    padding: 140px 0 56px;
  }

  .hero-shell {
    min-height: 0;
    display: block;
  }

  .hero-carousel,
  .hero-carousel .owl-stage-outer,
  .hero-carousel .owl-stage,
  .hero-carousel .owl-item,
  .hero-slide {
    min-height: 0;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 320px;
    margin-top: -18px;
  }

  .hero-pager {
    display: none;
  }

  .brand-strip .container {
    display: block;
  }

  .brand-strip p {
    width: auto;
    margin-bottom: 22px;
  }

  .brand-row {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .insights-section .section-top > a {
    margin-right: 0;
  }

  .process-line {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 38px;
  }

  .process-line::before {
    display: none;
  }

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

  .quote-card {
    min-height: auto;
    padding: 28px 24px 58px;
  }

  .quote-card .quote-prev,
  .quote-card .quote-next {
    display: none;
  }

  .quote-content {
    max-width: none;
  }

  .quote-card blockquote {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .logo {
    width: 120px;
  }

  .hero-tabs {
    gap: 20px;
    font-size: 14px;
  }

  .hero-actions,
  .section-top,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-gallery {
    padding-top: 28px;
    padding-bottom: 54px;
  }
.twa-footer .copyright{
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
  .work-gallery .container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-gallery .section-top {
    display: flex;
    gap: 20px;
  }

  .work-gallery .section-top > a {
    position: static;
    font-size: 18px;
  }

  .insights-section {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .insights-section .section-top > a {
    margin-top: 0;
  }

  .insight-card {
    min-height: 230px;
  }

  .insight-card h3 {
    right: 68px;
    font-size: 18px;
  }

  .footer-brand span {
    font-size: 72px;
  }

  .footer-brand small {
    font-size: 18px;
    letter-spacing: 6px;
  }

  .footer-grid > div:last-child strong {
    position: static;
    width: auto;
    margin-top: 24px;
    text-align: left;
  }

  .solutions-grid,
  .work-grid,
  .process-line,
  .stats-row,
  .insight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-section {
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .process-line {
    gap: 34px;
  }

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

  .process-line h3 {
    margin-bottom: 12px;
  }

  .client-love {
    padding-top: 34px;
  }

  .quote-card blockquote {
    font-size: 16px;
    line-height: 1.45;
  }

  .quote-card blockquote span {
    margin-right: 10px;
    font-size: 62px;
  }

  .quote-person img {
    width: 54px;
    height: 54px;
  }

  .stats-row {
    margin-top: 46px;
  }

  .stat-item {
    grid-template-columns: 76px minmax(0, auto);
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding: 0 0 18px;
  }

  .stat-item-text {
    grid-template-columns: auto;
    padding-left: 104px;
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .stat-icon {
    width: 76px;
    height: 76px;
  }

  .stat-icon img {
    width: 64px;
    height: 64px;
  }

  .work-card,
  .insight-card {
    min-height: 230px;
  }

  .cta-band {
    justify-content: flex-start;
    gap: 24px;
    padding: 28px 20px;
  }
}

/* Contact page */
.contact-page {
  background: #000;
}

.contact-hero {
  min-height: 720px;
  padding: 150px 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--home-line);
}

.contact-hero-shell {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
}

.contact-hero-copy {
  width: min(620px, 52%);
  position: relative;
  z-index: 2;
}

.contact-eyebrow {
  display: block;
  margin-bottom: 18px;
  width: fit-content;
  background: linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-hero-copy p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-hero-art {
  position: absolute;
  top: -40px;
  right: -80px;
  bottom: -60px;
  width: 72%;
  z-index: 1;
  pointer-events: none;
}

.contact-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .82) 20%, rgba(0, 0, 0, .18) 46%, rgba(0, 0, 0, 0) 68%, #000 100%);
  z-index: 2;
}

.contact-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.contact-details-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.35fr);
  gap: 56px;
  align-items: start;
}

.contact-info-list {
  display: grid;
  gap: 42px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.contact-info-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(135deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;
}

.contact-info-icon img {
  width: 34px;
  height: 34px;
}

.contact-info-item h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-info-item a:hover {
  color: #fff;
}

.contact-form-panel {
  padding: 34px 34px 38px;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .02);
}

.contact-form-panel label {
  display: block;
  margin-bottom: 22px;
}

.contact-form-panel label span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  font-weight: 500;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  color: #fff;
  background: rgba(0, 0, 0, .35);
  font-family: inherit;
  font-size: 16px;
  transition: border-color .2s ease;
border: 2px solid transparent;
    background: linear-gradient(#050505, #050505) padding-box, linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;}

.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder {
  color: rgba(255, 255, 255, .34);
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .34);
}

.contact-form-panel textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-submit-btn {
  min-width: 210px;
  margin-top: 4px;
}

body.contact-modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .76);
  backdrop-filter: blur(8px);
}

.contact-modal-dialog {
  width: min(760px, 100%);
  max-height: min(88vh, 780px);
  position: relative;
  z-index: 1;
  overflow-y: auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 8, 8, .98), rgba(2, 2, 2, .98)) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .5);
  transform: translateY(16px);
  transition: transform .2s ease;
}

.contact-modal.is-open .contact-modal-dialog {
  transform: translateY(0);
}

.contact-modal-close {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  font-size: 18px;
  transition: border-color .2s ease, background .2s ease;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1);
}

.contact-modal-copy {
  max-width: 560px;
  padding-right: 52px;
  margin-bottom: 22px;
}

.contact-modal-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--home-cyan);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-modal-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-modal-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.45;
}

.contact-modal-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-modal-form textarea {
  min-height: 130px;
}

.contact-offices-section {
  padding-top: 34px;
  padding-bottom: 72px;
}

.contact-offices-heading {
  max-width: 520px;
  margin-bottom: 34px;
}

.contact-offices-heading h2 {
  font-size: clamp(30px, 3vw, 38px);
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-office-card {
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #020202;
}

.contact-office-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.contact-office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-office-body {
  padding: 24px 24px 28px;
}

.contact-office-body h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-office-body p {
  margin: 0 0 22px;
  min-height: 78px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.45;
}

.contact-office-body a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-office-body a i {
  font-size: 13px;
}

.contact-faq-section {
  padding-top: 34px;
  padding-bottom: 72px;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  gap: 48px;
  align-items: center;
}

.contact-faq-list {
  margin-top: 34px;
}

.contact-faq-item {
  border-bottom: 2px solid rgba(255, 255, 255, .16);
}

.contact-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  color: #fff;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.contact-faq-trigger i {
  color: var(--home-gold);
  font-size: 16px;
  transition: transform .25s ease;
}

.contact-faq-item.is-open .contact-faq-trigger i {
  transform: rotate(45deg);
}

.contact-faq-panel {
  display: none;
  padding: 0 0 22px;
}

.contact-faq-item.is-open .contact-faq-panel {
  display: block;
}

.contact-faq-panel p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.55;
}

.contact-faq-art {
  position: relative;
  min-height: 420px;
}

.contact-faq-art img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  object-position: center;
}

.contact-cta-wrap {
  padding-bottom: 72px;
}

.contact-cta-band {
  background-image: url("../img/ready-bg.png");
  justify-content: space-between;
}

/* Portfolio page */
.portfolio-page {
  background: #000;
}

.portfolio-hero {
  min-height: 745px;
  padding-top: 94px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: #000;
  overflow: hidden;
}

.portfolio-hero-shell {
  min-height: 610px;
  position: relative;
  display: flex;
  align-items: center;
}

.portfolio-hero-copy {
  width: min(540px, 46%);
  position: relative;
  z-index: 2;
}

.portfolio-eyebrow {
  display: block;
  margin-bottom: 14px;
  width: fit-content;
  background: linear-gradient(90deg, #00c2e0 0%, #3422db 40%, #ed1e79 72%, #f7931e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-hero-copy h1 {
  max-width: 600px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}

.portfolio-hero-copy p {
  max-width: 430px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 21px;
  line-height: 1.45;
}

.portfolio-hero-stats {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.portfolio-hero-stats > div {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 12px 22px;
}

.portfolio-hero-stats > div + div {
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.portfolio-hero-stats img {
  width: 34px;
  height: 34px;
  grid-row: span 2;
  object-fit: contain;
}

.portfolio-hero-stats strong {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.portfolio-hero-stats span {
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.portfolio-hero-art {
  position: absolute;
  top: 0;
  right: -52px;
  bottom: 0;
  width: 78%;
  z-index: 1;
}

.portfolio-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .9) 20%, rgba(0, 0, 0, .16) 48%, rgba(0, 0, 0, 0) 72%, #000 100%);
}

.portfolio-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.portfolio-work-section {
  padding-top: 36px;
}

.portfolio-section-top {
  margin-bottom: 24px;
}

.portfolio-section-top .section-heading h2 {
  max-width: 780px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  text-transform: none;
}

.portfolio-view-btn {
  min-width: 128px;
  align-self: end;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.portfolio-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 56px;
  margin-bottom: 58px;
}

.portfolio-filter-nav button {
  position: relative;
  padding: 0 0 16px;
  border: 0;
  color: transparent;
  background: linear-gradient(90deg, #f5a400 0%, #f7931e 52%, #ff5a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-filter-nav button:nth-child(2) {
  background-image: linear-gradient(90deg, #f5a400 0%, #f7931e 46%, #ed1e79 100%);
}

.portfolio-filter-nav button:nth-child(3) {
  background-image: linear-gradient(90deg, #ed1e79 0%, #ac27ff 48%, #3422db 100%);
}

.portfolio-filter-nav button:nth-child(4) {
  background-image: linear-gradient(90deg, #00c2e0 0%, #00d8ff 50%, #00ffea 100%);
}

.portfolio-filter-nav button::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #00c2e0, #ffd23f);
  transition: width .2s ease;
}

.portfolio-filter-nav button.active::after,
.portfolio-filter-nav button:hover::after {
  width: 100%;
}

.portfolio-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
}

.portfolio-work-card {
  display: block;
}

.portfolio-work-card.is-hidden {
  display: none;
}

.portfolio-work-card a {
  display: block;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#060606, #060606) padding-box,
    linear-gradient(135deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.portfolio-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .32s ease, filter .32s ease;
}

.portfolio-work-card a:hover img,
.portfolio-work-card a:focus-visible img {
  transform: scale(1.04);
  filter: brightness(.92);
}

.portfolio-stats-wrap {
  padding-bottom: 64px;
}

.portfolio-stats-row {
  margin: 0;
  padding: 24px 0;
  align-items: center;
  border: 2px solid transparent;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.portfolio-stats-row .stat-item {
  min-height: 98px;
  padding-top: 0;
  padding-bottom: 0;
}

.portfolio-cta-wrap {
  padding-bottom: 74px;
}

.portfolio-cta-band {
  background-image: url("../img/ready-bg.png");
  justify-content: space-between;
}

/* Careers page */
.careers-page {
  background: #000;
}

.careers-hero {
  min-height: 760px;
  padding-top: 96px;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.careers-hero-shell {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
}

.careers-hero-copy {
  width: min(560px, 48%);
  position: relative;
  z-index: 2;
}

.careers-eyebrow {
  display: block;
  margin-bottom: 14px;
  width: fit-content;
  background: linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.careers-hero-copy h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.careers-hero-copy p {
  max-width: 480px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .86);
  font-size: 21px;
  line-height: 1.58;
}

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

.careers-hero-art {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  width: 70%;
  z-index: 1;
}

.careers-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .88) 20%, rgba(0, 0, 0, .18) 48%, rgba(0, 0, 0, 0) 76%, #000 100%);
}

.careers-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.careers-section-title {
  margin: 0 0 24px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.careers-why {
  padding-top: 8px;
  padding-bottom: 54px;
}

.careers-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.careers-why-grid article {
  min-height: 215px;
  padding: 28px 26px 22px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .015);
}
.careers-why-grid article:hover{
border: 2px solid transparent;
    background: linear-gradient(#050505, #050505) padding-box, linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}
.careers-why-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  object-fit: contain;
}

.careers-why-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.careers-why-grid p {
  min-height: 56px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.45;
}

.careers-why-grid span {
  color: #fff;
  font-size: 15px;
}

.careers-openings {
  padding-top: 10px;
  padding-bottom: 54px;
}

.careers-openings-grid {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.careers-openings-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 9px;
}

.careers-openings-image img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.careers-job-list {
  display: grid;
  gap: 16px;
}

.careers-job-list article {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px 16px 24px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .012);
}

.careers-job-list h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.careers-job-list p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.careers-job-list p span {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin: 0 10px 2px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00c2e0, #ed1e79, #f7931e);
}

.careers-job-list .outline-btn {
  min-width: 158px;
  min-height: 46px;
  padding: 0 20px;
  font-size: 14px;
}

.careers-resume {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  font-weight: 700;
}

.careers-resume a {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-left: 18px;
  color: var(--home-cyan);
}

.careers-perks {
  padding-top: 28px;
  padding-bottom: 64px;
}

.careers-perks-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.careers-perks-row article {
  min-height: 118px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 0 22px;
  border-right: 2px solid rgba(255, 255, 255, .18);
  text-align: center;
}

.careers-perks-row article:last-child {
  border-right: 0;
}

.careers-perks-row img {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  object-fit: contain;
}

.careers-perks-row h3 {
  max-width: 140px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
}

.careers-life-wrap {
  padding-bottom: 44px;
}

.careers-life {
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: #050505;
}

.careers-life-copy {
  padding: 34px 30px;
}

.careers-life-copy h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  text-transform: uppercase;
}

.careers-life-copy p {
  max-width: 360px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.55;
}

.careers-life-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.careers-platforms-wrap {
  padding-bottom: 70px;
}

.careers-platforms {
  padding: 40px 58px;
}

.careers-platforms .service-logo-row-new {
  gap: 24px 32px;
}

.careers-platforms .service-logo-item-new {
  width: 55px;
  gap: 12px;
  font-size: 15px;
}

.careers-platforms .service-logo-item-new img {

}

.careers-platforms .service-logo-row-new.ecommerce {
  gap: 34px 24px;
}

.careers-platforms .service-logo-row-new.ecommerce img {
  max-width: 107px;
  max-height: 54px;
}

@media (max-width: 1199.98px) {
  .contact-details-grid {
    gap: 40px;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-faq-art {
    order: -1;
    min-height: 320px;
  }

  .contact-faq-art img {
    min-height: 320px;
  }

  .portfolio-hero-art {
    right: -150px;
    width: 86%;
  }

  .portfolio-work-card a {
    min-height: 320px;
  }

  .careers-hero-art {
    right: -130px;
    width: 78%;
  }

  .careers-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .careers-perks-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .careers-perks-row article:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 991.98px) {
  .contact-hero {
    min-height: auto;
    padding: 130px 0 56px;
  }

  .contact-hero-shell {
    min-height: 0;
    display: block;
  }

  .contact-hero-copy {
    width: 100%;
  }

  .contact-hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 320px;
    margin-top: 18px;
  }

  .contact-hero-art::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .2) 28%, rgba(0, 0, 0, 0) 58%, #000 100%);
  }

  .contact-details-grid,
  .contact-offices-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-modal {
    padding: 14px;
  }

  .contact-modal-dialog {
    max-height: 92vh;
    padding: 24px 18px;
  }

  .contact-modal-copy {
    padding-right: 44px;
  }

  .portfolio-hero {
    min-height: auto;
    padding: 130px 0 54px;
  }

  .portfolio-hero-shell {
    min-height: 0;
    display: block;
  }

  .portfolio-hero-copy {
    width: 100%;
  }

  .portfolio-hero-art {
    position: relative;
    right: auto;
    width: 100%;
    height: 360px;
    margin-top: 28px;
  }

  .portfolio-hero-art::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .2) 28%, rgba(0, 0, 0, 0) 62%, #000 100%);
  }

  .portfolio-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-filter-nav {
    gap: 20px 34px;
  }

  .careers-hero {
    min-height: auto;
    padding: 130px 0 56px;
  }

  .careers-hero-shell {
    min-height: 0;
    display: block;
  }

  .careers-hero-copy {
    width: 100%;
  }

  .careers-hero-art {
    position: relative;
    right: auto;
    width: 100%;
    height: 410px;
    margin-top: 30px;
  }

  .careers-hero-art::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .18) 26%, rgba(0, 0, 0, 0) 62%, #000 100%);
  }

  .careers-openings-grid,
  .careers-life,
  .careers-platforms {
    grid-template-columns: 1fr;
  }

  .careers-openings-grid {
    gap: 30px;
  }

  .careers-openings-image img {
    min-height: 360px;
  }

  .careers-platforms > div + div {
    padding-top: 26px;
    padding-left: 0;
    border-top: 2px solid transparent;
    border-left: 0;
    border-image: linear-gradient(90deg, #00c2e0, #ed1e79, #f7931e) 1;
  }

  .careers-platforms .service-logo-row-new.ecommerce img {
    max-width: 160px;
  }
}

@media (max-width: 767.98px) {
  .contact-hero-copy h1 {
    font-size: 34px;
  }

  .contact-hero-copy p {
    font-size: 18px;
  }

  .portfolio-hero-copy h1 {
    font-size: 38px;
  }

  .portfolio-hero-copy p {
    font-size: 18px;
  }

  .portfolio-hero-stats {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .portfolio-hero-stats > div + div {
    border-top: 1px solid rgba(255, 255, 255, .24);
    border-left: 0;
  }

  .portfolio-work-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-work-card a {
    min-height: 0;
  }

  .portfolio-filter-nav {
    margin-bottom: 34px;
  }

  .careers-hero-copy h1 {
    font-size: 38px;
  }

  .careers-hero-copy p {
    font-size: 18px;
  }

  .careers-hero-actions {
    gap: 14px;
  }

  .careers-why-grid {
    grid-template-columns: 1fr;
  }

  .careers-job-list article {
    display: grid;
    align-items: start;
  }

  .careers-job-list .outline-btn {
    width: fit-content;
  }

  .careers-resume a {
    margin: 10px 0 0;
  }

  .careers-perks-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .careers-perks-row article {
    border-right: 0;
  }

  .careers-life-copy {
    padding: 28px 22px;
  }

  .careers-platforms {
    padding: 24px 20px;
  }

  .careers-platforms .service-logo-item-new {
    width: 74px;
    font-size: 12px;
  }

  .careers-platforms .service-logo-item-new img {
    height: 50px;
    max-width: 62px;
  }

  .careers-platforms .service-logo-row-new.ecommerce {
    gap: 24px;
  }

  .careers-platforms .service-logo-row-new.ecommerce img {
    max-width: 132px;
    max-height: 44px;
  }

  .contact-form-panel {
    padding: 24px 20px 28px;
  }

  .contact-office-body p {
    min-height: 0;
  }

  .contact-faq-trigger {
    font-size: 16px;
  }
}

/* Blog page */
.blog-page {
  background: #000;
}

.blog-hero {
  min-height: 720px;
  padding: 150px 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--home-line);
}

.blog-hero-shell {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
}

.blog-hero-copy {
  width: min(620px, 52%);
  position: relative;
  z-index: 2;
}

.blog-eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-eyebrow-our {
  color: var(--home-cyan);
}

.blog-eyebrow-blog {
  color: var(--home-gold);
}

.blog-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.blog-hero-copy p {
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}

.blog-hero-cta {
  min-width: 220px;
}

.blog-hero-art {
  position: absolute;
  top: -40px;
  right: -80px;
  bottom: -60px;
  width: 72%;
  z-index: 1;
  pointer-events: none;
}

.blog-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .82) 20%, rgba(0, 0, 0, .18) 46%, rgba(0, 0, 0, 0) 68%, #000 100%);
  z-index: 2;
}

.blog-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.blog-content-section {
  padding-top: 48px;
  padding-bottom: 64px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.blog-main-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.blog-main-top h2 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-search {
  position: relative;
  width: min(100%, 320px);
}

.blog-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 54px 0 18px;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .03);
  font-family: inherit;
  font-size: 15px;
}

.blog-search input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.blog-search input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .34);
}

.blog-search button {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.blog-search button img {
  width: 18px;
  height: 18px;
}

.blog-post-list {
  display: grid;
  gap: 22px;
}

.blog-post-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #020202;
}

.blog-post-card.reverse {
  direction: rtl;
}

.blog-post-card.reverse > * {
  direction: ltr;
}

.blog-post-media {
  display: block;
  min-height: 250px;
  overflow: hidden;
}

.blog-post-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.blog-post-body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-tag {
  display: inline-block;
  margin-bottom: 14px;
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f7931e 0%, #ffd23f 25%, #ed1e79 50%, #3422db 75%, #00c2e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blog-tag.strategy {
  background: linear-gradient(90deg, #00c2e0, #3422db, #ed1e79);
  -webkit-background-clip: text;
  background-clip: text;
}

.blog-tag.marketing {
  background: linear-gradient(90deg, #ed1e79, #ffd23f, #f7931e);
  -webkit-background-clip: text;
  background-clip: text;
}

.blog-tag.development {
  background: linear-gradient(90deg, #3422db, #00c2e0, #ed1e79);
  -webkit-background-clip: text;
  background-clip: text;
}

.blog-tag.seo {
  background: linear-gradient(90deg, #ffd23f, #f7931e, #ed1e79);
  -webkit-background-clip: text;
  background-clip: text;
}

.blog-post-body h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.25;
}

.blog-post-body h3 a {
  color: #fff;
}

.blog-post-body h3 a:hover {
  color: #fff;
}

.blog-post-body p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.55;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.blog-post-meta span img {
  width: 16px;
  height: 16px;
}

.blog-post-meta > a {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-post-meta > a i {
  font-size: 12px;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.blog-pagination a {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  font-weight: 600;
}

.blog-pagination a.active,
.blog-pagination a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
}

.blog-sidebar {
  display: grid;
  gap: 22px;
}

.blog-widget {
  padding: 24px 22px 26px;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #020202;
}

.blog-widget h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-categories li + li {
  margin-top: 12px;
}

.blog-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
}

.blog-categories a:hover,
.blog-categories a span {
  color: #fff;
}

.blog-popular-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.blog-popular-list a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.blog-popular-list img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.blog-popular-list strong,
.blog-popular-list small {
  display: block;
}

.blog-popular-list strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.blog-popular-list small {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.blog-newsletter {
  text-align: center;
}

.blog-newsletter-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
}

.blog-newsletter-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blog-newsletter p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.5;
}

.blog-newsletter-form {
  display: grid;
  gap: 14px;
}

.blog-newsletter-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  color: #fff;
  background: rgba(0, 0, 0, .35);
  font-family: inherit;
  font-size: 14px;
  text-align: left;
}

.blog-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.blog-newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .34);
}

.blog-newsletter-form .outline-btn {
  width: 100%;
}

.blog-cta-wrap {
  padding-bottom: 72px;
}

.blog-cta-band {
  background-image: url("../img/ready-bg.png");
  justify-content: space-between;
}

@media (max-width: 1199.98px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
  }
}

@media (max-width: 991.98px) {
  .blog-hero {
    min-height: auto;
    padding: 130px 0 56px;
  }

  .blog-hero-shell {
    min-height: 0;
    display: block;
  }

  .blog-hero-copy {
    width: 100%;
  }

  .blog-hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 320px;
    margin-top: 18px;
  }

  .blog-hero-art::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .2) 28%, rgba(0, 0, 0, 0) 58%, #000 100%);
  }

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

  .blog-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .blog-hero-copy h1 {
    font-size: 34px;
  }

  .blog-hero-copy p {
    font-size: 18px;
  }

  .blog-main-top {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-search {
    width: 100%;
  }

  .blog-post-card,
  .blog-post-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .blog-post-media {
    min-height: 220px;
  }

  .blog-post-media img {
    min-height: 220px;
  }

  .blog-post-body {
    padding: 22px 20px 24px;
  }

  .blog-post-meta > a {
    margin-left: 0;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Blog details page */
.blog-detail-page {
  min-height: 100vh;
}

.blog-detail-hero {
  padding: 145px 0 58px;
  background: #000;
  border-bottom: 1px solid var(--home-line);
}

.blog-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-detail-back:hover {
  color: #fff;
}

.blog-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.blog-detail-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.blog-detail-hero-copy p {
  max-width: 650px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.65;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.blog-detail-meta img {
  width: 16px;
  height: 16px;
}

.blog-detail-hero-media {
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #020202;
  aspect-ratio: 16 / 9;
}

.blog-detail-hero-media img {
  width: 100%;
  height: 100% !important;
  min-height: 0;
  object-fit: cover;
}

.blog-detail-content-section {
  padding-top: 58px;
  padding-bottom: 64px;
}

.blog-detail-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.blog-detail-article {
  padding: 42px 46px;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #020202;
}

.blog-detail-article h2 {
  margin: 38px 0 14px;
  color: #fff;
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 500;
  line-height: 1.18;
  text-transform: uppercase;
}

.blog-detail-article p,
.blog-detail-article li {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.72;
}

.blog-detail-article p {
  margin: 0 0 18px;
}

.blog-detail-article .blog-detail-lead {
  color: rgba(255, 255, 255, .9);
  font-size: 21px;
  line-height: 1.62;
}

.blog-detail-article ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.blog-detail-article li::marker {
  color: var(--home-gold);
}

.blog-detail-article blockquote {
  margin: 34px 0;
  padding: 26px 30px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: linear-gradient(#050505, #050505) padding-box, linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;
}

.blog-detail-article blockquote p {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.blog-detail-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.blog-detail-share span {
  margin-right: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-detail-share a {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #fff;
  transition: border-color .2s ease, background .2s ease;
}

.blog-detail-share a:hover {
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .08);
}

@media (max-width: 1199.98px) {
  .blog-detail-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .blog-detail-hero-grid {
    gap: 28px;
  }
}

@media (max-width: 991.98px) {
  .blog-detail-hero {
    padding-top: 130px;
  }

  .blog-detail-hero-grid,
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-hero-media img {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .blog-detail-hero {
    padding-bottom: 42px;
  }

  .blog-detail-hero-copy h1 {
    font-size: 34px;
  }

  .blog-detail-hero-copy p,
  .blog-detail-article .blog-detail-lead {
    font-size: 18px;
  }

  .blog-detail-article {
    padding: 28px 22px;
  }

  .blog-detail-article h2 {
    margin-top: 30px;
  }

  .blog-detail-article blockquote {
    padding: 22px;
  }

  .blog-detail-article blockquote p {
    font-size: 19px;
  }
}

/* Pricing page */
.pricing-page {
  background: #000;
}

.pricing-hero {
  min-height: 720px;
  padding: 150px 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--home-line);
}

.pricing-hero-shell {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
}

.pricing-hero-copy {
  width: min(620px, 52%);
  position: relative;
  z-index: 2;
}

.pricing-eyebrow {
  display: block;
  margin-bottom: 18px;
  width: fit-content;
  background: linear-gradient(90deg, #f7931e 0%, #ffd23f 35%, #ed1e79 70%, #3422db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

.pricing-hero-copy p {
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}

.pricing-hero-cta {
  margin-bottom: 26px;
}

.pricing-hero-art {
  position: absolute;
  top: -40px;
  right: -80px;
  bottom: -60px;
  width: 72%;
  z-index: 1;
  pointer-events: none;
}

.pricing-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .82) 20%, rgba(0, 0, 0, .18) 46%, rgba(0, 0, 0, 0) 68%, #000 100%);
  z-index: 2;
}

.pricing-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.pricing-hero-pager {
  right: -66px;
}

.pricing-section {
  padding-top: 48px;
  padding-bottom: 64px;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.pricing-tabs button {
  position: relative;
  padding: 0 0 10px;
  border: 0;
  color: rgba(255, 255, 255, .62);
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s ease;
}

.pricing-tabs button.active {
  color: #fff;
}

.pricing-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #f7931e, #ed1e79, #3422db);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 100%;
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #020202;
}

.pricing-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(180deg, #ff168e 0%, #ed1e79 45%, #3422db 100%) border-box;
  box-shadow: 0 0 28px rgba(255, 22, 142, .18);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 132px;
  padding: 6px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #ed1e79, #ff168e);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.pricing-card-head {
  min-height: 168px;
  margin-bottom: 18px;
}

.pricing-plan-label {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pricing-card.starter .pricing-plan-label {
  color: var(--home-gold);
}

.pricing-card.growth .pricing-plan-label {
  color: var(--home-pink);
}

.pricing-card.pro .pricing-plan-label {
  color: #6b8cff;
}

.pricing-card.enterprise .pricing-plan-label {
  color: var(--home-cyan);
}

.pricing-card-head p {
  margin: 0 0 18px;
  min-height: 44px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.pricing-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing-price {
  margin-bottom: 22px;
  color: #fff;
}

.pricing-price strong {
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.pricing-price span {
  margin-left: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-features li + li {
  margin-top: 12px;
}

.pricing-features li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-family: "Font Awesome 6 Free";
  font-size: 9px;
  font-weight: 900;
}

.pricing-card.starter .pricing-features li::before {
  background: linear-gradient(135deg, #f7931e, #ffd23f);
}

.pricing-card.growth .pricing-features li::before {
  background: linear-gradient(135deg, #ed1e79, #ff168e);
}

.pricing-card.pro .pricing-features li::before {
  background: linear-gradient(135deg, #3422db, #6b8cff);
}

.pricing-card.enterprise .pricing-features li::before {
  background: linear-gradient(135deg, #00c2e0, #00c7f5);
}

.pricing-card-btn {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  font-size: 13px;
}

.pricing-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  padding: 22px 24px;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .02);
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.pricing-trust-item img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
}

.pricing-cta-wrap {
  padding-bottom: 72px;
}

.pricing-cta-band {
  background-image: url("../img/ready-bg.png");
  justify-content: space-between;
}

@media (max-width: 1199.98px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .pricing-hero {
    min-height: auto;
    padding: 130px 0 56px;
  }

  .pricing-hero-shell {
    min-height: 0;
    display: block;
  }

  .pricing-hero-copy {
    width: 100%;
  }

  .pricing-hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 320px;
    margin-top: 18px;
  }

  .pricing-hero-art::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .2) 28%, rgba(0, 0, 0, 0) 58%, #000 100%);
  }

  .pricing-hero-pager {
    display: none;
  }

  .pricing-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .pricing-hero-copy h1 {
    font-size: 34px;
  }

  .pricing-hero-copy p {
    font-size: 18px;
  }

  .pricing-tabs {
    gap: 8px 0;
  }

  .pricing-tabs button {
    width: 100%;
    text-align: left;
  }

  .pricing-grid,
  .pricing-trust {
    grid-template-columns: 1fr;
  }
}

/* Hosting & brand pages */
.hosting-page,
.brand-page {
  background: #000;
}

.site-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, .98), rgba(0, 0, 0, .72) 76%, rgba(0, 0, 0, 0));
}

.hosting-showcase-hero {
  min-height: 760px;
  padding: 132px 0 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--home-line);
}

.hosting-showcase-hero .container {
  max-width: 1720px;
  padding-right: 86px;
  padding-left: 86px;
}

.hosting-hero-shell {
  min-height: 588px;
  position: relative;
  display: flex;
  align-items: center;
}

.hosting-hero-copy {
  width: min(620px, 38%);
  position: relative;
  z-index: 2;
  padding-top: 24px;
}

.hosting-hero-copy h1,
.hosting-split-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(54px, 4.25vw, 58px);
  font-weight: 600;
  line-height: 1.17;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hosting-hero-copy p,
.hosting-split-copy p {
  max-width: 560px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.46;
}

.hosting-hero-art {
  position: absolute;
  top: -128px;
  right: -72px;
  bottom: -76px;
  width: 69%;
  z-index: 1;
  pointer-events: none;
}

.hosting-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .94) 8%, rgba(0, 0, 0, .62) 24%, rgba(0, 0, 0, .04) 48%, rgba(0, 0, 0, 0) 78%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 76%, #000 100%);
}

.hosting-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.hosting-hero-pager {
  right: -34px;
  top: 34%;
  gap: 28px;
  font-size: 31px;
}

.hosting-hero-copy .hero-actions {
  gap: 56px;
  margin-bottom: 36px;
}

.hosting-hero-copy .outline-btn {
  min-width: 196px;
  min-height: 66px;
  padding: 0 28px;
  font-size: 20px;
  text-transform: none;
}

.hosting-hero-copy .scroll-link {
  gap: 44px;
  font-size: 21px;
  letter-spacing: .02em;
}

.hosting-hero-copy .scroll-link span {
  width: 58px;
  height: 58px;
  font-size: 25px;
}

.hosting-services {
  padding-top: 38px;
  padding-bottom: 42px;
  background: #000;
}

.hosting-kicker {
  margin-bottom: 22px;
}

.hosting-kicker h2 {
  display: none;
}

.hosting-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.hosting-card-grid .solution-card {
  min-height: 218px;
  padding: 25px 28px 26px;
  border-radius: 6px;
  background: #020202;
}

.hosting-card-grid .solution-card h3 {
  margin: 20px 0 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-transform: none;
}

.hosting-card-grid .solution-card p {
  margin: 0;
  color: rgba(255, 255, 255, .78);

  line-height: 1.48;
}

.hosting-card-grid .solution-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}

.hosting-card-grid .solution-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.hosting-process-section {
  padding-top: 38px;
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: #000;
}

.hosting-process-section .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: start;
}

.hosting-process-section .section-heading {
  max-width: 280px;
}

.hosting-process-section .section-heading h2 {
  font-size: clamp(28px, 2.65vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.hosting-split-section {
  padding: 54px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: #000;
}

.hosting-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 46px;
  align-items: center;
}

.hosting-split-art {
  min-height: 420px;
  overflow: hidden;
}

.hosting-split-art img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  object-position: center left;
}

.hosting-split-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.hosting-split-copy .hero-actions {
  gap: 26px;
}

.hosting-split-copy .outline-btn {
  min-width: 196px;
  min-height: 58px;
  font-size: 18px;
  text-transform: none;
}

.hosting-stats-wrap {
  padding-top: 38px;
  padding-bottom: 24px;
}

.hosting-stats {
  margin: 0;
  padding: 17px 0;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .02);
}

.hosting-stats .stat-item {
  border-right-color: rgba(255, 255, 255, .28);
}

.hosting-stats strong {
  font-size: clamp(28px, 2.5vw, 36px);
}

.hosting-stats span:not(.stat-icon) {
  font-size: 13px;
  letter-spacing: .03em;
}

.hosting-process-section-last {
  padding-top: 18px;
  border-bottom: 0;
}

.hosting-page .section-heading span,
.brand-page .section-heading span {
  background: linear-gradient(90deg, #f7931e 0%, #ffd23f 25%, #ed1e79 50%, #3422db 75%, #00c2e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
}

.hosting-page .process-line article > i,
.hosting-page .process-icon,
.brand-page .process-line article > i,
.brand-page .process-icon {
  width: 72px;
  height: 72px;
}

.hosting-page .process-icon img,
.brand-page .process-icon img {
  width: 38px;
  height: 38px;
}

.hosting-page .process-line::before,
.brand-page .process-line::before {
  top: 35px;
  border-top: 2px dashed rgba(150, 124, 255, .82);
}

.hosting-page .process-line h3,
.brand-page .process-line h3 {
  font-size: 16px;
  letter-spacing: .04em;
}

.hosting-page .process-line p,
.brand-page .process-line p {
  max-width: 160px;

  line-height: 1.5;
}

@media (max-width: 1199.98px) {
  .hosting-showcase-hero .container {
    padding-right: 42px;
    padding-left: 42px;
  }

  .hosting-hero-copy {
    width: min(560px, 46%);
  }

  .hosting-hero-copy h1 {
    font-size: clamp(46px, 5vw, 58px);
  }

  .hosting-hero-copy p {
    font-size: 22px;
  }

  .hosting-hero-art {
    right: -110px;
    width: 76%;
  }

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

  .hosting-process-section .container {
    grid-template-columns: 1fr;
  }

  .hosting-process-section .section-heading {
    max-width: 420px;
  }
}

@media (max-width: 991.98px) {
  .hosting-showcase-hero .container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hosting-showcase-hero {
    min-height: auto;
    padding: 130px 0 48px;
  }

  .hosting-hero-shell {
    min-height: 0;
    display: block;
  }

  .hosting-hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .hosting-hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 330px;
    margin-top: 18px;
  }

  .hosting-hero-art::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .12) 38%, #000 100%);
  }

  .hosting-hero-pager {
    display: none;
  }

  .hosting-hero-copy .hero-actions {
    gap: 18px;
    margin-bottom: 28px;
  }

  .hosting-hero-copy .outline-btn {
    min-width: 0;
    min-height: 52px;
    font-size: 16px;
  }

  .hosting-hero-copy .scroll-link {
    gap: 16px;
    font-size: 15px;
  }

  .hosting-hero-copy .scroll-link span {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .hosting-split-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hosting-split-art,
  .hosting-split-art img {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .hosting-hero-copy h1,
  .hosting-split-copy h2 {
    font-size: 34px;
    letter-spacing: 0;
  }

  .hosting-hero-copy p,
  .hosting-split-copy p {
    font-size: 18px;
  }

  .hosting-showcase-hero .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hosting-hero-copy .hero-actions {
    gap: 14px;
  }

  .hosting-hero-copy .outline-btn {
    width: 100%;
  }

  .hosting-card-grid {
    grid-template-columns: 1fr;
  }

  .hosting-card-grid .solution-card {
    min-height: 0;
  }

  .hosting-split-section {
    padding-top: 38px;
  }
}

/* About page */
.about-page {
  background: #000;
}

.site-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, .98), rgba(0, 0, 0, .72) 76%, rgba(0, 0, 0, 0));
}

.navbar .nav-link.active {
  padding: 6px 14px;
  border: 1px solid rgba(0, 194, 224, .72);
  border-radius: 6px;
}

.about-hero {
  position: relative;
  min-height: 760px;
  padding: 132px 0 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--home-line);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.about-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .88) 34%, rgba(0, 0, 0, .42) 58%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 72%, #000 100%);
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.about-hero-shell {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.about-hero-copy {
  width: min(760px, 58%);
  padding-top: 24px;
}

.about-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(46px, 3.6vw, 58px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.about-hero-copy p {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.46;
  text-transform: lowercase;
}

.about-hero-copy .hero-actions {
  gap: 28px;
  margin-bottom: 32px;
}

.about-hero-copy .outline-btn {
  min-width: 196px;
  min-height: 58px;
  font-size: 16px;
}

.about-hero-copy .scroll-link {
  gap: 18px;
  font-size: 16px;
}

.about-hero-pager {
  position: absolute;
  right: -34px;
  top: 34%;
  z-index: 2;
  display: grid;
  gap: 28px;
  color: rgba(255, 255, 255, .34);
  font-size: 28px;
  font-weight: 600;
}

.about-values-section {
  padding-top: 54px;
  padding-bottom: 48px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .34), rgba(0, 0, 0, .58)),
    url("../img/about-second-bg.png") center 58% / cover no-repeat;
}

.about-values-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 34px 42px;
  align-items: start;
}

.about-values-copy {
  padding-top: 8px;
}

.about-eyebrow {
  display: block;
  margin-bottom: 16px;
  width: fit-content;
  background: linear-gradient(90deg, #f7931e 0%, #ffd23f 35%, #ed1e79 70%, #3422db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-values-copy h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}

.about-values-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.58;
}

.about-values-cards {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-value-card {
  min-height: 320px;
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(0, 0, 0, .9);
}
.cardhover:hover{
      transition: .3s;
      border: 2px solid transparent;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;
}
.about-value-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-value-card p {
  margin: 0 0 auto;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.52;
}

.about-value-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-top: 28px;
}

.about-value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-values-dots {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.about-values-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .24);
}

.about-values-dots span.active {
  background: linear-gradient(135deg, #00c2e0, #ed1e79);
}

.about-message-section {
  padding-top: 34px;
  padding-bottom: 72px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.about-message-wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-message-heading h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-message-heading p {
  position: relative;
  margin: 0 0 34px;
  padding-bottom: 14px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.about-message-heading p::after,
.about-message-heading-secondary h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(290px, 48vw);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00c2e0 0%, #3422db 28%, #ed1e79 58%, #f7931e 100%);
}

.about-message-heading-secondary {
  margin-top: 42px;
}

.about-message-heading-secondary h2 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.about-message-body p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.72;
  text-align: center;
}

.about-message-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-values-cards,
  .about-values-dots {
    grid-column: 1;
  }

  .about-values-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .about-hero {
    min-height: auto;
    padding: 130px 0 48px;
  }

  .about-hero-shell {
    min-height: 0;
    display: block;
  }

  .about-hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .about-hero-pager {
    display: none;
  }

  .about-hero-bg img {
    object-position: center;
  }

  .brand-strip .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .brand-row {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .about-hero-copy h1 {
    font-size: 34px;
    letter-spacing: 0;
  }

  .about-hero-copy p {
    font-size: 18px;
  }

  .about-hero-copy .outline-btn {
    width: 100%;
  }

  .about-values-cards {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    min-height: 0;
  }

  .brand-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-message-body p {
    font-size: 16px;
    text-align: left;
  }
}

/* App design page */
.app-design-page {
  background: #000;
}

.site-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, .98), rgba(0, 0, 0, .68) 76%, rgba(0, 0, 0, 0));
}

.navbar .nav-link.active {
  padding: 6px 16px;
  border: 1px solid rgba(0, 194, 224, .75);
  border-radius: 7px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.app-hero {
  min-height: 760px;
  padding: 136px 0 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
  background: #000;
}

.app-hero-shell {
  min-height: 590px;
  position: relative;
  display: flex;
  align-items: center;
}

.app-hero-copy {
  width: min(640px, 52%);
  position: relative;
  z-index: 3;
  padding-top: 28px;
}

.app-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.app-tabs span:first-child {
  color: var(--home-cyan);
}

.app-tabs span:nth-child(2) {
  color: var(--home-pink);
}

.app-tabs span:nth-child(3) {
  color: var(--home-gold);
}

.app-tabs span + span::before {
  content: ",";
  margin-right: 10px;
  color: rgba(255, 255, 255, .28);
}

.app-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(48px, 4.3vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.app-hero-copy p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .92);
  font-size: 22px;
  line-height: 1.55;
}

.app-hero-art {
  position: absolute;
  top: -36px;
  right: 54px;
  bottom: -12px;
  width: 53%;
  z-index: 1;
  pointer-events: none;
}

.app-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .84) 7%, rgba(0, 0, 0, .14) 35%, rgba(0, 0, 0, 0) 72%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 76%, #000 100%);
}

.app-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.app-hero-pager {
  right: -20px;
  top: 33%;
  gap: 28px;
  font-size: 25px;
}

.app-services {
  padding-top: 48px;
  padding-bottom: 44px;
}

.app-section-top {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 430px) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.app-section-top .section-heading h2,
.app-work .section-heading h2 {
  max-width: 480px;
  font-size: clamp(35px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  text-transform: none;
}

.app-section-top > p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 1.48;
}

.app-section-top > a,
.app-work .section-top > a {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.app-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.app-card-grid .solution-card {
  min-height: 280px;
  padding: 28px 34px 30px;
  border-radius: 14px;
  border-color: rgba(255, 255, 255, .36);
}

.app-card-grid .solution-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(135deg, #00c2e0 0%, #3422db 26%, #ed1e79 52%, #ffd23f 76%, #f7931e 100%) border-box;
}

.app-card-grid .solution-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.app-card-grid .solution-card h3 {
  margin: 22px 0 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
  text-transform: none;
}

.app-card-grid .solution-card p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.52;
}

.app-card-grid .solution-card a {
  font-size: 22px;
}

.app-work {
  padding-top: 34px;
  padding-bottom: 38px;
}

.app-work .section-top {
  margin-bottom: 32px;
  align-items: end;
}

.app-work .section-heading h2 {
  max-width: 420px;
}

.app-work-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  align-items: end;
}

.app-work-row img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.app-stats-wrap {
  padding-top: 14px;
  padding-bottom: 36px;
}

.app-stats {
  margin: 0;
  padding: 18px 0;
  border: 1px solid transparent;
  border-radius: 0;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #ffd23f, #f7931e) border-box;
}

.app-stats .stat-item {
  min-height: 96px;
  grid-template-columns: 90px minmax(90px, auto);
  padding: 0 34px;
}

.app-stats .stat-icon img {
  width: 50px;
  height: 50px;
}

.app-process {
  padding-top: 18px;
  padding-bottom: 62px;
}

.app-process .container {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 36px;
  align-items: start;
}

.app-process .section-heading h2 {
  font-size: clamp(38px, 3.1vw, 50px);
  font-weight: 500;
  line-height: 1.13;
  text-transform: none;
}

.app-process .process-line {
  gap: 42px;
}

.app-process .process-line::before {
  border-top: 2px solid;
  border-image: linear-gradient(90deg, #f7931e, #ed1e79, #3422db, #00c2e0, #f7931e) 1;
}

.app-process .process-icon {
  width: 78px;
  height: 78px;
}

.app-process .process-line h3 {
  font-size: 16px;
  line-height: 1.25;
  text-transform: none;
}

.app-process .process-line p {
  max-width: 150px;
  font-size: 14px;
  line-height: 1.55;
}

.app-cta-wrap {
  padding-bottom: 62px;
}

.app-cta-band {
  min-height: 215px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  overflow: hidden;
  padding: 40px 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(rgba(0, 0, 0, .38), rgba(0, 0, 0, .38)) padding-box,
    linear-gradient(90deg, #f7931e, #ed1e79, #3422db, #00c2e0) border-box;
}

.app-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/app-let's-talk-banner.png") center / cover no-repeat;
  opacity: .98;
}

.app-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .92) 32%, rgba(0, 0, 0, .74) 68%, rgba(0, 0, 0, .08));
}

.app-cta-band > * {
  position: relative;
  z-index: 1;
}

.app-cta-band h2 {
  max-width: 560px;
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
}

.app-cta-band p {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}

.app-cta-band .outline-btn {
  min-width: 210px;
  min-height: 60px;
  font-size: 18px;
}

@media (max-width: 1199.98px) {
  .app-hero-art {
    right: -38px;
    width: 58%;
  }

  .app-card-grid,
  .app-work-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-work-row {
    max-width: 760px;
    margin: 0 auto;
  }

  .app-process .container,
  .app-section-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .app-hero {
    min-height: auto;
    padding: 130px 0 48px;
  }

  .app-hero-shell {
    min-height: 0;
    display: block;
  }

  .app-hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .app-hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 420px;
    margin-top: 24px;
  }

  .app-hero-art::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .08) 34%, #000 100%);
  }

  .app-hero-pager {
    display: none;
  }

  .app-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-stats .stat-item:nth-child(2) {
    border-right: 0;
  }

  .app-stats .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

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

  .app-process .process-line::before {
    display: none;
  }

  .app-cta-band {
    justify-content: flex-start;
    gap: 28px;
  }
}

@media (max-width: 767.98px) {
  .app-hero-copy h1 {
    font-size: 34px;
    letter-spacing: 0;
  }

  .app-hero-copy p,
  .app-cta-band p {
    font-size: 18px;
  }

  .app-hero-copy .outline-btn,
  .app-cta-band .outline-btn {
    width: 100%;
  }

  .app-card-grid,
  .app-work-row,
  .app-stats,
  .app-process .process-line {
    grid-template-columns: 1fr;
  }

  .app-card-grid .solution-card {
    min-height: 0;
  }

  .app-work-row {
    max-width: 320px;
  }

  .app-stats .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .app-stats .stat-item:last-child {
    border-bottom: 0;
  }

  .app-cta-band {
    display: block;
    padding: 32px 22px;
  }

  .app-cta-band h2 {
    font-size: 25px;
  }

  .app-cta-band .outline-btn {
    margin-top: 22px;
  }
}

/* Digital marketing page */
.digital-marketing-page .digital-hero {
  min-height: 775px;
}

.digital-marketing-page .app-hero-copy {
  width: min(720px, 54%);
}

.digital-marketing-page .app-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.2vw, 58px);
  line-height: 1.12;
}

.digital-marketing-page .app-hero-copy p {
  max-width: 610px;
}

.digital-hero-art {
  top: -72px;
  right: -120px;
  bottom: -50px;
  width: 65%;
}

.digital-hero-art img {
  object-fit: contain;
  object-position: center right;
}

.digital-services {
  padding-bottom: 42px;
}

.digital-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.digital-card-grid .solution-card {
  min-height: 245px;
  padding: 28px 28px 24px;
}

.digital-card-grid .solution-icon {
  width: 72px;
  height: 72px;
}

.digital-card-grid .solution-icon img {
  width: 38px;
  height: 38px;
}

.digital-card-grid .solution-card h3 {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.12;
}

.digital-card-grid .solution-card p {
  font-size: 14px;
  line-height: 1.55;
}

.digital-stats-wrap {
  padding-top: 6px;
  padding-bottom: 34px;
}

.digital-process {
  padding-top: 24px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.digital-process .container {
  grid-template-columns: 300px 1fr;
}

.digital-process .section-heading h2 {
  max-width: 275px;
  font-size: clamp(38px, 3.25vw, 54px);
}

.digital-process-line {
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.digital-process-line::before {
  right: 42px;
  left: 42px;
}

.digital-process-line h3 {
  font-size: 15px;
}

.digital-work {
  padding-top: 58px;
  padding-bottom: 48px;
  background: #000;
}

.digital-work .section-top {
  align-items: end;
  margin-bottom: 36px;
}

.digital-work .section-heading h2 {
  max-width: none;
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.digital-work .section-top > a {
  gap: 18px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.digital-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.digital-work-card {
  min-height: 245px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #070707;
}

.digital-work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .18) 42%, rgba(0, 0, 0, .82) 100%);
}

.digital-work-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  transition: transform .25s ease;
}

.digital-work-card:hover img {
  transform: scale(1.04);
}

.digital-work-card div,
.digital-work-card i {
  position: absolute;
  z-index: 1;
}

.digital-work-card div {
  right: 58px;
  bottom: 28px;
  left: 22px;
}

.digital-work-card h3 {
  max-width: 230px;
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.digital-work-card p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
}

.digital-work-card span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.digital-work-card i {
  right: 28px;
  bottom: 34px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
}

.digital-cta-band::before {
  background-image: url("../img/ready-bg.png");
}

.digital-cta-band::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .75) 26%, rgba(0, 0, 0, .72) 70%, rgba(0, 0, 0, .08));
}

@media (max-width: 1199.98px) {
  .digital-hero-art {
    right: -170px;
    width: 74%;
  }

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

  .digital-process .container {
    grid-template-columns: 1fr;
  }

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

  .digital-process-line::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .digital-marketing-page .app-hero-copy {
    width: 100%;
  }

  .digital-hero-art {
    right: auto;
    width: 100%;
    height: 430px;
  }
}

@media (max-width: 767.98px) {
  .digital-marketing-page .app-hero-copy h1 {
    font-size: 34px;
  }

  .digital-card-grid,
  .digital-work-grid,
  .digital-process-line {
    grid-template-columns: 1fr;
  }

  .digital-work .section-top {
    display: block;
  }

  .digital-work .section-top > a {
    margin-top: 22px;
  }
}

/* Team page */
.team-page {
  background: #000;
}

.team-hero {
  min-height: 760px;
  padding: 132px 0 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.team-hero-shell {
  min-height: 590px;
  position: relative;
  display: flex;
  align-items: center;
}

.team-hero-copy {
  width: min(565px, 45%);
  position: relative;
  z-index: 2;
}

.team-hero-copy .section-heading span {
  margin-bottom: 18px;
}

.team-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(45px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.team-hero-copy p {
  max-width: 520px;
  margin: 22px 0 38px;
  color: rgba(255, 255, 255, .92);
  font-size: 22px;
  line-height: 1.55;
}

.team-hero-art {
  position: absolute;
  top: -22px;
  right: -10px;
  bottom: -28px;
  width: 66%;
  z-index: 1;
  pointer-events: none;
}

.team-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .88) 10%, rgba(0, 0, 0, .18) 38%, rgba(0, 0, 0, 0) 76%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 78%, #000 100%);
}

.team-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.team-mini-stats {
  width: fit-content;
  min-width: 390px;
  min-height: 78px;
  display: grid;
  grid-template-columns: 54px 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.team-mini-icon img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.team-mini-stats strong {
  display: block;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.team-mini-stats strong + strong {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, .42);
}

.team-mini-stats small {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.team-experts {
  padding-top: 28px;
  padding-bottom: 38px;
}

.team-section-top {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 470px);
  align-items: end;
  margin-bottom: 34px;
}

.team-section-top .section-heading h2 {
  max-width: 425px;
  font-size: clamp(36px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  text-transform: none;
}

.team-section-top > p {
  margin-bottom: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 24px;
}

.team-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(180deg, #00c2e0, #ed1e79 55%, #f7931e) border-box;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 60%);
}

.team-card > img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

.team-card > div {
  position: absolute;
  right: 16px;
  bottom: 20px;
  left: 16px;
  z-index: 1;
  text-align: center;
}

.team-card h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
	text-transform:uppercase;
}

.team-card p {
  margin: 10px 0 15px;
  color:#f7931e;
  font-size: 16px;
  line-height: 1;
}

.team-card nav {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.team-card a {
  display: inline-flex;
  width: 24px;
  height: 24px;
}

.team-card nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-culture-wrap {
  padding-top: 2px;
  padding-bottom: 36px;
}

.team-culture {
  min-height: 346px;
  display: grid;
  grid-template-columns: minmax(350px, .82fr) minmax(360px, 1fr);
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #f7931e, #ed1e79, #3422db, #00c2e0) border-box;
}

.team-culture-copy {
  position: relative;
  z-index: 1;
  padding: 38px 70px;
}

.team-culture .section-heading h2 {
  max-width: 465px;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  text-transform: none;
}

.team-culture ul {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.team-culture li {
  position: relative;
  max-width: 310px;
  padding-left: 31px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.team-culture li + li {
  margin-top: 22px;
}

.team-culture li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(135deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  font-weight: 900;
}

.team-culture > img {
  width: 100%;
  height: 100%;
  min-height: 346px;
  object-fit: cover;
  object-position: center;
}

.team-cta-band {
  min-height: 178px;
  justify-content: center;
  gap: 34px;
  background:
    linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)) padding-box,
    linear-gradient(90deg, #f7931e, #ed1e79, #3422db, #00c2e0) border-box;
}

.team-cta-band::before {
  background-image: url("../img/lets-bg.png");
}

.team-cta-band::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .86) 28%, rgba(0, 0, 0, .72) 70%, rgba(0, 0, 0, .04));
}

.team-cta-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
}

.team-cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-cta-band h2 {
  max-width: none;
  font-size: clamp(26px, 2.3vw, 34px);
  text-transform: none;
}

.team-cta-band p {
  font-size: 21px;
}

.team-cta-band .outline-btn {
  margin-left: auto;
}

@media (max-width: 1199.98px) {
  .team-hero-art {
    right: -120px;
    width: 76%;
  }

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

  .team-section-top,
  .team-culture {
    grid-template-columns: 1fr;
  }

  .team-culture-copy {
    padding: 34px 36px;
  }

  .team-culture > img {
    min-height: 300px;
  }
}

@media (max-width: 991.98px) {
  .team-hero {
    min-height: auto;
    padding: 130px 0 46px;
  }

  .team-hero-shell {
    min-height: 0;
    display: block;
  }

  .team-hero-copy {
    width: 100%;
  }

  .team-hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 430px;
    margin-top: 28px;
  }

  .team-hero-art::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .08) 34%, #000 100%);
  }

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

  .team-cta-band {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .team-cta-band .outline-btn {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .team-hero-copy h1 {
    font-size: 34px;
    letter-spacing: 0;
  }

  .team-hero-copy p,
  .team-cta-band p {
    font-size: 18px;
  }

  .team-mini-stats {
    min-width: 0;
    width: 100%;
    grid-template-columns: 46px 1fr;
  }

  .team-mini-stats strong + strong {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }

  .team-culture-copy {
    padding: 30px 22px;
  }

  .team-culture .section-heading h2 {
    font-size: 30px;
  }

  .team-cta-band {
    display: flex;
    padding: 30px 22px;
  }

  .team-cta-icon {
    width: 60px;
    height: 60px;
  }
}

/* Hosting solutions page */
.hosting-solutions-page {
  background: #000;
}

.hosting-hero-new {
  min-height: 745px;
  padding: 132px 0 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: #000;
}

.hosting-hero-shell-new {
  min-height: 575px;
  position: relative;
  display: flex;
  align-items: center;
}

.hosting-hero-copy-new {
  width: min(620px, 47%);
  position: relative;
  z-index: 3;
}

.hosting-hero-copy-new h1 {
  max-width: 650px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(46px, 3.1vw, 58px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hosting-hero-copy-new p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .92);
  font-size: 19px;
  line-height: 1.6;
}

.hosting-hero-art-new {
  position: absolute;
  top: -68px;
  right: -40px;
  bottom: -40px;
  width: 63%;
  z-index: 1;
  pointer-events: none;
}

.hosting-hero-art-new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .82) 12%, rgba(0, 0, 0, .16) 42%, rgba(0, 0, 0, 0) 76%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 78%, #000 100%);
}

.hosting-hero-art-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.hosting-hero-pager-new {
  right: -12px;
  top: 32%;
}

.hosting-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.hosting-badges span::before,
.hosting-plan-card-new li::before,
.hosting-trust-copy-new li::before {
  content: "\f00c";
  display: inline-block;
  margin-right: 8px;
  background: linear-gradient(135deg, #00c2e0, #3422db, #ed1e79, #f7931e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.hosting-plans-new {
  padding-top: 48px;
  padding-bottom: 64px;
}

.hosting-section-top-new {
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 458px);
  margin-bottom: 34px;
}

.hosting-section-top-new .section-heading h2,
.hosting-features-new .section-heading h2,
.hosting-trust-copy-new .section-heading h2 {
  max-width: 620px;
  font-size: clamp(36px, 3.1vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  text-transform: none;
}

.hosting-plan-grid-new {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px;
}

.hosting-plan-card-new {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: 40px 40px 32px;
  border: 2px solid rgba(255, 255, 255, .34);
  border-radius: 14px;
  background: #030303;
}

.hosting-plan-icon-new {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.hosting-plan-icon-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hosting-plan-card-new h3 {
  max-width: 260px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.hosting-plan-card-new p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.55;
}

.hosting-plan-card-new ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.hosting-plan-card-new li {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.hosting-plan-card-new li + li {
  margin-top: 15px;
}

.hosting-plan-card-new .outline-btn {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
}

.hosting-features-new {
  padding-top: 22px;
  padding-bottom: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.hosting-features-new .section-heading {
  margin-bottom: 36px;
}

.hosting-feature-grid-new {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hosting-feature-grid-new article {
  min-height: 168px;
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(166, 50, 255, .75);
}

.hosting-feature-grid-new article:last-child {
  border-right: 0;
}

.hosting-feature-grid-new img {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.hosting-feature-grid-new h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.hosting-feature-grid-new p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  /* font-size: 13px; */
  line-height: 1.55;
}

.hosting-trust-new {
  padding-top: 58px;
  padding-bottom: 74px;
}

.hosting-trust-grid-new {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 76px;
  align-items: center;
}

.hosting-trust-art-new img {
  width: 100%;
  min-height: 420px;
  object-fit: contain;
  object-position: center left;
}

.hosting-trust-copy-new .section-heading {
  margin-bottom: 30px;
}

.hosting-trust-copy-new ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hosting-trust-copy-new li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.25;
}

.hosting-trust-copy-new li + li {
  margin-top: 26px;
}

.hosting-trust-copy-new li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(135deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
  color: #fff;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  font-size: 10px;
}

.hosting-trust-copy-new strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .hosting-hero-art-new {
    right: -120px;
    width: 73%;
  }

  .hosting-plan-grid-new {
    gap: 24px;
  }

  .hosting-feature-grid-new {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 0;
  }

  .hosting-feature-grid-new article:nth-child(3n) {
    border-right: 0;
  }

  .hosting-trust-grid-new {
    gap: 40px;
  }
}

@media (max-width: 991.98px) {
  .hosting-hero-new {
    min-height: auto;
    padding: 130px 0 46px;
  }

  .hosting-hero-shell-new {
    min-height: 0;
    display: block;
  }

  .hosting-hero-copy-new {
    width: 100%;
  }

  .hosting-hero-art-new {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 430px;
    margin-top: 24px;
  }

  .hosting-hero-art-new::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .08) 34%, #000 100%);
  }

  .hosting-hero-pager-new {
    display: none;
  }

  .hosting-section-top-new,
  .hosting-plan-grid-new,
  .hosting-trust-grid-new {
    grid-template-columns: 1fr;
  }

  .hosting-plan-card-new {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .hosting-hero-copy-new h1 {
    font-size: 34px;
    letter-spacing: 0;
  }

  .hosting-hero-copy-new p {
    font-size: 18px;
  }

  .hosting-badges {
    gap: 12px 22px;
  }

  .hosting-plan-card-new {
    padding: 30px 24px 26px;
  }

  .hosting-plan-card-new h3 {
    font-size: 28px;
  }

  .hosting-feature-grid-new {
    grid-template-columns: 1fr;
  }

  .hosting-feature-grid-new article {
    border-right: 0;
    border-bottom: 1px solid rgba(166, 50, 255, .55);
    padding: 0 0 24px;
  }

  .hosting-feature-grid-new article:last-child {
    border-bottom: 0;
  }

  .hosting-trust-art-new img {
    min-height: 280px;
  }
}

/* Services overview page */
.services-page-new {
  background: #000;
}

/* .site-header {
  padding-top: 28px;
} */

.navbar .nav-link.active {
  min-width: 104px;
  padding: 13px 16px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.header-cta {
  min-width: 148px;
  border: 1px solid transparent;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.service-hero-new {
  min-height: 780px;
  padding: 122px 0 18px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.service-hero-shell-new {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
}

.service-hero-copy-new {
  width: min(575px, 43%);
  position: relative;
  z-index: 3;
}

.service-hero-copy-new h1 {
  max-width: 600px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(42px, 4.25vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.service-hero-copy-new p {
  max-width: 530px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  line-height: 1.56;
}

.service-hero-art-new {
  position: absolute;
  top: -10px;
  right: -26px;
  bottom: -4px;
  width: 66%;
  z-index: 1;
  pointer-events: none;
}

.service-hero-art-new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .86) 13%, rgba(0, 0, 0, .12) 42%, rgba(0, 0, 0, 0) 75%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 78%, #000 100%);
}

.service-hero-art-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-hero-pager-new {
  right: -12px;
  top: 31%;
}

.service-expertise-new {
  padding-top: 12px;
  padding-bottom: 48px;
}

.service-expertise-grid-new:not(.owl-carousel) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-expertise-carousel {
  display: block;
  margin-top: 20px;
}

.service-expertise-carousel .owl-stage-outer {
  padding: 3px 2px;
}

.service-expertise-carousel .owl-stage {
  display: flex;
}

.service-expertise-carousel .owl-item {
  display: flex;
  padding: 0 2px;
}

.service-expertise-carousel .solution-card {
  width: 100%;
  height: 100%;
}

.service-expertise-grid-new .solution-card {
  min-height: 280px;
  padding: 28px 34px 30px;
  border-radius: 16px;
  border-color: rgba(255, 255, 255, .36);
  background: #020202;
  border-width:2px;
}
.service-expertise-grid-new .solution-card:hover{
      border: 2px solid transparent;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;
}
.service-expertise-grid-new .solution-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.service-expertise-grid-new .solution-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.service-expertise-grid-new .solution-card h3 {
  margin: 20px 0 14px;
  font-size: 17px;
  font-weight: 700;
}

.service-expertise-grid-new .solution-card p {
  max-width: 230px;
  font-size: 15px;
  line-height: 1.55;
}

.service-slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}

.service-slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}

.service-slider-dots span.active {
  background: var(--home-gold);
}

.service-expertise-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.service-expertise-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  display: block;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18) !important;
  transition: background .2s ease, transform .2s ease;
}

.service-expertise-carousel .owl-dot.active span,
.service-expertise-carousel .owl-dot:hover span,
.service-expertise-carousel .owl-dot:focus-visible span {
  background: var(--home-gold) !important;
  transform: scale(1.12);
}

.service-trust-wrap-new {
  padding-top: 12px;
  padding-bottom: 54px;
}

.service-trust-new {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(245px, .72fr) minmax(420px, 1.28fr) minmax(260px, .72fr);
  align-items: center;
  overflow: hidden;
  padding: 34px 48px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 15px;
  background: #030303;
}

.service-trust-copy-new h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(30px, 2.4vw, 40px);
  font-weight: 500;
  line-height: 1.14;
  text-transform: uppercase;
}

.service-trust-copy-new p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.55;
}

.service-trust-copy-new .outline-btn {
  min-width: 170px;
  min-height: 47px;
  text-transform: none;
}

.service-trust-art-new img {
  width: 100%;
  min-height: 300px;
  object-fit: contain;
  object-position: center;
}

.service-trust-new ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-trust-new li {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.service-trust-new li + li {
  margin-top: 24px;
}

.service-trust-new li::before {
  content: "\f00c";
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  margin-right: 12px;
  border: 2px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(135deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-size: 9px;
  font-weight: 900;
  vertical-align: 2px;
}

.services-offer-new {
  padding-top: 0;
  padding-bottom: 34px;
}

.services-offer-grid-new {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.services-offer-grid-new article {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  padding: 34px 30px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 16px;
  background: #030303;
}
.services-offer-grid-new article:hover{
 border: 2px solid transparent;
    background: linear-gradient(#020202, #020202) padding-box, linear-gradient(90deg, #00c2e0 0%, #3422db 24%, #ed1e79 50%, #ffd23f 74%, #f7931e 100%) border-box;

}
.services-offer-grid-new h3 {
  margin: 0 0 26px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-offer-grid-new ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-offer-grid-new li {
  position: relative;
  padding-left: 20px;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.services-offer-grid-new li + li {
  margin-top: 14px;
}

.services-offer-grid-new li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd400;
}

.services-offer-grid-new article > img {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.service-stats-wrap-new {
  padding-top: 0;
  padding-bottom: 54px;
}

.service-stats-new {
  margin: 0;
  padding: 18px 0;
  border: 1px solid rgba(255, 255, 255, .32);
  background: #020202;
}

.service-stats-new .stat-item {
  min-height: 82px;
  grid-template-columns: 78px minmax(112px, auto);
  padding: 0 34px;
}

.service-stats-new .stat-icon img {
  width: 52px;
  height: 52px;
}

.service-stats-new strong {
  font-size: 25px;
}

.service-stats-new span {
  font-size: 12px;
}

.service-platforms-wrap-new {
  padding-bottom: 62px;
}

.service-platforms-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 30px 30px;
  border: 2px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.service-platforms-new > div + div {
  padding-left: 66px;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, #00c2e0, #3422db, #ed1e79, #f7931e) 1;
}

.service-platforms-new h3 {
  margin: 0 0 22px;
  width: fit-content;
  background: linear-gradient(90deg, #f7931e, #ed1e79, #3422db, #00c2e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-logo-row-new {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
}

.service-logo-item-new {
  width: 74px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  text-align: center;
}

.service-logo-row-new img {
  max-width: 70px;
  max-height: 46px;
  object-fit: contain;
}

.service-logo-item-new img {
  height: 46px;
}

.service-logo-row-new.ecommerce {
  align-items: center;
  gap: 28px 32px;
}

.service-logo-row-new.ecommerce img {
  max-width: 150px;
  max-height: 42px;
}

@media (max-width: 1199.98px) {
  .service-hero-art-new {
    right: -130px;
    width: 76%;
  }

  .service-expertise-grid-new,
  .services-offer-grid-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-trust-new {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-platforms-new {
    grid-template-columns: 1fr;
  }

  .service-platforms-new > div + div {
    padding-left: 0;
    padding-top: 28px;
    border-left: 0;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) 1;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    padding-top: 10px;
  }

  .navbar .nav-link.active {
    min-width: 0;
    padding: 12px 0;
    border: 0;
    background: transparent;
  }

  .service-hero-new {
    min-height: auto;
    padding: 130px 0 46px;
  }

  .service-hero-shell-new {
    min-height: 0;
    display: block;
  }

  .service-hero-copy-new {
    width: 100%;
  }

  .service-hero-art-new {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 430px;
    margin-top: 24px;
  }

  .service-hero-art-new::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .08) 34%, #000 100%);
  }

  .service-hero-pager-new {
    display: none;
  }

  .service-stats-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-trust-new {
    padding: 34px;
  }

  .service-stats-new .stat-item:nth-child(2) {
    border-right: 0;
  }

  .service-stats-new .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }
}

@media (max-width: 767.98px) {
  .service-hero-copy-new h1 {
    font-size: 33px;
    letter-spacing: 0;
  }

  .service-hero-copy-new p {
    font-size: 18px;
  }

  .service-expertise-grid-new,
  .services-offer-grid-new,
  .service-stats-new {
    grid-template-columns: 1fr;
  }

  .service-trust-new,
  .service-platforms-new {
    padding: 28px 22px;
  }

  .service-trust-art-new img {
    min-height: 230px;
  }

  .service-stats-new .stat-item {
    grid-template-columns: 72px minmax(0, 1fr);
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .service-stats-new .stat-item:last-child {
    border-bottom: 0;
  }
}

/* Testimonial page */
.testimonial-page-new {
  background: #000;
}

/* .site-header {
  padding-top: 28px;
} */
.navbar li a:hover
 {
  border: 1px solid transparent;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
    min-width: 104px;
    padding: 13px 16px;
    text-align: center;
    border-radius: 8px;
}
.navbar li.current-menu-item a,
.header-cta {
  border: 1px solid transparent;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
    min-width: 104px;
    padding: 13px 16px;
    text-align: center;
    border-radius: 8px;
}

.navbar .nav-link.active {
  min-width: 104px;
  padding: 13px 16px;
  text-align: center;
  border-radius: 8px;
}

.header-cta {
  min-width: 148px;
  padding: 13px 22px;
}

.testimonial-hero-new {
  min-height: 710px;
  padding: 132px 0 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  background: #000;
}

.testimonial-hero-shell-new {
  min-height: 540px;
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-hero-copy-new {
  width: min(590px, 48%);
  position: relative;
  z-index: 2;
}

.testimonial-eyebrow-new {
  display: block;
  width: fit-content;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #ffd23f, #f7931e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-hero-copy-new h1 {
  max-width: 610px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 4.3vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.testimonial-hero-copy-new p {
  max-width: 505px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .92);
  font-size: 19px;
  line-height: 1.6;
}

.testimonial-hero-art-new {
  position: absolute;
  top: -24px;
  right: -44px;
  bottom: -12px;
  width: 62%;
  pointer-events: none;
}

.testimonial-hero-art-new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .5) 13%, rgba(0, 0, 0, .05) 44%, rgba(0, 0, 0, 0) 78%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 78%, #000 100%);
}

.testimonial-hero-art-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.testimonial-hero-stats-new {
  width: min(430px, 100%);
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 2px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.testimonial-hero-stats-new > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 12px;
  padding: 0 22px;
}

.testimonial-hero-stats-new > div + div {
  border-left: 2px solid rgba(255, 255, 255, .34);
}

.testimonial-hero-stats-new img {
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.testimonial-hero-stats-new strong {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.testimonial-hero-stats-new span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.testimonial-list-new {
  padding: 34px 0 58px;
  background: #000;
}

.testimonial-section-top-new {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(300px, 440px) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 54px;
}

.testimonial-section-top-new .testimonial-eyebrow-new {
  margin-bottom: 22px;
  font-size: 14px;
}

.testimonial-section-top-new h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.1;
}

.testimonial-section-top-new p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.5;
}

.testimonial-section-top-new .outline-btn {
  min-width: 210px;
  min-height: 44px;
  margin-bottom: 2px;
  font-size: 12px;
  text-transform: none;
}

.testimonial-card-grid-new {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
  padding: 0 14px;
}

.testimonial-card-new {
  height: 365px;
  display: flex;
  flex-direction: column;
  padding: 38px 40px 32px;
  border: 2px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(135deg, #f7931e, #ed1e79, #3422db, #00c2e0) border-box;
}

.testimonial-card-new > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.quote-mark-new {
  display: block;
  background: linear-gradient(135deg, #00c2e0, #3422db, #ed1e79, #ffd23f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 52px;
  font-weight: 800;
  line-height: .8;
}

.rating-new {
  color: #ffd400;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-card-new p {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.testimonial-card-new.is-expanded p {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.testimonial-card-new.is-expanded {
  height: auto;
}

.testimonial-read-toggle-new {
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: #00c2e0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 0;
  margin: 0 0 18px;
}

.testimonial-read-toggle-new:hover,
.testimonial-read-toggle-new:focus-visible {
  color: #ffd23f;
}

.testimonial-card-new footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.testimonial-card-new footer img {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 50%;
  object-fit: cover;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(135deg, #00c2e0, #3422db, #ed1e79, #ffd23f) border-box;
}

.testimonial-card-new strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.testimonial-card-new strong span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 600;
}

.testimonial-stats-wrap-new {
  padding-bottom: 58px;
}

.testimonial-stats-new {
  margin: 0 14px;
  padding: 18px 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#020202, #020202) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e, #ffd23f) border-box;
}

.testimonial-stats-new .stat-item {
  min-height: 84px;
  grid-template-columns: 78px minmax(112px, auto);
  padding: 0 36px;
}

.testimonial-stats-new .stat-icon img {
  width: 64px;
  height: 64px;
}

.testimonial-stats-new strong {
  font-size: 26px;
}

.testimonial-stats-new span {
  font-size: 12px;
}

@media (max-width: 1199.98px) {
  .testimonial-hero-art-new {
    right: -120px;
    width: 70%;
  }

  .testimonial-section-top-new {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-section-top-new .outline-btn {
    grid-column: 1 / -1;
    width: fit-content;
  }

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

@media (max-width: 991.98px) {
  .site-header {
    padding-top: 10px;
  }

  .navbar .nav-link.active {
    min-width: 0;
    padding: 12px 0;
    border: 0;
    background: transparent;
  }

  .testimonial-hero-new {
    min-height: auto;
    padding: 130px 0 44px;
  }

  .testimonial-hero-shell-new {
    min-height: 0;
    display: block;
  }

  .testimonial-hero-copy-new {
    width: 100%;
  }

  .testimonial-hero-art-new {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 430px;
    margin-top: 30px;
  }

  .testimonial-section-top-new {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .testimonial-stats-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-stats-new .stat-item:nth-child(2) {
    border-right: 0;
  }

  .testimonial-stats-new .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }
}

@media (max-width: 767.98px) {
  .testimonial-hero-copy-new h1 {
    font-size: 34px;
  }

  .testimonial-hero-copy-new p {
    font-size: 17px;
  }

  .testimonial-hero-stats-new,
  .testimonial-card-grid-new,
  .testimonial-stats-new {
    grid-template-columns: 1fr;
  }

  .testimonial-hero-stats-new > div {
    min-height: 76px;
  }

  .testimonial-hero-stats-new > div + div {
    border-left: 0;
    border-top: 2px solid rgba(255, 255, 255, .34);
  }

  .testimonial-card-grid-new,
  .testimonial-stats-new {
    padding: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .testimonial-card-new {
    height: 365px;
    padding: 32px 28px 28px;
  }

  .testimonial-stats-new .stat-item {
    grid-template-columns: 72px minmax(0, 1fr);
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .testimonial-stats-new .stat-item:last-child {
    border-bottom: 0;
  }
}

/* Web design page */
.webdesign-page-new {
  background: #000;
}

/* .site-header {
  padding-top: 28px;
} */

.navbar .nav-link.active,
.header-cta {
  border: 1px solid transparent;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
}

.navbar .nav-link.active {
  min-width: 104px;
  padding: 13px 16px;
  text-align: center;
  border-radius: 8px;
}

.header-cta {
  min-width: 148px;
  padding: 13px 22px;
}

.webdesign-hero-new {
  min-height: 760px;
  padding: 124px 0 22px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  background: #000;
}

.webdesign-hero-shell-new {
  min-height: 610px;
  position: relative;
  display: flex;
  align-items: center;
}

.webdesign-hero-copy-new {
  width: min(635px, 47%);
  position: relative;
  z-index: 3;
}

.webdesign-tabs-new {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.webdesign-tabs-new span {
  background: linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #ffd23f, #f7931e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.webdesign-hero-copy-new h1 {
  max-width: 660px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(43px, 4.3vw, 58px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.webdesign-hero-copy-new p {
  max-width: 540px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .92);
  font-size: 19px;
  line-height: 1.6;
}

.webdesign-hero-art-new {
  position: absolute;
  top: -30px;
  right: -58px;
  bottom: -10px;
  width: 74%;
  pointer-events: none;
  z-index: 1;
}

.webdesign-hero-art-new::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .82) 10%, rgba(0, 0, 0, .08) 38%, rgba(0, 0, 0, 0) 74%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 80%, #000 100%);
}

.webdesign-hero-art-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.webdesign-hero-pager-new {
  right: -18px;
  top: 31%;
}

.webdesign-services-new {
  padding-top: 52px;
  padding-bottom: 42px;
}

.webdesign-section-top-new {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 430px) auto;
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.webdesign-section-top-new .section-heading h2,
.webdesign-work-new .section-heading h2,
.webdesign-process-new .section-heading h2 {
  max-width: 520px;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.12;
  text-transform: none;
}

.webdesign-section-top-new > p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  line-height: 1.5;
}

.webdesign-section-top-new > a,
.webdesign-work-new .section-top > a {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.webdesign-card-grid-new {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.webdesign-card-grid-new .solution-card {
  min-height: 300px;
  padding: 30px 34px 28px;
  border-radius: 16px;
  border-color: rgba(255, 255, 255, .34);
}

.webdesign-card-grid-new .solution-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
      border: 1px solid transparent;
    background: linear-gradient(#050505, #050505) padding-box, linear-gradient(90deg, #00c2e0, #3422db, #ed1e79, #f7931e) border-box;
    border-radius: 100%;
}


.webdesign-card-grid-new .solution-icon img {
 
  object-fit: contain;
}

.webdesign-card-grid-new .solution-card h3 {
  margin: 22px 0 14px;
  font-size: 19px;
  font-weight: 700;
  text-transform: none;
}

.webdesign-card-grid-new .solution-card p {
  font-size: 15px;
  line-height: 1.55;
}

.webdesign-slider-dots-new {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 70px;
}

.webdesign-slider-dots-new span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}

.webdesign-slider-dots-new span.active {
  background: var(--home-gold);
}

.webdesign-work-new {
  padding-top: 0;
  padding-bottom: 50px;
}

.webdesign-work-new .section-top {
  margin-bottom: 24px;
}

.webdesign-work-grid-new {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.webdesign-work-grid-new img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 14px;
  object-fit: cover;
}

.webdesign-work-grid-new h3 {
  margin: 22px 0 0;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}

.webdesign-stats-wrap-new {
  padding-bottom: 52px;
}

.webdesign-stats-new {
  margin: 0 10px;
  padding: 18px 0;
  border: 0;
  border-bottom: 0;
  background: #000;
}

.webdesign-stats-new .stat-item {
  min-height: 86px;
  grid-template-columns: 84px minmax(118px, auto);
  padding: 0 36px;
}

.webdesign-stats-new .stat-icon img {
  width: 50px;
  height: 50px;
}

.webdesign-stats-new strong {
  font-size: 27px;
}

.webdesign-stats-new span {
  font-size: 12px;
}

.webdesign-process-new {
  padding-top: 0;
  padding-bottom: 56px;
}

.webdesign-process-new .container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 36px;
  align-items: start;
}

.webdesign-process-new .section-heading {
  padding-top: 4px;
}

.webdesign-process-line-new {
  margin-top: 0;
  gap: 34px;
}

.webdesign-process-line-new::before {
  top: 37px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #f7931e, #ed1e79, #3422db, #00c2e0, #ffd23f) 1;
}

.webdesign-process-line-new h3 {
  font-size: 14px;
}

.webdesign-process-line-new p {
  
  line-height: 1.55;
}

.webdesign-cta-wrap-new {
  padding-bottom: 70px;
}

.webdesign-cta-band-new {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  padding: 34px 60px;
  border: 2px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .08)) padding-box,
    linear-gradient(90deg, #f7931e, #ed1e79, #3422db, #00c2e0) border-box;
}

.webdesign-cta-band-new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/ready-bg.png") center / cover no-repeat;
}

.webdesign-cta-band-new::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .9) 26%, rgba(0, 0, 0, .72) 70%, rgba(0, 0, 0, .08));
}

.webdesign-cta-band-new > * {
  position: relative;
  z-index: 1;
}

.webdesign-cta-band-new h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
}

.webdesign-cta-band-new p {
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.webdesign-cta-band-new .outline-btn {
  min-width: 205px;
  min-height: 60px;
  font-size: 18px;
}

@media (max-width: 1199.98px) {
  .webdesign-hero-art-new {
    right: -150px;
    width: 82%;
  }

  .webdesign-card-grid-new,
  .webdesign-work-grid-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .webdesign-section-top-new,
  .webdesign-process-new .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    padding-top: 10px;
  }

  .navbar .nav-link.active {
    min-width: 0;
    padding: 12px 0;
    border: 0;
    background: transparent;
  }

  .webdesign-hero-new {
    min-height: auto;
    padding: 130px 0 48px;
  }

  .webdesign-hero-shell-new {
    min-height: 0;
    display: block;
  }

  .webdesign-hero-copy-new {
    width: 100%;
  }

  .webdesign-hero-art-new {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 430px;
    margin-top: 26px;
  }

  .webdesign-hero-art-new::before {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .08) 34%, #000 100%);
  }

  .webdesign-hero-pager-new {
    display: none;
  }

  .webdesign-stats-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .webdesign-stats-new .stat-item:nth-child(2) {
    border-right: 0;
  }

  .webdesign-stats-new .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .webdesign-cta-band-new {
    justify-content: flex-start;
    gap: 28px;
  }
}

@media (max-width: 767.98px) {
  .webdesign-hero-copy-new {
    font-size: 34px;
    letter-spacing: 0;
  }

  .webdesign-hero-copy-new p,
  .webdesign-cta-band-new p {
    font-size: 18px;
  }

  .webdesign-card-grid-new,
  .webdesign-work-grid-new,
  .webdesign-stats-new,
  .webdesign-process-line-new {
    grid-template-columns: 1fr;
  }

  .webdesign-slider-dots-new {
    margin-top: 30px;
  }

  .webdesign-work-grid-new {
    max-width: 360px;
    margin: 0 auto;
  }

  .webdesign-stats-new .stat-item {
    grid-template-columns: 72px minmax(0, 1fr);
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .webdesign-stats-new .stat-item:last-child {
    border-bottom: 0;
  }

  .webdesign-cta-band-new {
    display: block;
    padding: 32px 22px;
  }

  .webdesign-cta-band-new .outline-btn {
    width: 100%;
    margin-top: 22px;
  }
}
