@font-face {
  font-family: "Neuropolitical";
  src: url("assets/fonts/Neuropolitical-Rg.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #030306;
  --site-main-bg-image: url("assets/images/home/bg-test5.png");
  --site-main-bg-position: center -150px;
  --site-main-bg-size: cover;
  --site-main-bg-height: clamp(42rem, 86vw, 80rem);
  --bg-soft: #0b0c11;
  --surface: #0f1016;
  --surface-soft: #171822;
  --line: #232533;
  --line-soft: #1b1c26;

  --text: #f5f7ff;
  --muted: #b5b7c2;
  --muted-soft: #8a8d99;

  --purple: #7a2bff;
  --purple-strong: #5d16ec;
  --purple-glow: #9f63ff;
  --purple-deep: #1b083e;

  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-purple: 0 0 0 1px rgba(122, 43, 255, 0.34), 0 10px 28px rgba(87, 22, 238, 0.35);

  --container-max: 1440px;
  --shell-pad: clamp(1rem, 4vw, 2rem);
  --section-gap: clamp(2.8rem, 6vw, 7.4rem);
  --card-gap: clamp(1.1rem, 2vw, 2rem);

  --fs-kicker: clamp(0.66rem, 0.62rem + 0.18vw, 0.82rem);
  --fs-body: clamp(0.81rem, 0.78rem + 0.15vw, 0.95rem);
  --fs-url: clamp(0.66rem, 0.64rem + 0.1vw, 0.74rem);
  --fs-title: clamp(1.06rem, 0.97rem + 0.42vw, 1.34rem);
  --fs-hero: clamp(2.6rem, 1.78rem + 3.44vw, 5rem);
  --fs-hero-unified: 3rem;
  --fs-highlight: clamp(2.12rem, 1.35rem + 2.94vw, 3.9rem);

  --radius-sm: 0.45rem;
  --radius-md: 0.62rem;
  --radius-lg: 0.82rem;

  --transition: 0.24s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
}

/* Global top scene background: visible at top only, does not continue through full-page scroll */
body > main,
#__nuxt main {
  isolation: isolate;
  position: relative;
}

body > main::before,
#__nuxt main::before {
  background-image: var(--site-main-bg-image);
  background-position: var(--site-main-bg-position);
  background-repeat: no-repeat;
  background-size: var(--site-main-bg-size);
  content: "";
  height: var(--site-main-bg-height);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 767.98px) {
  body > main::before,
  #__nuxt main::before {
    background-image: url("assets/images/home/bg-test4.png");
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Neuropolitical", "Inter", sans-serif;
}

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

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

.layout-shell {
  max-width: var(--container-max);
  padding-inline: var(--shell-pad);
  width: min(100%, var(--container-max));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(3, 3, 6, 0.78), rgba(3, 3, 6, 0.78)),
    var(--site-main-bg-image) var(--site-main-bg-position) / var(--site-main-bg-size) no-repeat;
  backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
  .site-header {
    background: rgba(3, 3, 6, 0.88);
  }
}

.site-header .row {
  min-height: clamp(4.1rem, 4vw, 5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  height: auto;
  width: clamp(6rem, 12.6vw, 8.7rem);
}

.site-header .brand-logo {
  margin-top: 0.22rem;
}

.brand-main {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: clamp(0.84rem, 0.76rem + 0.3vw, 1.04rem);
}

.brand-sub {
  font-size: clamp(0.46rem, 0.42rem + 0.12vw, 0.56rem);
  letter-spacing: 0.18em;
  color: var(--muted-soft);
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #07080f;
  padding: 0.22rem;
}

.main-nav a,
.main-nav .nav-link {
  align-items: center;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1;
  padding-block: 0.38rem;
  padding-inline: 0.94rem;
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible {
  background: rgba(122, 43, 255, 0.2);
  color: var(--text);
}

.main-nav .dropdown-toggle::after {
  border-top-color: currentColor;
  margin-left: 0;
  vertical-align: 0.08em;
}

.main-nav .nav-services {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.main-nav .nav-services::after {
  content: "";
  height: 0.58rem;
  left: 0;
  position: absolute;
  top: 100%;
  width: 13.8rem;
}

.main-nav .nav-services > .nav-link:first-child {
  padding-right: 0.34rem;
}

.main-nav .nav-dropdown-toggle {
  min-width: 1.64rem;
  padding-left: 0.16rem;
  padding-right: 0.62rem;
}

.main-nav .nav-services:hover > .dropdown-menu {
  display: block;
}

.main-nav .nav-services.is-menu-suppressed > .dropdown-menu,
.main-nav .nav-services.is-menu-suppressed:hover > .dropdown-menu {
  display: none;
}

.main-nav .dropdown-menu {
  background: #07080f;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
  left: 0;
  margin-top: 0;
  min-width: 13.8rem;
  padding: 0.35rem;
  position: absolute;
  top: calc(100% + 0.48rem);
  z-index: 1050;
}

.main-nav .dropdown-item {
  border-radius: 8px;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  padding: 0.5rem 0.65rem;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus-visible {
  background: rgba(122, 43, 255, 0.2);
  color: var(--text);
}

.btn-menu {
  align-items: center;
  border: 1px solid rgba(122, 43, 255, 0.7);
  border-radius: var(--radius-sm);
  color: var(--text);
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.48rem 0.78rem;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-quote {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-sizing: border-box;
  display: inline-flex;
  height: 41.99px;
  justify-content: center;
  padding: 6px;
  width: 120.98px;
}

.btn-quote-inner {
  align-items: center;
  background: linear-gradient(90deg, rgba(122, 43, 255, 0.52) 0%, rgba(166, 4, 242, 0.52) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: inset 0 0 6px 3px rgba(255, 255, 255, 0.25);
  color: #fff;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 29.99px;
  justify-content: center;
  letter-spacing: -0.0001em;
  line-height: 1.86;
  padding: 2px 15px;
  text-transform: none;
  width: 100%;
}

@supports (backdrop-filter: blur(1px)) {
  .btn-quote-inner {
    backdrop-filter: blur(7px);
  }
}

.btn-menu {
  background: rgba(13, 14, 20, 0.8);
}

.btn-quote:hover,
.btn-menu:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(122, 43, 255, 0.44), 0 10px 22px rgba(0, 0, 0, 0.4);
}

.btn-quote:hover .btn-quote-inner {
  background: linear-gradient(90deg, rgba(122, 43, 255, 0.72) 0%, rgba(166, 4, 242, 0.72) 100%);
}

.home-page .btn-quote {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.home-page .btn-quote:hover,
.home-page .btn-quote:focus-visible {
  transform: translate3d(0, -1px, 0) !important;
}

.btn-menu i {
  font-size: 1.06rem;
}

.mobile-nav-panel {
  background:
    radial-gradient(120% 85% at 0% 0%, rgba(96, 36, 196, 0.18) 0%, rgba(96, 36, 196, 0) 56%),
    radial-gradient(85% 70% at 100% 100%, rgba(28, 10, 72, 0.34) 0%, rgba(28, 10, 72, 0) 64%),
    linear-gradient(165deg, #05060a 0%, #030307 52%, #060214 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  width: min(84vw, 22rem);
}

.mobile-nav-panel .offcanvas-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1rem 1rem 0.9rem;
}

.mobile-nav-panel .offcanvas-body {
  padding: 1rem;
}

.mobile-nav-brand .brand-logo {
  width: 5.9rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
}

.mobile-nav-links > a,
.mobile-services summary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--text);
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 0.72rem 0.82rem;
}

.mobile-services summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

.mobile-services summary a {
  color: inherit;
  display: inline-flex;
  text-decoration: none;
}

.mobile-services summary::-webkit-details-marker {
  display: none;
}

.mobile-services summary::after {
  content: "+";
  position: absolute;
  right: 0.82rem;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-services[open] summary::after {
  content: "-";
}

.mobile-services[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.mobile-submenu {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: grid;
  gap: 0.2rem;
  margin-top: -0.1rem;
  padding: 0.35rem 0.35rem 0.42rem;
}

.mobile-submenu a {
  border-radius: 8px;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  line-height: 1.3;
  padding: 0.46rem 0.5rem;
}

.mobile-nav-links a:hover,
.mobile-services summary:hover,
.mobile-submenu a:hover {
  background: rgba(122, 43, 255, 0.18);
  color: var(--text);
}

.mobile-nav-quote {
  align-items: center;
  background: linear-gradient(90deg, #7a2bff 0%, #b018ff 100%) !important;
  border: 1px solid rgba(167, 110, 255, 0.68) !important;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(122, 43, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  justify-content: center;
  margin-top: auto;
  min-height: 2.7rem;
  width: 100%;
}

.mobile-nav-quote:hover,
.mobile-nav-quote:focus,
.mobile-nav-quote:active {
  background: linear-gradient(90deg, #7a2bff 0%, #b018ff 100%) !important;
  border-color: rgba(167, 110, 255, 0.68) !important;
  box-shadow: 0 8px 20px rgba(122, 43, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

/* Hero */
.hero-section,
.about-hero-section,
.services-hero-section,
.home-hero-section {
  padding-bottom: clamp(2.2rem, 5vw, 4.2rem);
  padding-top: clamp(2.2rem, 7vw, 6.8rem);
  isolation: isolate;
  overflow: visible;
  position: relative;
  z-index: 2;
}

:is(.hero-section, .about-hero-section, .services-hero-section, .home-hero-section)::after {
  animation: home-hero-clouds-float 10s ease-in-out infinite alternate;
  background: url("assets/images/home/clouds-bg.png") center bottom / contain no-repeat;
  content: "";
  aspect-ratio: 1440 / 671;
  left: 50%;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  min-width: 1800px;
  width: 100vw;
  z-index: 0;
  bottom: calc(clamp(-23rem, -12.5vw, -3.5rem) - 100px);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(120% 130% at 50% 58%, #000 58%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(120% 130% at 50% 58%, #000 58%, rgba(0, 0, 0, 0) 100%);
}

:is(.hero-section, .about-hero-section, .services-hero-section, .home-hero-section) .layout-shell,
:is(.hero-section, .about-hero-section, .services-hero-section, .home-hero-section) .hero-content {
  position: relative;
  z-index: 1;
}

@keyframes home-hero-clouds-float {
  0% {
    transform: translateX(calc(-50% - 1.8%));
  }
  100% {
    transform: translateX(calc(-50% + 1.8%));
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(.hero-section, .about-hero-section, .services-hero-section, .home-hero-section)::after {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  :is(.hero-section, .about-hero-section, .services-hero-section, .home-hero-section)::after {
    animation-direction: alternate-reverse;
    animation-duration: 5.5s;
    background-position: 58% bottom;
    bottom: calc(clamp(-23rem, -12.5vw, -3.5rem) - -35px);
    left: 53.5%;
    min-width: 1280px;
  }
}

.hero-content {
  margin-top: clamp(2rem, 6vw, 80px);
  max-width: 48rem;
}

.hero-kicker {
  color: #cfd1dc;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin: 0 0 clamp(1rem, 2.6vw, 1rem);
}

.hero-kicker span {
  color: var(--purple);
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: var(--fs-hero-unified);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.08;
  margin: 0;
  max-width: min(100%, 47.875rem);
}

.hero-title-line {
  align-items: center;
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0.35em;
  white-space: nowrap;
}

.hero-title .accent {
  color: #7e23fe;
}

.hero-subtitle {
  margin: clamp(0.95rem, 1.6vw, 1.25rem) 0 0;
  max-width: min(100%, 37.375rem);
}

.page-subtitle {
  color: rgba(230, 230, 230, 0.7);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: clamp(0.95rem, 1.6vw, 1.25rem) 0 0;
  max-width: min(100%, 37.375rem);
}

.hero-subtitle.page-subtitle {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  margin: 20px 0 0;
}

/* Highlights title */
.title-section {
  padding-bottom: clamp(1.2rem, 2.5vw, 2rem);
}

.title-section h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: var(--fs-highlight);
  letter-spacing: 0.08em;
  line-height: 0.92;
  margin: 0;
  text-align: center;
}

.title-section h2 .accent {
  color: var(--purple);
}

/* Projects */
.projects-section {
  background-color: #000;
  background-image: url("assets/images/home/bg-net1.png");
  background-position: center 50px;
  background-repeat: repeat-y;
  background-size: unset;
  margin-top: 150px;
  position: relative;
  padding-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.projects-filter-bar {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  justify-content: space-between;
  margin-bottom: clamp(1.2rem, 2.4vw, 2rem);
  width: 100%;
}

.projects-mobile-heading {
  display: none;
}

.projects-filter-tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 2.2vw, 2.4rem);
}

.projects-filter-tab {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #fff;
  cursor: pointer;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 0 0.5rem;
}

.projects-filter-tab.is-active {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.our-work-page .projects-filter-tab {
  color: rgba(255, 255, 255, 0.5);
}

.our-work-page .projects-filter-tab:hover {
  color: #fff;
}

.our-work-page .projects-filter-tab.is-active {
  color: #fff;
}

.blog-page .projects-filter-tab {
  color: rgba(255, 255, 255, 0.5);
}

.blog-page .projects-filter-tab:hover {
  color: #fff;
}

.blog-page .projects-filter-tab.is-active {
  color: #fff;
}

.projects-filter-search {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 clamp(13rem, 20vw, 22rem);
  gap: 0.75rem;
  justify-content: space-between;
  min-height: unset;
  padding: 0 clamp(1.2rem, 2vw, 2rem);
}

.projects-filter-search input {
  background: transparent;
  border: 0;
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  outline: none;
  width: 100%;
}

.projects-filter-search input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.projects-filter-search i {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

@media (min-width: 992px) {
  :is(.our-work-page, .blog-page) .projects-filter-tab {
    font-size: 22px;
  }

  :is(.our-work-page, .blog-page) .projects-filter-search {
    min-height: 48px;
    padding: 0 1.1rem;
  }

  :is(.our-work-page, .blog-page) .projects-filter-search input {
    font-size: 22px;
  }

  :is(.our-work-page, .blog-page) .projects-filter-search input::placeholder {
    font-size: 22px;
  }

  :is(.our-work-page, .blog-page) .projects-filter-search i {
    font-size: 22px;
  }
}

.project-col {
  border-top: 1px solid var(--line);
}

.project-col-left {
  border-right: 1px solid var(--line);
}

.project-card {
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(1.3rem, 2.4vw, 2.1rem) clamp(0.7rem, 2vw, 1.4rem);
}

.projects-mobile .project-card {
  padding-inline: clamp(0.1rem, 0.5vw, 0.25rem);
}

.project-kicker {
  color: #d9dbe6;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 0.88rem + 0.25vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.38;
  margin: 0 0 clamp(0.95rem, 1.9vw, 1.2rem);
}

.project-thumb {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
  width: 100%;
}

.project-title-row {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  justify-content: space-between;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.project-title-row h4 {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-title);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

.project-arrow {
  align-items: center;
  border: 1px solid #2f313d;
  border-radius: 0.5rem;
  color: #7a1cfe;
  display: inline-flex;
  height: clamp(2.45rem, 2.9vw, 3.375rem);
  justify-content: center;
  width: clamp(2.45rem, 2.9vw, 3.375rem);
  background: #262626;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.project-arrow:hover {
  background: rgba(122, 43, 255, 0.26);
  border-color: rgba(122, 43, 255, 0.7);
  color: #7a1cfe;
}

.project-url {
  align-items: center;
  background: #262626;
  border: 1px solid #2f313d;
  border-radius: 0.5rem;
  color: #8f94a4;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.82rem, 0.78rem + 0.12vw, 0.94rem);
  min-height: clamp(2.25rem, 2.4vw, 3.125rem);
  margin-bottom: clamp(0.78rem, 1.3vw, 0.95rem);
  padding: 0.5rem 0.875rem;
}

.project-copy {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.66;
  margin: 0 0 clamp(1.1rem, 1.9vw, 1.75rem);
}

.project-card:hover .project-thumb {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

/* CTA */
.cta-section {
  border-bottom: 1px solid #262626;
  border-top: 1px solid #262626;
  padding-block: var(--section-gap);
}

.cta-shell {
  max-width: none;
  padding-inline: 0;
  width: 100%;
}

.cta-panel {
  align-items: center;
  background: none;
  border: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 3vw, 3.125rem);
  min-height: clamp(20rem, 34vw, 31.625rem);
  padding: clamp(2.2rem, 4vw, 3.875rem) clamp(1rem, 5vw, 21.875rem);
  text-align: center;
  width: 100%;
}

.cta-icon {
  align-items: center;
  background: transparent;
  color: #fff;
  display: inline-flex;
  font-size: clamp(1.9rem, 1.4rem + 1vw, 2.35rem);
  height: 48px;
  justify-content: center;
  margin-bottom: 0;
  width: 42.67px;
}

.cta-icon i {
  color: #6155f5;
}

.our-work-page .cta-icon img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.our-work-page .cta-panel {
  gap: 0;
}

.our-work-page .cta-icon {
  height: 80px;
  margin-bottom: 50px;
  width: 80px;
}

.our-work-page .cta-text + .btn-primary-cta {
  margin-top: clamp(1.8rem, 3vw, 3.125rem);
}

.cta-text {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(100%, 740px);
}

.cta-text h2 {
  color: #fff;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(1.72rem, 1.15rem + 1.2vw, 2.375rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  max-width: 740px;
}

.cta-text p {
  color: #e6e6e6;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.95rem, 0.84rem + 0.22vw, 1.125rem);
  font-weight: 400;
  letter-spacing: -0.006em;
  line-height: 1.5;
  margin: 0;
  max-width: 740px;
}

.btn-primary-cta {
  align-items: center;
  background: #7a1cfe;
  border: 0;
  border-radius: 8px;
  color: #0b0b10;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  justify-content: center;
  min-height: 63px;
  min-width: 177px;
  padding: 18px 34px;
  text-transform: capitalize;
  transition: transform var(--transition), filter var(--transition);
}

.btn-primary-cta:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.our-work-page .btn-primary-cta {
  transition: background 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  will-change: transform;
}

.our-work-page .btn-primary-cta:hover,
.our-work-page .btn-primary-cta:focus-visible {
  background: #7a1cfe;
  box-shadow: 0 8px 24px rgba(126, 35, 254, 0.22);
  filter: none !important;
  transform: translate3d(0, -1px, 0) !important;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(87, 21, 248, 0.2) 57.69%), #000;
}

.footer-shell {
  padding-top: clamp(1.6rem, 3.2vw, 2.7rem);
  padding-bottom: clamp(1rem, 2vw, 1.7rem);
}

.footer-grid {
  display: grid;
  gap: clamp(1.3rem, 2.8vw, 2rem);
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 27rem);
}

.site-footer .contact-card {
  background: #7a1cfe;
  border-radius: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 36rem;
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1rem, 1.4vw, 1.5rem);
}

.site-footer .contact-card-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  max-width: 21.5rem;
}

.site-footer .contact-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  max-width: 20rem;
}

.site-footer .contact-eyebrow {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.site-footer .contact-card h3 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
  max-width: 20rem;
}

.site-footer .contact-card h3 .faded {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer .contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 21.5rem;
}

.site-footer .field-wrap {
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 56px;
  padding: 9px 12px;
  width: 100%;
}

.site-footer .field-wrap:nth-of-type(2) {
  border-color: rgba(255, 255, 255, 0.24);
  gap: 8px;
  padding: 8px 12px;
}

.site-footer .field-wrap label {
  color: rgba(255, 255, 255, 0.4);
  display: block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.site-footer .contact-card input {
  background: transparent;
  border: 0;
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  outline: none;
  padding: 0;
  width: 100%;
}

.site-footer .contact-card button {
  align-items: center;
  background: #020103;
  border: 0;
  border-radius: 50px;
  color: #fff;
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  line-height: 1.4;
  padding: 10px 32px;
  transition:
    box-shadow 0.3s ease,
    transform 0s;
  will-change: transform;
  width: 167px;
}

.site-footer .contact-card button:hover,
.site-footer .contact-card button:focus-visible {
  box-shadow: 0 12px 28px rgba(2, 1, 3, 0.28);
  outline: none;
  transform: translate3d(0, -1px, 0) !important;
}

.site-footer .card-privacy {
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: flex-end;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  line-height: 1.4;
  margin: 0;
  max-width: 21.5rem;
  width: 100%;
}

.footer-right {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2.6rem);
}

.footer-top {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

.site-footer .footer-menu,
.site-footer .footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}

.site-footer .footer-menu h4,
.site-footer .footer-contact-block h4 {
  color: #7a1cfe;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.site-footer .footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.site-footer .footer-menu li {
  line-height: 1.4;
  width: 100%;
}

.site-footer .footer-menu a,
.site-footer .footer-contact-block p {
  color: #fff;
  display: block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  width: 100%;
}

.footer-brand {
  justify-self: start;
  width: clamp(6rem, 12.6vw, 8.7rem);
}

.site-footer .footer-brand .brand-logo {
  width: 100%;
}

.footer-brand .brand-main {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 0.98rem + 0.6vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1;
}

.footer-brand .brand-sub {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.footer-mid {
  display: grid;
  gap: 1.2rem;
}

.newsletter-box label {
  color: #7a1cfe;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.site-footer .footer-contact-block p {
  max-width: 333px;
}

.map-box {
  border: 0;
  border-radius: 0;
  max-width: 357px;
  overflow: hidden;
}

.map-box iframe {
  border: 0;
  display: block;
  height: 179px;
  width: 100%;
}

.footer-bottom {
  display: grid;
  gap: 1.2rem;
}

.newsletter-field {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: 12px;
  display: flex;
  min-height: 48px;
  overflow: hidden;
}

.newsletter-field input {
  background: transparent;
  border: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  outline: none;
  padding: 14px 20px;
  width: 100%;
}

.newsletter-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-field button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #7a1cfe;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  min-width: 30px;
  position: relative;
}

.newsletter-field button::before {
  background: rgba(255, 255, 255, 0.12);
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  width: 1px;
}

.newsletter-field button i {
  font-size: 0.78rem;
}

.footer-bottom-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: 50px;
  color: #fff;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  transition:
    box-shadow 0.3s ease,
    transform 0s;
  will-change: transform;
  width: 50px;
}

.social-row a:hover,
.social-row a:focus-visible {
  box-shadow: 0 12px 28px rgba(2, 1, 3, 0.22);
  outline: none;
  transform: translate3d(0, -1px, 0) !important;
}

.social-row a i {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
  height: 1em;
  justify-content: center;
  line-height: 1;
  width: 1em;
}

.social-row a .bi-youtube {
  font-size: 20px;
}

.copyright-row {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
}

/* Very small screens (below 375) */
@media (max-width: 374.98px) {
  .hero-title {
    line-height: 1;
  }

  .project-kicker {
    font-size: 0.95rem;
  }

  .site-footer .contact-card {
    min-height: 22rem;
    padding: 1.2rem 1rem;
  }

  .site-footer .contact-card h3 {
    font-size: 1.5rem;
  }

  .cta-panel {
    background-size: auto, 20px 20px, cover;
    min-height: 17rem;
    padding: 1.6rem 0.9rem;
  }

  .cta-text {
    gap: 0.65rem;
    width: 100%;
  }

  .cta-text h2 {
    line-height: 1.1;
  }

  .btn-primary-cta {
    min-height: 2.9rem;
    min-width: 9.8rem;
    padding: 0.7rem 1rem;
  }

  .mobile-nav-panel {
    width: 91vw;
  }
}

/* Mobile first base styles above already target <576 */

/* Small devices (>=576px) */
@media (min-width: 576px) {
  :root {
    --shell-pad: clamp(1.25rem, 3.4vw, 2.2rem);
  }

  .project-card {
    padding-inline: clamp(0.8rem, 1.6vw, 1.2rem);
  }

  .site-footer .contact-card {
    min-height: 24rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .map-box iframe {
    height: 11.2rem;
  }

  .cta-panel {
    padding-inline: clamp(1.25rem, 3vw, 2.4rem);
  }

  .mobile-nav-panel {
    width: min(72vw, 22rem);
  }
}

@media (max-width: 767.98px) {
  .our-work-page .projects-section {
    margin-top: clamp(2.2rem, 7vw, 3rem);
  }

  .our-work-page .projects-mobile-heading {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: "Neuropolitical", "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    gap: 0.15rem;
    line-height: 1.08;
    margin: 0 0 1rem;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
  }

  .our-work-page .projects-mobile-heading > span {
    display: block;
  }

  .our-work-page .projects-mobile-heading .accent {
    color: #7a1cfe;
  }

  .our-work-page .cta-text h2 {
    font-size: 22px;
    line-height: 1.15;
  }

  .our-work-page .cta-text p {
    font-size: 16px;
    line-height: 1.4;
  }

  .our-work-page .btn-primary-cta {
    border-radius: 8px;
    font-size: 12px;
    min-height: 32px;
    min-width: 118px;
    padding: 0.32rem 0.78rem;
  }

  .site-footer .footer-shell {
    padding-inline: 15px;
  }

  .site-footer .footer-grid {
    gap: 2.1rem;
    grid-template-columns: 1fr;
  }

  .site-footer .contact-card-main,
  .site-footer .contact-intro,
  .site-footer .contact-form,
  .site-footer .card-privacy {
    max-width: 100%;
  }

  .site-footer .contact-card h3 {
    max-width: 100%;
  }
}

/* Medium devices (>=768px) */
@media (min-width: 768px) {
  :root {
    --fs-hero: clamp(3rem, 2.4rem + 2.3vw, 4.5rem);
    --fs-highlight: clamp(2.42rem, 1.9rem + 1.9vw, 3.4rem);
  }

  .projects-mobile .project-card {
    padding-inline: 0;
  }

  .site-footer .contact-card {
    min-height: 26rem;
  }

  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.4rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-mid {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 1rem;
  }

  .cta-panel {
    padding-inline: clamp(3rem, 7.5vw, 8rem);
  }
}

/* Tablet footer card compact sizing to match 768-991 layout */
@media (min-width: 768px) and (max-width: 991.98px) {
  .site-footer .footer-grid {
    align-items: start;
    column-gap: 1.5rem;
    grid-template-areas:
      "top top"
      "contact card"
      "social card"
      "subscription subscription"
      "map map"
      "copyright copyright";
    grid-template-columns: minmax(0, 1fr) 17.5625rem;
    row-gap: 1.5rem;
  }

  .site-footer .footer-right,
  .site-footer .footer-mid,
  .site-footer .footer-bottom,
  .site-footer .footer-bottom-row {
    display: contents;
  }

  .site-footer .footer-top {
    column-gap: 1.5rem;
    display: grid;
    grid-area: top;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: start;
    row-gap: 1rem;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
    justify-self: start;
    margin: 0 0 0.25rem;
    width: clamp(6rem, 12.6vw, 8.7rem);
  }

  .site-footer .footer-contact-block {
    grid-area: contact;
  }

  .site-footer .contact-card {
    border-radius: 12px;
    grid-area: card;
    max-width: 17.5625rem;
    min-height: 19.0625rem;
    padding: 1rem;
    width: 100%;
  }

  .site-footer .contact-card-main {
    gap: 0.75rem;
    max-width: 100%;
  }

  .site-footer .contact-intro {
    gap: 0.625rem;
    max-width: 15.3125rem;
  }

  .site-footer .contact-eyebrow {
    font-size: 0.4375rem;
  }

  .site-footer .contact-card h3 {
    font-size: 1.625rem;
    line-height: 1.22;
    max-width: 15.3125rem;
  }

  .site-footer .contact-form {
    gap: 0.5rem;
    max-width: 100%;
  }

  .site-footer .field-wrap {
    border-radius: 10px;
    min-height: 40px;
    padding: 5px 10px;
    gap: 2px;
  }

  .site-footer .field-wrap:nth-of-type(2) {
    padding: 5px 10px;
    gap: 6px;
  }

  .site-footer .field-wrap label {
    font-size: 0.42rem;
  }

  .site-footer .contact-card input {
    font-size: 0.875rem;
  }

  .site-footer .contact-card button {
    font-size: 0.75rem;
    height: 1.75rem;
    padding: 0 1.45rem;
    width: auto;
  }

  .site-footer .card-privacy {
    display: none;
  }

  .site-footer .social-row {
    grid-area: social;
  }

  .site-footer .newsletter-box {
    grid-area: subscription;
  }

  .site-footer .newsletter-field {
    max-width: 100%;
  }

  .site-footer .map-box {
    grid-area: map;
    max-width: 100%;
    width: 100%;
  }

  .site-footer .map-box iframe {
    height: 21.5rem;
  }

  .site-footer .copyright-row {
    grid-area: copyright;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .site-footer .footer-brand {
    order: -1;
  }
}

@media (max-width: 767.98px) {
  .site-footer .footer-top {
    align-items: start;
    column-gap: 1.25rem;
    display: grid;
    grid-template-areas:
      "brand brand"
      "info services"
      "about services";
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    row-gap: 1rem;
  }

  .site-footer .footer-brand {
    grid-area: brand;
    justify-self: start;
    margin: 0 0 0.25rem;
    order: initial;
  }

  .site-footer nav[aria-label="Info links"] {
    grid-area: info;
  }

  .site-footer nav[aria-label="Services links"] {
    align-self: start;
    grid-area: services;
  }

  .site-footer nav[aria-label="About links"] {
    grid-area: about;
  }

  .site-footer .footer-contact-block {
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.35rem;
    justify-content: flex-start;
    margin-top: 10px;
    text-align: center;
  }

  .site-footer .footer-contact-block h4 {
    margin-right: 0;
    width: 100%;
  }

  .site-footer .footer-contact-block p {
    width: 100%;
  }

  .site-footer .footer-mid {
    width: 100%;
  }

  .site-footer .newsletter-box {
    margin-top: 10px;
  }

  .site-footer .newsletter-box label {
    display: block;
    text-align: center;
  }

  .site-footer .map-box {
    justify-self: stretch;
    margin-inline: 10px;
    max-width: none;
    width: calc(100% - 20px);
  }

  .site-footer .map-box iframe {
    width: 100%;
  }

  .site-footer .social-row,
  .site-footer .footer-bottom-row,
  .site-footer .copyright-row {
    justify-content: center;
    text-align: center;
  }
}

/* Large devices (>=992px) */
@media (min-width: 992px) {
  :root {
    --shell-pad: clamp(2rem, 5.6vw, 4.5rem);
  }

  .hero-kicker + .hero-title {
    margin-top: 0;
  }

  .project-card {
    padding: clamp(1.35rem, 1.8vw, 1.7rem) clamp(1.1rem, 1.6vw, 1.35rem);
  }

  .footer-grid {
    align-items: start;
    gap: clamp(2.2rem, 5.5vw, 4.6rem);
    grid-template-columns: clamp(19rem, 27.22vw, 24.5rem) minmax(0, 1fr);
  }

  .site-footer .contact-card {
    min-height: 34rem;
  }

  .footer-right {
    gap: clamp(1.6rem, 2.3vw, 2rem);
  }

  .footer-top {
    align-items: start;
    column-gap: clamp(1rem, 2.5vw, 2rem);
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.16fr) minmax(0, 0.8fr) auto;
  }

  .footer-brand {
    grid-column: auto;
    justify-self: end;
    margin-top: 0.14rem;
  }

  .footer-mid {
    column-gap: clamp(1.2rem, 2.2vw, 1.9rem);
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 22.3125rem);
  }

  .map-box {
    justify-self: end;
  }

  .newsletter-field {
    max-width: 44.6875rem;
  }

  .footer-bottom-row {
    max-width: 44.6875rem;
  }

  .copyright-row {
    margin-left: auto;
  }
}

/* XL devices (>=1200px) */
@media (min-width: 1200px) {
  :root {
    --shell-pad: clamp(3rem, 6vw, 5.25rem);
    --fs-highlight: clamp(2.75rem, 1.8rem + 2vw, 3.8rem);
  }

  .main-nav a,
  .main-nav .nav-link {
    font-size: 0.9rem;
    padding-inline: 0.94rem;
  }

  .project-card {
    min-height: 26.8rem;
  }

  .site-footer .contact-card {
    min-height: 38rem;
  }

  .site-footer .footer-top {
    column-gap: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  }

  .footer-right {
    max-width: 44.6875rem;
  }

  .map-box iframe {
    height: 11.1875rem;
  }

  .cta-panel {
    min-height: 31.625rem;
    padding: 3.875rem 12rem;
  }
}

/* XXL devices (>=1400px) */
@media (min-width: 1400px) {
  :root {
    --shell-pad: 108px;
    --fs-hero: clamp(3.6rem, 2.4rem + 2.4vw, 4.95rem);
    --fs-highlight: clamp(3rem, 2.05rem + 1.95vw, 4rem);
  }

  .footer-shell {
    padding-top: 89px;
    padding-bottom: 36px;
  }

  .project-card {
    min-height: 27.6rem;
  }

  .cta-panel {
    gap: 50px;
    min-height: 506px;
    padding: 62px 350px;
  }

  .cta-text {
    width: 740px;
  }

  .cta-text h2 {
    font-size: 38px;
    line-height: 38px;
  }

  .cta-text p {
    font-size: 18px;
  }

  .site-footer .contact-card {
    min-height: 630px;
    padding: 32px 24px;
  }

  .site-footer .contact-card-main {
    gap: 24px;
    max-width: 344px;
  }

  .site-footer .contact-intro {
    gap: 20px;
    max-width: 320px;
  }

  .site-footer .contact-form {
    gap: 16px;
    max-width: 344px;
  }

  .site-footer .card-privacy {
    max-width: 344px;
  }

  .site-footer .footer-top {
    column-gap: 32px;
  }

  .footer-grid {
    column-gap: 104px;
    grid-template-columns: 392px 715px;
  }

  .footer-right {
    gap: 30px;
    max-width: 715px;
  }

  .footer-mid {
    column-gap: 25px;
    grid-template-columns: 333px 357px;
  }

  .newsletter-field {
    max-width: 715px;
  }

  .footer-bottom-row {
    max-width: 715px;
  }
}

/* Intermediate width tuning (between tablet and laptop) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .project-copy {
    font-size: 0.82rem;
  }

  .project-kicker {
    min-height: 2.6rem;
  }
}

/* Contact page */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.contact-page {
  background:
    radial-gradient(72% 52% at 86% 62%, rgba(106, 36, 226, 0.2) 0%, rgba(106, 36, 226, 0) 74%),
    radial-gradient(58% 46% at 10% 86%, rgba(58, 19, 150, 0.18) 0%, rgba(58, 19, 150, 0) 76%);
  /* padding-bottom: clamp(2.8rem, 8vw, 6rem); */
}

.contact-shell {
  width: 100%;
}

.contact-modern-section {
  background:
    radial-gradient(55% 55% at 14% 55%, rgba(118, 58, 245, 0.28) 0%, rgba(118, 58, 245, 0) 70%),
    #000 url("assets/images/home/bg-net1.png") center top / cover no-repeat;
  margin-top: calc(clamp(1rem, 2.4vw, 1.8rem) + 200px);
  padding-bottom: clamp(2rem, 4.6vw, 4rem);
  padding-top: 120px;
}

.contact-modern-shell {
  max-width: 1440px;
}

.contact-modern-grid {
  align-items: stretch;
  column-gap: clamp(1.25rem, 3.2vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
}

.contact-modern-left {
  padding-top: clamp(0.5rem, 1.2vw, 1rem);
}

.contact-modern-left h2 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}

.contact-modern-left > p {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.28;
  margin: clamp(1rem, 2.2vw, 1.8rem) 0 clamp(1.2rem, 2.8vw, 2.1rem);
  max-width: 44rem;
}

.contact-modern-card {
  backdrop-filter: blur(24px);
  background: linear-gradient(90deg, rgba(122, 43, 255, 0.22) 0%, rgba(6, 7, 10, 0.75) 58%, rgba(6, 7, 10, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.55rem;
  padding: clamp(1.35rem, 2.6vw, 2.2rem);
}

.contact-modern-card + .contact-modern-card {
  margin-top: clamp(0.95rem, 2vw, 1.4rem);
}

.contact-modern-card-split {
  column-gap: clamp(1.1rem, 2.8vw, 2.6rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page .contact-modern-card-split {
  align-items: center;
  background:
    radial-gradient(58% 145% at 12% 50%, rgba(120, 58, 245, 0.28) 0%, rgba(120, 58, 245, 0.12) 28%, rgba(120, 58, 245, 0) 72%),
    linear-gradient(90deg, rgba(33, 18, 52, 0.98) 0%, rgba(11, 8, 19, 0.96) 42%, rgba(4, 4, 6, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(2rem, 3.6vw, 2.8rem);
  column-gap: 0;
  min-height: clamp(11rem, 17vw, 14rem);
  overflow: hidden;
  padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.8rem, 4vw, 3rem);
  position: relative;
}

.contact-modern-col {
  min-width: 0;
}

.contact-page .contact-modern-card-split .contact-modern-col {
  align-content: center;
  display: grid;
  justify-items: center;
  min-height: 100%;
  text-align: center;
}

.contact-modern-col + .contact-modern-col {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  padding-left: clamp(1.1rem, 2.4vw, 2rem);
}

.contact-page .contact-modern-card-split .contact-modern-col + .contact-modern-col {
  border-left: 0;
  padding-left: clamp(1.4rem, 2.4vw, 2rem);
}

.contact-page .contact-modern-card-split::after {
  background: rgba(255, 255, 255, 0.9);
  content: "";
  height: clamp(7.5rem, 12vw, 9rem);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
}

.contact-page .contact-modern-card-split .contact-modern-col:first-child h3,
.contact-page .contact-modern-card-split .contact-modern-col:first-child a {
  color: #e0c9ff;
}

.contact-page .contact-modern-card-split .contact-modern-col:last-child h3,
.contact-page .contact-modern-card-split .contact-modern-col:last-child a {
  color: #fff;
}

.contact-page .contact-modern-card-split a {
  white-space: nowrap;
}

@media (min-width: 992px) {
  .contact-page .contact-modern-card-split {
    min-height: 165px;
  }

  .contact-page .contact-modern-card-split::after {
    height: calc(100% - 80px);
  }

  .contact-page .contact-modern-card-address {
    min-height: 125px;
  }

  .contact-page .contact-modern-card-split h3 {
    white-space: nowrap;
  }
}

@media (min-width: 1024px) and (max-width: 1199.98px) {
  .contact-page .contact-modern-card-split {
    min-height: 70px;
  }

  .contact-page .contact-modern-card-address {
    min-height: 60px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-page .contact-modern-card-split {
    min-height: 70px;
  }

  .contact-page .contact-modern-card-address {
    min-height: 60px;
  }

  .contact-page .contact-modern-form-card {
    margin-top: -60px;
  }
}

@media (max-width: 767.98px) {
  .contact-page .contact-modern-card-split {
    min-height: 70px;
  }

  .contact-page .contact-modern-card-address {
    min-height: 60px;
  }

  .contact-page .contact-modern-form-card {
    margin-top: -100px;
  }
}

.contact-modern-card h3 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 clamp(0.35rem, 1vw, 0.55rem);
}

.contact-modern-card a,
.contact-modern-card p {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  text-decoration: none;
}

.contact-modern-card-address {
  text-align: center;
}

.contact-modern-form-card {
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.85) 0%, rgba(6, 7, 10, 0.97) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  padding: clamp(1.4rem, 2.8vw, 2.4rem);
}

.contact-modern-form-card h3 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 clamp(1.1rem, 2.4vw, 1.8rem);
}

.contact-modern-form {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.4vw, 1rem);
}

.contact-modern-row-two {
  display: grid;
  gap: clamp(0.8rem, 1.4vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-modern-form label {
  display: block;
  width: 100%;
}

.contact-modern-form input,
.contact-modern-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.6rem;
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  min-height: clamp(2.8rem, 4vw, 3.5rem);
  outline: none;
  padding: clamp(0.75rem, 1.4vw, 1rem) clamp(0.9rem, 1.6vw, 1.2rem);
  width: 100%;
}

.contact-modern-form textarea {
  min-height: clamp(7.8rem, 13vw, 10rem);
  resize: vertical;
}

.contact-modern-form input::placeholder,
.contact-modern-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.contact-modern-form input:focus-visible,
.contact-modern-form textarea:focus-visible {
  border-color: rgba(122, 43, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(122, 43, 255, 0.2);
}

.contact-modern-submit {
  align-items: center;
  background: linear-gradient(90deg, #763af5 0%, #a604f2 117.18%);
  border: 0;
  border-radius: 0.5rem;
  color: #fff;
  display: inline-flex;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  gap: 0.65rem;
  justify-content: center;
  min-height: clamp(2.55rem, 3.7vw, 3rem);
  padding: 0.55rem 1.25rem;
  width: 100%;
}

.contact-modern-submit i {
  font-size: 1em;
  line-height: 1;
}

.contact-modern-submit:hover {
  filter: brightness(1.08);
}

.contact-modern-form-message {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
  padding: 0.78rem 0.95rem;
}

.contact-modern-form-message-success {
  background: rgba(55, 205, 142, 0.12);
  border-color: rgba(55, 205, 142, 0.36);
}

.contact-modern-form-message-error {
  background: rgba(255, 88, 88, 0.12);
  border-color: rgba(255, 88, 88, 0.34);
}

.contact-modern-work-row {
  margin-top: clamp(2.2rem, 4.8vw, 4.2rem);
  padding-bottom: clamp(1rem, 2.8vw, 2.2rem);
  position: relative;
  text-align: center;
}

@media (min-width: 992px) {
  .contact-page .contact-modern-work-row {
    margin-inline: auto;
    max-width: calc(100% - 200px);
  }
}

.contact-modern-work-lines {
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.9rem, 12vw, 9.6rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
  row-gap: 50px;
  text-transform: uppercase;
}

.contact-modern-work-btn {
  align-items: center;
  background: linear-gradient(180deg, #8e3cff 0%, #6c1dff 100%);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  gap: clamp(0.3rem, 0.8vw, 0.55rem);
  height: clamp(6.2rem, 12vw, 9.2rem);
  justify-content: center;
  left: 50%;
  line-height: 1;
  position: absolute;
  text-decoration: none;
  text-align: center;
  top: 45%;
  transform: translate(-50%, -50%);
  width: clamp(6.2rem, 12vw, 9.2rem);
  z-index: 1;
}

.contact-modern-work-icon {
  display: block;
  margin: 0 auto;
  order: 0;
  height: clamp(2rem, 3.8vw, 2.7rem);
  width: clamp(2rem, 3.8vw, 2.7rem);
}

.contact-modern-work-btn span {
  display: block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  white-space: normal;
}

.contact-modern-work-btn:hover {
  color: #fff;
  filter: brightness(1.08);
}

.contact-intro-section {
  padding-bottom: clamp(1.7rem, 4vw, 2.9rem);
  padding-top: clamp(1.5rem, 4vw, 3.8rem);
}

.contact-kicker {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 0.84rem + 0.2vw, 1rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 clamp(1.15rem, 2.2vw, 1.7rem);
}

.contact-kicker .dot {
  color: rgba(255, 255, 255, 0.9);
  margin-inline: 0.2rem;
}

.contact-kicker span:last-child {
  color: var(--purple);
}

.contact-title {
  display: flex;
  flex-direction: column;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(4rem, 11.5vw, 7.5rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin: 0;
}

.contact-title .accent {
  color: var(--purple);
}

.contact-lead {
  color: #f0f2f8;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 0.96rem + 0.34vw, 1.42rem);
  font-weight: 600;
  line-height: 1.27;
  margin: clamp(0.95rem, 2.1vw, 1.35rem) 0 0;
  max-width: 46rem;
}

.contact-connect-section {
  /* padding-bottom: clamp(2.4rem, 6vw, 4.7rem); */
  padding-top: clamp(1.2rem, 3vw, 2rem);
}

.contact-connect-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(10, 13, 23, 0.05);
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(1rem, 2.8vw, 1.25rem);
  width: 100%;
}

@supports (backdrop-filter: blur(1px)) {
  .contact-connect-card {
    backdrop-filter: blur(190px);
  }
}

.contact-form-column {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: center;
  width: 100%;
}

.contact-form-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-form-column h2 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 5.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.267;
  margin: 0;
}

.contact-form-heading p {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  max-width: 25.9375rem;
}

.contact-space-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  isolation: isolate;
  margin-top: 0;
  max-width: 26.625rem;
  width: 100%;
}

.contact-row-two {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-space-form label {
  display: block;
  width: 100%;
}

.contact-space-form input,
.contact-space-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 19px;
  min-height: 43px;
  outline: 0;
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.contact-space-form textarea {
  min-height: 109px;
  resize: vertical;
}

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

.contact-space-form input:focus-visible,
.contact-space-form textarea:focus-visible {
  border-color: rgba(122, 43, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(122, 43, 255, 0.2);
}

.contact-send-btn {
  align-items: center;
  background: linear-gradient(90deg, #763af5 0%, #a604f2 117.18%);
  border: 0;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  margin-top: 0;
  min-height: 42px;
  padding: 12px 10px;
  transition: filter var(--transition), transform var(--transition);
  width: 100%;
}

.contact-send-btn span {
  color: #fff;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 18px;
}

.contact-send-btn i {
  color: #fff;
  font-size: 0.9rem;
}

.contact-send-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.contact-send-mobile {
  display: none;
}

.contact-story-card {
  display: none;
  isolation: isolate;
}

.contact-faq-section {
  background: url("assets/images/faq-bg.png") center top / cover no-repeat;
  animation: home-stars-drift 9s ease-in-out infinite alternate;
  padding-bottom: clamp(2.8rem, 8vw, 6rem);
}

.contact-faq-grid {
  display: flex;
  flex-direction: column;
}

.contact-faq-image-wrap {
  margin: 0 auto -4.6rem;
  order: 1;
  position: relative;
  width: min(82vw, 22rem);
  z-index: 2;
}

.contact-faq-image-wrap img {
  aspect-ratio: 1 / 0.78;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  width: 100%;
}

.contact-faq-card {
  align-items: flex-start;
  background: #7e23fe;
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 0;
  order: 2;
  padding: clamp(5.6rem, 17vw, 7rem) clamp(1.25rem, 4vw, 1.5rem) clamp(1.45rem, 5vw, 2rem);
}

.contact-faq-card h2 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 7.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.285;
  margin: 0 0 24px;
}

.faq-item {
  border-bottom: 1.5px solid rgba(235, 235, 235, 0.25);
  margin: 0;
  padding: 16px 0;
  width: 100%;
}

.faq-item summary {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.06rem, 3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  list-style: none;
  padding: 0 1.5rem 0 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: #fafafa;
  content: "⌄";
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition);
}

:is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-faq-section .faq-item,
:is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-faq-section .faq-item summary {
  transition:
    border-color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-faq-section .faq-item:hover {
    border-bottom-color: rgba(255, 255, 255, 0.52);
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-faq-section .faq-item:hover summary {
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-faq-section .faq-item:hover summary::after {
    transform: translateY(-50%) translateX(3px);
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-faq-section .faq-item[open]:hover summary::after {
    transform: translateY(-50%) translateX(3px) rotate(180deg);
  }
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  color: #fafafa;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  margin: 12px 0 0;
  max-width: 34.25rem;
}

.contact-faq-cta {
  align-self: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

.contact-faq-cta p {
  color: #fafafa;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 30px;
  margin: 0;
  text-align: center;
}

.contact-faq-btn {
  align-items: center;
  background: #fafafa;
  border-radius: 8px;
  color: #1b242c;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  gap: 4px;
  letter-spacing: 0.02em;
  line-height: 20px;
  min-height: 40px;
  padding: 10px 20px 10px 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.home-page .contact-faq-btn:hover,
.home-page .contact-faq-btn:focus-visible,
.about-page .contact-faq-btn:hover,
.about-page .contact-faq-btn:focus-visible,
.services-page .contact-faq-btn:hover,
.services-page .contact-faq-btn:focus-visible,
.service-detail-page .contact-faq-btn:hover,
.service-detail-page .contact-faq-btn:focus-visible {
  background: #f2f2f2;
  box-shadow: 0 8px 24px rgba(126, 35, 254, 0.22);
  transform: translate3d(0, -1px, 0) !important;
}

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

@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-intro-section {
    padding-top: 2.4rem;
  }

  .contact-title {
    font-size: clamp(5.4rem, 10vw, 6.4rem);
  }

  .contact-connect-card {
    padding: 1.5rem;
  }

  .contact-connect-section .layout-shell {
    padding-inline: 1.6rem;
  }

  .contact-form-column {
    align-items: center;
    gap: 28px;
    margin-inline: 0;
    max-width: none;
    text-align: center;
    width: 100%;
  }

  .contact-form-heading {
    align-items: center;
  }

  .contact-form-column h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .contact-form-heading p {
    font-size: 16px;
    line-height: 20px;
    max-width: 415px;
  }

  .contact-space-form {
    max-width: none;
  }

  .contact-faq-image-wrap {
    margin: 1.25rem auto -6.3rem;
    width: min(73vw, 31rem);
  }

  .contact-faq-card {
    padding-top: 8.1rem;
  }
}

@media (max-width: 767.98px) {
  .contact-intro-section {
    padding-top: 0.9rem;
  }

  .contact-title {
    font-size: clamp(3.7rem, 14vw, 4.5rem);
    line-height: 0.86;
  }

  .contact-lead {
    margin-top: 0.85rem;
    max-width: 19rem;
  }

  .contact-connect-card {
    border-radius: 18px;
    padding: 1.1rem 1rem 1.25rem;
  }

  .contact-form-column h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .contact-form-heading p {
    font-size: 16px;
    line-height: 20px;
    max-width: 20rem;
  }

  .contact-space-form {
    gap: 0.75rem;
  }

  .contact-send-desktop {
    display: none;
  }

  .contact-send-mobile {
    display: inline;
  }

  .contact-send-btn {
    min-height: 42px;
  }

  .contact-faq-image-wrap {
    margin: 1rem auto -4.4rem;
  }

  .contact-faq-card {
    padding-top: 5.65rem;
  }

  .faq-item summary {
    font-size: clamp(1.03rem, 4.6vw, 1.35rem);
    line-height: 1.28;
  }

  .faq-item p {
    font-size: clamp(0.9rem, 3.3vw, 0.98rem);
    line-height: 1.32;
  }

  .contact-faq-cta {
    justify-content: center;
    margin-top: 0.7rem;
  }

  .contact-faq-cta p {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .contact-faq-btn {
    font-size: 0.86rem;
    min-height: 2.35rem;
    padding: 0.55rem 0.9rem 0.55rem 1rem;
  }
}

@media (max-width: 991.98px) {
  .contact-modern-grid {
    grid-template-columns: 1fr;
    row-gap: clamp(1.2rem, 4vw, 2rem);
  }

  .contact-modern-left h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .contact-modern-left > p {
    font-size: 16px;
    max-width: none;
  }

  .contact-modern-card-split {
    grid-template-columns: 1fr;
    row-gap: clamp(0.8rem, 3vw, 1rem);
  }

  .contact-modern-col + .contact-modern-col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    padding-left: 0;
    padding-top: clamp(0.75rem, 2.2vw, 1rem);
  }

  .contact-modern-card a,
  .contact-modern-card p {
    font-size: 20px;
  }

  .contact-modern-form-card h3 {
    font-size: 30px;
  }

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

  .contact-modern-work-row {
    margin-top: clamp(1.8rem, 6vw, 2.6rem);
  }

  .contact-modern-work-lines {
    font-size: clamp(2.2rem, 13vw, 4.4rem);
    row-gap: 28px;
  }

  .contact-modern-work-btn {
    height: clamp(6.9rem, 24vw, 8.4rem);
    position: static;
    transform: none;
    width: clamp(6.9rem, 24vw, 8.4rem);
    margin-top: clamp(0.9rem, 3vw, 1.4rem);
  }
}

@media (max-width: 767.98px) {
  .contact-page .contact-modern-section {
    margin-top: clamp(1rem, 4vw, 1.5rem);
  }

  .contact-page .contact-modern-form-card {
    order: -1;
    padding: 30px;
  }

  .contact-page .contact-modern-form-card h3 {
    font-size: 22px;
    line-height: 1.15;
    margin-bottom: 0.9rem;
  }

  .contact-page .contact-modern-form {
    gap: 0.65rem;
  }

  .contact-page .contact-modern-row-two {
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-modern-form input,
  .contact-page .contact-modern-form textarea {
    font-size: 14px;
    min-height: 2.45rem;
    padding: 0.62rem 0.82rem;
  }

  .contact-page .contact-modern-form textarea {
    min-height: 6.75rem;
  }

  .contact-page .contact-modern-form input::placeholder,
  .contact-page .contact-modern-form textarea::placeholder {
    font-size: 14px;
  }

  .contact-page .contact-modern-submit {
    font-size: 12px;
    min-height: 2.25rem;
    padding: 0.45rem 0.95rem;
  }

  .contact-page .contact-modern-left {
    margin-top: 30px;
    padding-top: 0;
  }

  .contact-page .contact-modern-left h2 {
    color: #fff;
    font-family: "Neuropolitical", "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin: 0;
    text-align: center;
  }

  .contact-page .contact-modern-left h2 span {
    color: var(--purple);
  }

  .contact-page .contact-modern-left > p {
    font-size: 12px;
    line-height: 1.28;
    margin: 0.7rem auto 1rem;
    max-width: 24rem;
    text-align: center;
  }

  .contact-page .contact-modern-card {
    padding: 0.95rem 0.9rem;
  }

  .contact-page .contact-modern-card h3 {
    font-size: 16px;
    line-height: 1.2;
    color: var(--purple);
    text-align: center;
  }

  .contact-page .contact-modern-card a,
  .contact-page .contact-modern-card p {
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
  }

  .contact-page .contact-modern-card-split {
    align-items: stretch;
    column-gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    row-gap: 0;
  }

  .contact-page .contact-modern-card-split::after {
    background: rgba(255, 255, 255, 0.45);
    content: "";
    height: 68%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
  }

  .contact-page .contact-modern-col {
    display: grid;
    place-items: center;
    text-align: center;
  }

  .contact-page .contact-modern-col + .contact-modern-col {
    border-left: 0;
    border-top: 0;
    padding-left: 0;
    padding-top: 0;
  }

  .contact-page .contact-modern-work-row {
    margin-top: clamp(2.3rem, 8vw, 3.2rem);
    padding-bottom: clamp(0.85rem, 3vw, 1.2rem);
  }

  .contact-page .contact-modern-work-lines {
    font-size: 3.2rem;
    row-gap: 28px;
  }

  .contact-page .contact-modern-work-btn {
    height: clamp(4.9rem, 20vw, 5.9rem);
    left: 50%;
    margin-top: 0;
    position: absolute;
    top: 47%;
    transform: translate(-50%, -50%);
    width: clamp(4.9rem, 20vw, 5.9rem);
  }

  .contact-page .contact-modern-work-icon {
    height: 1.7rem;
    width: 1.7rem;
  }

  .contact-page .contact-modern-work-btn span {
    font-size: 12px;
  }
}

@media (max-width: 460px) {
  .contact-kicker {
    font-size: 0.84rem;
  }

  .contact-title {
    font-size: clamp(3.25rem, 13.2vw, 4.05rem);
  }

  .contact-lead {
    font-size: clamp(0.98rem, 4.8vw, 1.2rem);
  }

  .contact-space-form input,
  .contact-space-form textarea {
    font-size: 14px;
    min-height: 42px;
    padding: 11px 12px;
  }

  .contact-space-form textarea {
    min-height: 102px;
  }

  .contact-faq-image-wrap {
    width: min(84vw, 20.8rem);
  }

  .contact-faq-card {
    border-radius: 1.15rem;
    padding: 5.6rem 1rem 1.2rem;
  }

  .faq-item {
    padding-block: 0.8rem;
  }

  .faq-item summary {
    padding-right: 1.25rem;
  }

  .contact-faq-cta p {
    font-size: 0.88rem;
  }
}

@media (min-width: 992px) {
  .contact-intro-section {
    padding-top: 3.1rem;
  }

  .contact-title {
    font-size: clamp(5.3rem, 8vw, 7.6rem);
  }

  .contact-lead {
    font-size: clamp(1.4rem, 1.1vw, 1.78rem);
    max-width: 58rem;
  }

  .contact-connect-card {
    align-items: center;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 20px;
  }

  .contact-form-column {
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    text-align: left;
    width: 100%;
  }

  .contact-form-column h2 {
    font-size: 30px;
    line-height: 38px;
    width: 100%;
  }

  .contact-form-heading p {
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
  }

  .contact-space-form {
    max-width: 100%;
  }

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

  .contact-story-card {
    border-radius: 12px;
    display: block;
    height: 100%;
    justify-self: end;
    max-width: 516px;
    min-height: 536px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .contact-story-card img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .contact-story-card::after {
    background: linear-gradient(360deg, rgba(10, 13, 23, 0.95) 20.4%, rgba(10, 13, 23, 0) 100%);
    content: "";
    inset: 0;
    position: absolute;
  }

  .contact-story-card blockquote {
    bottom: 48px;
    left: 28px;
    margin: 0;
    position: absolute;
    right: 22px;
    z-index: 1;
  }

  .contact-story-card blockquote p {
    color: rgba(255, 255, 255, 0.7);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 19px;
    margin: 0;
  }

  .contact-story-card cite {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 19px;
    font-style: normal;
    margin-top: 6px;
  }

  .contact-faq-section {
    padding-top: clamp(4.4rem, 8vw, 8.2rem);
  }

  .contact-faq-grid {
    align-items: center;
    column-gap: clamp(1rem, 1.8vw, 1.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  }

  .contact-faq-card {
    min-height: clamp(34rem, 52vw, 42.5rem);
    max-width: none;
    padding: clamp(1.25rem, 2vw, 1.625rem) clamp(1rem, 1.8vw, 1.25rem) clamp(1.8rem, 2.8vw, 2.75rem)
      clamp(1.1rem, 2vw, 1.625rem);
    width: 100%;
  }

  .contact-faq-card h2 {
    font-size: clamp(2.2rem, 3.4vw, 2.625rem);
    line-height: 1.25;
  }

  .faq-item summary {
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    line-height: 1.3;
  }

  .faq-item p {
    font-size: clamp(0.92rem, 1.08vw, 1rem);
    line-height: 1.25;
    max-width: 100%;
  }

  .contact-faq-cta {
    justify-content: center;
    margin-top: auto;
    padding-right: 0;
  }

  .contact-faq-cta p {
    margin: 0;
  }

  .contact-faq-image-wrap {
    margin: 0;
    order: 2;
    justify-self: stretch;
    width: 100%;
  }

  .contact-faq-image-wrap img {
    aspect-ratio: 1 / 0.84;
    border-radius: 2rem;
    max-width: none;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .contact-faq-grid {
    column-gap: clamp(1.2rem, 2vw, 2rem);
    grid-template-columns: minmax(0, 669px) minmax(0, 1fr);
  }

  .contact-faq-card {
    min-height: 680px;
    max-width: 669px;
    padding: 26px 20px 44px 26px;
  }

  .contact-faq-card h2 {
    font-size: 42px;
    line-height: 54px;
  }

  .faq-item summary {
    font-size: 20px;
    line-height: 26px;
  }

  .faq-item p {
    font-size: 16px;
    line-height: 20px;
    max-width: 548px;
  }

  .contact-faq-image-wrap {
    justify-self: end;
  }

  .contact-faq-image-wrap img {
    aspect-ratio: 1 / 0.83;
    max-width: 544px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .contact-form-column {
    padding: 40px 24px;
  }

  .contact-faq-cta {
    margin-top: clamp(1rem, 2.2vw, 1.5rem);
  }
}

/* Services page */
.services-page {
  background: transparent;
}

.services-hero-section {
  position: relative;
}

.services-hero-section .layout-shell {
  position: relative;
}

.services-hero-glow {
  background:
    radial-gradient(circle at 50% 50%, rgba(163, 131, 255, 0.82) 0%, rgba(122, 43, 255, 0.58) 42%, rgba(122, 43, 255, 0) 78%),
    radial-gradient(circle at 72% 42%, rgba(188, 177, 255, 0.42) 0%, rgba(188, 177, 255, 0) 66%);
  border-radius: 999px;
  filter: blur(8px);
  height: clamp(15rem, 28vw, 20rem);
  left: clamp(-8rem, -7vw, -4.5rem);
  pointer-events: none;
  position: absolute;
  top: clamp(-5rem, -3.6vw, -2rem);
  width: clamp(15rem, 28vw, 20rem);
  z-index: 0;
  display: none;
}

.services-hero-section .hero-kicker,
.services-hero-section .hero-title,
.services-hero-section .hero-subtitle {
  position: relative;
  z-index: 1;
}

.services-expertise-section {
  padding-bottom: clamp(1.8rem, 4.2vw, 3.4rem);
  padding-top: clamp(1.5rem, 3.8vw, 3.2rem);
}

.services-expertise-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(2.05rem, 7vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  margin: 0;
  text-align: center;
}

.services-expertise-title .accent {
  color: #7a2bff;
}

.services-expertise-copy {
  margin: 1.05rem auto 0;
  max-width: 52rem;
}

.services-expertise-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.84rem, 0.8rem + 0.16vw, 0.98rem);
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
  text-align: center;
}

.services-expertise-copy p + p {
  margin-top: 0.62rem;
}

.services-page .about-story-panel {
  margin-top: 100px;
}

.services-page .home-building-section {
  padding-bottom: 50px;
}

.services-page .services-why-section {
  background: #000;
  padding-top: 100px;
}

.services-page .home-building-section .about-story-panel:last-of-type {
  margin-bottom: 100px;
}

.services-page .about-force-section.home-force-section {
  position: relative;
}

.services-page .about-force-section.home-force-section::before {
  background: #fff;
  content: "";
  height: 3px;
  inset-inline: 0;
  position: absolute;
  top: -1px;
  z-index: 1;
}

.service-detail-page .about-force-section.home-force-section {
  position: relative;
}

.service-detail-page .about-force-section.home-force-section::before {
  background: #fff;
  content: "";
  height: 3px;
  inset-inline: 0;
  position: absolute;
  top: -1px;
  z-index: 1;
}

.services-page .about-story-panel {
  background: #000 url("assets/images/about/bg-1.png") center / cover no-repeat;
  padding: clamp(2rem, 4vw, 3.2rem);
}

.services-page .home-building-section h2.services-dev-title {
  color: #fff;
  display: block;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.services-page .services-dev-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.6rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.42fr) minmax(0, 1fr);
  margin-top: clamp(1.4rem, 3.2vw, 2.2rem);
}

.services-page .services-dev-left h3 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  text-align: center;
}

.services-page .services-dev-left p,
.services-page .services-dev-right li {
  color: rgba(255, 255, 255, 0.96);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.services-page .services-dev-left p {
  margin: 0.9rem 0 0;
  max-width: 30ch;
  text-align: center;
}

@media (min-width: 1024px) {
  .our-work-page .projects-section {
    background-position: center top;
  }

  .services-page .home-building-section h2.services-dev-title {
    max-width: unset;
  }

  .services-page .services-dev-left {
    justify-self: center;
    text-align: center;
    width: min(100%, 30rem);
  }

  .services-page .services-dev-left h3 {
    margin-inline: auto;
    max-width: none;
  }

  .services-page .services-dev-left p {
    margin: 0.9rem auto 0;
    max-width: none;
  }
}

.services-page .services-dev-visual {
  margin: 0;
}

.services-page .services-dev-visual img {
  border-radius: clamp(1.1rem, 2.8vw, 2.2rem);
  display: block;
  width: 100%;
}

.services-page .services-dev-nav {
  align-items: center;
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 1rem;
}

.services-page .services-dev-nav-btn {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 0.4rem;
  color: #1b1b1b;
  cursor: pointer;
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  gap: 0.28rem;
  line-height: 1;
  padding: 0.32rem 0.78rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.services-page .services-dev-nav-btn:hover,
.services-page .services-dev-nav-btn:focus-visible {
  background: #efefef;
  box-shadow: 0 8px 24px rgba(9, 9, 9, 0.16);
  transform: translate3d(0, -1px, 0) !important;
}

.services-page .services-dev-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-page .services-dev-right li {
  margin: 0;
  position: relative;
  padding-left: 0.8rem;
}

.services-page .services-dev-right li + li {
  margin-top: 0.46rem;
}

.services-page .services-dev-right li::before {
  color: rgba(255, 255, 255, 0.7);
  content: "•";
  left: 0;
  position: absolute;
  top: 0;
}

@media (max-width: 1199.98px) {
  .services-page .services-dev-grid {
    grid-template-columns: 1fr;
  }

  .services-page .services-dev-left p {
    max-width: none;
  }

  .services-page .services-dev-right ul {
    columns: 2;
    column-gap: 1.2rem;
  }

  .services-page .services-dev-right li {
    break-inside: avoid;
    margin-top: 0.35rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .services-page .services-dev-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.42fr) minmax(0, 1fr);
  }

  .services-page .services-dev-right ul {
    columns: 1;
    column-gap: 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .services-page .about-story-panel {
    margin-top: 60px;
    padding: clamp(1.6rem, 2.8vw, 2.2rem);
  }

  .services-page .services-dev-grid {
    align-items: center;
    gap: clamp(1rem, 2.2vw, 1.6rem);
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr) minmax(0, 0.95fr);
    margin-top: clamp(0.9rem, 2.2vw, 1.4rem);
  }

  .services-page .services-dev-left h3 {
    font-size: clamp(1.55rem, 2.9vw, 1.9rem);
    line-height: 1.12;
  }

  .services-page .services-dev-left p,
  .services-page .services-dev-right li {
    font-size: 16px;
    line-height: 1.32;
  }

  .services-page .services-dev-left p {
    max-width: none;
  }

  .services-page .services-dev-right {
    display: block;
  }

  .services-page .services-dev-right ul {
    columns: 1;
    column-gap: 0;
  }

  .services-page .services-dev-visual img {
    border-radius: 1.4rem;
  }

  .services-page .services-dev-nav-btn {
    font-size: 14px;
    min-height: 34px;
    padding: 0.28rem 0.72rem;
  }
}

@media (max-width: 767.98px) {
  .services-page .home-brands-section {
    background: #000;
  }

  .services-page .services-expertise-title {
    font-size: 22px;
    line-height: 1.08;
  }

  .services-page .home-building-section h2.services-dev-title {
    font-size: 22px;
    letter-spacing: 0.03em;
    line-height: 1.08;
    margin-bottom: 0.8rem;
  }

  .services-page .about-story-panel {
    margin-top: 40px;
    padding: 1rem;
  }

  .services-page .home-building-section {
    padding-bottom: 0;
  }

  .services-page .home-building-section .about-story-panel:last-of-type {
    margin-bottom: 0;
  }

  .services-page .about-marquee-section {
    padding-top: 0;
  }

  .services-page .services-dev-grid {
    align-items: start;
    gap: 0.85rem;
    grid-template-columns: 1fr;
    margin-top: 0.4rem;
  }

  .services-page .services-dev-right {
    display: none;
  }

  .services-page .services-dev-visual {
    display: contents;
  }

  .services-page .services-dev-visual img {
    border-radius: 1.35rem;
    order: 1;
  }

  .services-page .services-dev-left {
    order: 2;
  }

  .services-page .services-dev-left h3 {
    font-size: 20px;
    line-height: 1.12;
    margin-top: 0.2rem;
  }

  .services-page .services-dev-left p {
    font-size: 14px;
    line-height: 1.35;
    margin-top: 0.6rem;
  }

  .services-page .services-dev-nav {
    gap: 0.3rem;
    justify-content: center;
    margin-top: 0.2rem;
    order: 3;
  }

  .services-page .services-dev-nav-btn {
    border-radius: 0.33rem;
    font-size: 12px;
    gap: 0.22rem;
    min-height: 28px;
    padding: 0.24rem 0.62rem;
  }
}

.services-grid-section {
  padding-bottom: clamp(2rem, 4.8vw, 4rem);
  padding-top: clamp(1rem, 2.3vw, 1.6rem);
}

.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.service-card {
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: inset -8px -8px 24px rgba(0, 0, 0, 0.25), inset 4px 4px 24px rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 15.2rem;
  padding: 1.6rem 1.4rem;
  position: relative;
}

.service-card-icon {
  height: 2.85rem;
  object-fit: contain;
  width: 2.85rem;
}

.service-card h3 {
  color: #fff;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.28;
  margin: 0;
}

.service-card-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  display: block;
  opacity: 0.5;
  width: 100%;
}

.service-card p {
  color: #fff;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.285;
  margin: 0;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.services-why-section {
  padding-bottom: clamp(2.2rem, 5vw, 4.2rem);
  padding-top: clamp(1rem, 2.2vw, 1.6rem);
}

.services-why-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  grid-template-columns: 1fr;
}

.services-why-kicker {
  color: #5d5d5d;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.28;
  margin: 0 0 0.55rem;
  padding-top: 1.1rem;
  position: relative;
  text-transform: uppercase;
}

.services-why-kicker::before {
  background: #7a1cfe;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0;
  width: 8px;
}

.services-why-copy {
  max-width: 29.25rem;
}

.services-why-copy h2 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0;
  max-width: 26rem;
}

.services-why-title-line {
  display: block;
  white-space: nowrap;
}

.services-why-highlight {
  color: #7a2bff;
}

.services-why-list {
  display: grid;
  gap: 1.45rem;
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.services-why-list li {
  align-items: flex-start;
  display: grid;
  gap: 1.05rem;
  grid-template-columns: auto 1fr;
  min-height: 5.6rem;
}

.services-why-list .check {
  align-items: center;
  background: #101010;
  border: 0;
  border-radius: 999px;
  color: #7a2bff;
  display: inline-flex;
  height: 2.9rem;
  justify-content: center;
  width: 2.9rem;
}

.services-why-list .check i {
  font-size: 1.15rem;
  font-weight: 700;
}

.services-why-list li > div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 23.75rem;
}

.services-why-list h3 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.services-why-list p {
  color: #5d5d5d;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.66;
  margin: 0;
}

.services-why-figure {
  justify-self: center;
  margin: 0;
  position: relative;
}

.services-why-ring {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  display: flex;
  aspect-ratio: 1 / 1;
  height: auto;
  justify-content: center;
  max-width: calc(100vw - 2rem);
  overflow: hidden;
  padding: clamp(0.35rem, 1.1vw, 0.6rem);
  position: relative;
  width: min(500px, 100%);
}

.services-why-ring-bg {
  border-radius: 999px;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  width: 100%;
}

.services-why-ring-photo {
  border-radius: 999px;
  bottom: clamp(0.85rem, 1.3vw, 1.05rem);
  filter: grayscale(100%);
  left: clamp(0.85rem, 1.3vw, 1.05rem);
  object-fit: cover;
  position: absolute;
  right: clamp(0.85rem, 1.3vw, 1.05rem);
  top: clamp(0.85rem, 1.3vw, 1.05rem);
}

.services-why-play {
  bottom: clamp(0.95rem, 2vw, 1.45rem);
  left: calc(clamp(-1.95rem, -1.6vw, -1.2rem) + 60px);
  position: absolute;
  width: clamp(4.25rem, 7.6vw, 6.1rem);
  z-index: 3;
}

.services-trust-section {
  /* padding-bottom: clamp(2rem, 4vw, 3.3rem); */
  padding-top: clamp(0.8rem, 2vw, 1.8rem);
}

.services-trust-kicker {
  align-items: center;
  color: rgba(255, 255, 255, 0.52);
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  gap: clamp(0.55rem, 1.2vw, 0.9rem);
  justify-content: center;
  letter-spacing: 0.08em;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.services-trust-kicker::before,
.services-trust-kicker::after {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  flex: 1;
  max-width: none;
  min-width: 0;
}

.services-trust-logos {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(1.9rem, 3.6vw, 2.8rem);
}

.services-trust-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 6.4rem;
}

.services-trust-logo img {
  display: block;
  filter: grayscale(100%);
  max-height: clamp(4.2rem, 6.4vw, 6.4rem);
  opacity: 0.86;
  width: auto;
}

.services-world-section {
  margin-top: clamp(1.8rem, 3.8vw, 3.2rem);
}

.services-world-inner {
  background: #f2f2f5 url("assets/images/walkthroughbg.png") center bottom / cover no-repeat;
  min-height: clamp(30rem, 56vw, 44rem);
  position: relative;
}

.services-world-section .layout-shell {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 20rem;
  padding-top: 80px;
  text-align: center;
}

.services-world-bird {
  align-items: center;
  display: inline-flex;
  height: clamp(10.5rem, 20vw, 15rem);
  justify-content: center;
  margin-bottom: 50px;
  overflow: hidden;
  width: min(100%, clamp(18rem, 40vw, 30rem));
}

.services-world-bird img {
  display: block;
  height: auto;
  transform: translateY(7%);
  width: 100%;
}

.services-world-section h2 {
  color: #6d25ff;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin: 0;
}

.services-world-section p {
  color: #151922;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
  margin: clamp(0.7rem, 1.5vw, 1.05rem) 0 0;
  max-width: 42rem;
}

.services-world-btn {
  align-items: center;
  background: #060512;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  justify-content: center;
  margin-top: clamp(0.95rem, 1.65vw, 1.3rem);
  min-height: 3.1rem;
  min-width: 8.4rem;
  padding: 0.75rem 1.7rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.home-page .services-world-btn:hover,
.home-page .services-world-btn:focus-visible,
.about-page .services-world-btn:hover,
.about-page .services-world-btn:focus-visible,
.services-page .services-world-btn:hover,
.services-page .services-world-btn:focus-visible,
.service-detail-page .services-world-btn:hover,
.service-detail-page .services-world-btn:focus-visible {
  background: #130a2b;
  box-shadow: 0 8px 24px rgba(6, 5, 18, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translate3d(0, -1px, 0) !important;
}

@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .services-page {
    background: transparent;
  }

  .services-page .about-marquee-section {
    margin-top: 20px;
    padding-top: 0;
  }

  .services-hero-glow {
    height: 12.5rem;
    left: -6.1rem;
    top: -4rem;
    width: 12.5rem;
  }

  .services-expertise-title {
    font-size: 22px;
    line-height: 1.08;
  }

  .services-expertise-copy p {
    text-align: left;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-page .home-portfolio-section,
  .services-page .home-blog-section {
    display: none !important;
  }

  .service-card {
    min-height: 13.4rem;
    padding: 1.35rem 1.15rem;
  }

  .service-card-icon {
    height: 2.5rem;
    width: 2.5rem;
  }

  .service-card h3 {
    font-size: 1.06rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  .services-why-grid {
    gap: 1.1rem;
  }

  .services-page .services-why-section {
    background: #000;
  }

  .services-why-figure {
    order: -1;
  }

  .services-why-play {
    bottom: 0.8rem;
    left: calc(-1.3rem + 60px);
    width: 4.1rem;
  }

  .services-page .services-why-copy h2 {
    font-size: 22px;
    line-height: 1.1;
    max-width: 17.5rem;
  }

  .services-why-kicker {
    font-size: 0.72rem;
    line-height: 1.2;
    margin-bottom: 0.45rem;
    padding-top: 0.92rem;
  }

  .services-why-list {
    gap: 1rem;
    margin-top: 0.9rem;
  }

  .services-why-list li {
    gap: 0.85rem;
    min-height: auto;
  }

  .services-why-list .check {
    height: 2.2rem;
    width: 2.2rem;
  }

  .services-why-list .check i {
    font-size: 0.95rem;
  }

  .services-why-list li > div {
    gap: 0.45rem;
  }

  .services-why-list h3 {
    font-size: 0.96rem;
    line-height: 1.28;
  }

  .services-why-list p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .services-trust-logos {
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-trust-kicker::before,
  .services-trust-kicker::after {
    max-width: none;
  }

  .services-trust-logo {
    min-height: 5.4rem;
  }

  .services-trust-logo img {
    max-height: 4.7rem;
  }

  .services-world-inner {
    min-height: 30rem;
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-world-section .services-world-bird {
    height: 14rem;
    margin-bottom: -70px !important;
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-world-section .services-world-btn {
    margin-bottom: 20px !important;
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-world-section h2,
  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-world-section p {
    font-size: 11px !important;
  }

  .services-world-bird {
    height: clamp(8.6rem, 36vw, 11.6rem);
    width: min(100%, clamp(14rem, 68vw, 18.5rem));
  }

  .services-world-bird img {
    transform: translateY(7%);
  }

  .services-world-section .layout-shell {
    padding-bottom: 8.6rem;
  }

  .services-world-inner .container-fluid.layout-shell {
    padding-top: 10px !important;
  }
}

@media (min-width: 768px) {
  .services-grid {
    gap: 1.15rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-trust-logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    min-height: 17rem;
    padding: 2rem 1.8rem;
  }

  .services-why-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  }

  .services-why-list p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media (min-width: 1200px) {
  .services-expertise-title {
    font-size: 4.5rem;
  }

  .services-expertise-copy {
    max-width: 56rem;
  }

  .services-why-copy h2 {
    font-size: 50px;
    line-height: 64px;
    max-width: 452px;
  }

  .services-why-copy {
    max-width: 468px;
  }

  .services-why-kicker {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 8px;
    padding-top: 24px;
  }

  .services-why-list {
    gap: 32px;
    margin-top: 30px;
  }

  .services-why-list li {
    gap: 32px;
    min-height: 102px;
  }

  .services-why-list .check {
    height: 56px;
    width: 56px;
  }

  .services-why-list .check i {
    font-size: 24px;
  }

  .services-why-list li > div {
    gap: 16px;
    max-width: 380px;
  }

  .services-why-list h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .services-why-list p {
    font-size: 15px;
    line-height: 30px;
  }

  .services-grid {
    column-gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 1.25rem;
  }

  .service-card {
    min-height: 304px;
    padding: 35px 44px;
  }

  .service-card-icon {
    height: 50px;
    width: 50px;
  }

  .service-card h3 {
    font-size: 18px;
    line-height: 23px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 18px;
  }
}

/* About page */
.about-page {
  background:
    radial-gradient(68% 44% at 86% 30%, rgba(96, 35, 212, 0.2) 0%, rgba(96, 35, 212, 0) 76%),
    radial-gradient(56% 40% at 14% 78%, rgba(58, 24, 142, 0.2) 0%, rgba(58, 24, 142, 0) 72%);
  overflow: hidden;
  padding-bottom: clamp(2.4rem, 7vw, 5rem);
}

.about-results-section {
  padding-bottom: clamp(2.2rem, 5.6vw, 5rem);
  padding-top: clamp(2.2rem, 5.2vw, 4.4rem);
}

.about-results-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(2rem, 6.2vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin: clamp(0.8rem, 1.8vw, 1.4rem) 0 clamp(0.8rem, 1.7vw, 1.3rem);
  text-align: center;
}

.about-results-title .accent {
  color: #7a2bff;
}

.about-story-flow {
  display: grid;
  column-gap: clamp(1.5rem, 3.4vw, 3.1rem);
  row-gap: clamp(0.9rem, 1.6vw, 1.35rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  margin-top: clamp(1.25rem, 2.8vw, 2rem);
}

.about-story-col {
  align-items: stretch;
  display: grid;
  gap: clamp(0.9rem, 1.6vw, 1.35rem);
  grid-template-rows: auto auto;
}

.about-story-col-left {
  max-width: none;
}

.about-story-col-right {
  max-width: none;
}

.about-story-copy {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(0.9rem, 0.82rem + 0.18vw, 1.05rem);
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 1.35;
  margin: 0;
  max-width: none;
  width: 100%;
}

.about-story-photo {
  align-self: stretch;
  margin: 0;
  width: 100%;
}

.about-story-photo img {
  display: block;
  aspect-ratio: 537 / 458;
  filter: grayscale(100%);
  mix-blend-mode: luminosity;
  object-fit: cover;
  width: 100%;
}

.about-story-panel {
  background: #000 url("assets/images/about/bg-1.png") center / cover no-repeat;
  margin-top: 200px;
  padding: 50px;
}

.about-page .home-building-section {
  overflow: hidden;
  padding-bottom: 100px;
  position: relative;
}

.about-page .home-building-section .about-story-header h2 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  max-width: none;
  width: auto;
  display: block;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}

.about-story-lead {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin: clamp(0.8rem, 2.2vw, 1.4rem) 0 0;
  text-align: left;
}

.about-story-content-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.6rem, 4vw, 4.2rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: clamp(1.2rem, 3vw, 2.2rem);
}

.about-story-visual {
  margin: 0;
}

.about-story-visual img {
  border-radius: clamp(1.1rem, 2.8vw, 2.2rem);
  display: block;
  max-width: 450px;
  object-fit: cover;
  width: 100%;
}

.about-story-right {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.8vw, 2.2rem);
  justify-content: center;
}

.about-story-right-copy {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.85;
  margin: 0;
}

.about-story-cta {
  align-items: center;
  align-self: flex-start;
  background: #fff;
  border-radius: 4px;
  color: #111;
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  gap: 0.55rem;
  line-height: 1;
  min-height: 2.4rem;
  padding: 0.4rem 0.9rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.about-story-cta i {
  font-size: 1.05em;
}

.about-page .about-story-cta:hover,
.about-page .about-story-cta:focus-visible {
  background: #f2f2f2;
  box-shadow: 0 8px 24px rgba(126, 35, 254, 0.22);
  transform: translate3d(0, -1px, 0) !important;
}

@media (max-width: 1199.98px) {
  .about-story-right-copy {
    line-height: 1.6;
  }
}

@media (max-width: 991.98px) {
  .about-story-content-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-principles-panel {
  color: #fff;
  display: grid;
  gap: clamp(1.3rem, 3vw, 2.8rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  isolation: isolate;
  margin-top: clamp(2.4rem, 6vw, 5rem);
  overflow: visible;
  padding: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(1.5rem, 4.5vw, 3rem);
  position: relative;
}

.about-principles-panel::before,
.about-principles-panel::after {
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.about-principles-panel::before {
  background: radial-gradient(circle, rgba(118, 58, 245, 0.78) 0%, rgba(118, 58, 245, 0) 72%);
  bottom: -180px;
  filter: blur(110px);
  height: 520px;
  left: -140px;
  width: 520px;
}

.about-principles-panel::after {
  background: radial-gradient(circle, rgba(166, 4, 242, 0.62) 0%, rgba(166, 4, 242, 0) 74%);
  bottom: -220px;
  filter: blur(140px);
  height: 620px;
  right: -180px;
  width: 620px;
}

.about-principles-panel > * {
  position: relative;
  z-index: 1;
}

.about-page .home-building-section h2.about-principles-title {
  align-self: start;
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
  max-width: none;
  width: auto;
  display: block;
  text-align: left;
  text-transform: none;
}

.about-principles-accordion {
  display: grid;
  gap: 0;
}

.about-principle-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  margin: 0;
  padding: 0.7rem 0;
}

.about-page .home-building-section .about-principle-item summary {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0;
  line-height: 1.1;
  list-style: none;
  text-transform: none;
}

.about-principle-item,
.about-page .home-building-section .about-principle-item summary {
  transition:
    border-color 0.25s ease,
    text-shadow 0.25s ease,
    transform 0.25s ease;
}

.about-principle-item summary::-webkit-details-marker {
  display: none;
}

.about-principle-arrow {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  transition: transform var(--transition);
}

.about-principle-item[open] .about-principle-arrow {
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .about-page .about-principle-item:hover {
    border-bottom-color: rgba(255, 255, 255, 1);
  }

  .about-page .home-building-section .about-principle-item:hover summary {
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
  }

  .about-page .about-principle-item:hover .about-principle-arrow {
    transform: translateX(3px);
  }

  .about-page .about-principle-item[open]:hover .about-principle-arrow {
    transform: translateX(3px) rotate(180deg);
  }
}

.about-page .home-building-section .about-principle-item p {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  margin: 0.9rem 0 0.2rem;
  text-transform: none;
}

@media (max-width: 991.98px) {
  .about-principles-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-principles-panel::before {
    bottom: -120px;
    height: 280px;
    left: -80px;
    width: 280px;
  }

  .about-principles-panel::after {
    bottom: -150px;
    height: 360px;
    right: -120px;
    width: 360px;
  }
}

.about-tech-stack-section {
  background: #000;
  padding-block: clamp(2.5rem, 7vw, 5.5rem);
}

.about-tech-stack-title {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 48px;
  line-height: 1.08;
  margin: 0 auto;
  max-width: 19ch;
  text-align: center;
  text-transform: none;
}

.about-tech-stack-subtitle {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.32;
  margin: clamp(1.1rem, 2.8vw, 2.5rem) auto 0;
  max-width: unset;
  text-align: center;
}

.about-tech-stack-logos {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  margin-top: clamp(2rem, 6vw, 5.4rem);
}

.about-tech-stack-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2.6rem);
  justify-content: center;
}

.about-tech-stack-row img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 64px;
}

.about-marquee-section {
  background: #000;
  padding-bottom: clamp(1.3rem, 3vw, 2rem);
  padding-top: clamp(1.3rem, 3vw, 2rem);
}

.about-marquee-track-wrap {
  overflow: hidden;
}

.about-marquee-track {
  animation: about-marquee-scroll 28s linear infinite;
  display: flex;
  gap: clamp(1.4rem, 2.8vw, 2.3rem);
  width: max-content;
  will-change: transform;
}

.about-marquee-item {
  color: #fff;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(2rem, 5.4vw, 3.65rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0;
  text-transform: none;
  white-space: nowrap;
}

.about-marquee-item span {
  color: #7a2bff;
}

@keyframes about-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (clamp(1.4rem, 2.8vw, 2.3rem) / 2)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-marquee-track {
    animation: none;
  }
}

.about-client-section {
  padding-block: clamp(1.2rem, 3.2vw, 2.5rem);
}

.about-client-quote {
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  grid-template-columns: auto 1fr;
  padding: 0;
}

.about-client-avatar-wrap {
  display: inline-flex;
  justify-self: start;
  position: relative;
  width: fit-content;
}

.about-client-avatar {
  border: 0;
  border-radius: 999px;
  filter: grayscale(100%);
  height: clamp(5.8rem, 9.8vw, 8.2rem);
  object-fit: cover;
  width: clamp(5.8rem, 9.8vw, 8.2rem);
}

.about-client-quote-icon {
  align-items: center;
  background: #7a2bff;
  border-radius: 999px;
  bottom: 0.1rem;
  color: #fff;
  display: inline-flex;
  font-size: clamp(0.7rem, 1.4vw, 0.95rem);
  height: clamp(1.7rem, 2.8vw, 2.2rem);
  justify-content: center;
  position: absolute;
  right: -0.18rem;
  width: clamp(1.7rem, 2.8vw, 2.2rem);
}

.about-client-content p {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.84rem, 0.8rem + 0.16vw, 0.98rem);
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.about-client-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.about-client-meta strong {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 500;
}

.about-client-meta a {
  color: #7a2bff;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.64rem, 0.8vw, 0.74rem);
  letter-spacing: 0.08em;
}

.about-trust-section {
  padding-top: clamp(1rem, 2vw, 1.3rem);
}

.about-trust-section .services-trust-logos {
  align-items: end;
  margin-top: clamp(1.9rem, 3.6vw, 2.8rem);
}

.about-trust-section .services-trust-logo {
  align-items: flex-end;
  justify-content: center;
  min-height: 6.4rem;
}

.about-trust-section .services-trust-logo img {
  max-height: clamp(4.2rem, 6.4vw, 6.4rem);
  object-fit: contain;
  width: auto;
}

.about-testimonial-section {
  margin-top: 30px;
  padding-block: clamp(2rem, 5vw, 4.3rem);
}

.about-testimonial-panel {
  background: #7e23fe;
  border-radius: clamp(1.6rem, 3.2vw, 3.125rem);
  display: grid;
  /* gap: clamp(1rem, 2.4vw, 2.4rem); */
  grid-template-areas: "content video";
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 33.6875rem);
  margin-inline: auto;
  max-width: 1128px;
  /* min-height: clamp(21rem, 33vw, 29.75rem); */
  overflow: visible;
  padding: clamp(2.1rem, 4vw, 2.8rem) clamp(1.15rem, 4.4vw, 4rem) clamp(1.2rem, 2.7vw, 2rem);
  position: relative;
}

.about-testimonial-content {
  align-self: start;
  grid-area: content;
  margin-bottom: 0;
  width: min(100%, 456px);
}

.about-testimonial-title-wrap {
  width: min(100%, 17.2rem);
}

.about-testimonial-line {
  background: #fff;
  display: block;
  height: 1px;
  width: 100%;
}

.about-testimonial-heading {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.0001em;
  line-height: 1.05;
  margin: 0.56rem 0;
  text-transform: uppercase;
}

.about-testimonial-card {
  margin-top: clamp(1rem, 1.9vw, 1.45rem);
  width: 100%;
}

.about-testimonial-mini {
  background: #fff;
  border-radius: 18px;
  display: block;
  padding: 1.05rem 0.95rem 1rem 2.95rem;
  position: relative;
}

.about-testimonial-mini img {
  height: 90px;
  left: -45px;
  object-fit: cover;
  position: absolute;
  top: 0.95rem;
  width: 90px;
}

.about-testimonial-mini-head {
  align-items: flex-start;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
}

.about-testimonial-mini-head strong {
  color: #000;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-stars {
  color: #1d1b20;
  display: inline-flex;
  font-size: clamp(0.8rem, 1.5vw, 1.35rem);
  gap: 0.2rem;
  line-height: 1;
}

.about-testimonial-mini p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  margin: 0.35rem 0 0;
}

.about-testimonial-video {
  grid-area: video;
  justify-self: auto;
  margin: 0;
  position: absolute;
  right:clamp(0rem, 0vw, 0rem);
  top: clamp(-4.8rem, -6.2vw, -3.8rem);
  width: min(88%, 539px);
  z-index: 2;
}

.about-testimonial-video img {
  aspect-ratio: 539 / 301;
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
}

.about-video-play {
  align-items: center;
  background: transparent;
  border: 4px solid #fff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  left: 1rem;
  position: absolute;
  top: 1rem;
  width: 52px;
}

.about-video-play i {
  font-size: 1.55rem;
  margin-left: 0.17rem;
}

.about-testimonial-video figcaption {
  background: #7a2bff;
  bottom: 1.05rem;
  color: #fff;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.95rem);
  left: 1rem;
  line-height: 1.08;
  padding: 0.45rem 0.85rem;
  position: absolute;
  text-transform: uppercase;
}

.about-partners-section {
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
  padding-top: clamp(0.4rem, 2vw, 1.1rem);
}

.about-partners-title {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.6rem);
  letter-spacing: 0.01em;
  margin: 0;
  text-align: center;
}

.about-partners-icons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.7rem, 3.2vw, 4rem);
  justify-content: center;
  margin-top: clamp(1.1rem, 2vw, 1.5rem);
}

.about-partners-icons img {
  display: block;
  height: clamp(1.15rem, 5vw, 4.55rem);
  object-fit: contain;
  width: auto;
}

.about-force-section {
  --about-force-cut-point: 82%;
  background: linear-gradient(
    to bottom,
    #fff 0 var(--about-force-cut-point),
    #f5f5f5 var(--about-force-cut-point) 100%
  );
  margin-top: clamp(3rem, 7vw, 5.2rem);
  padding-inline: clamp(0.5rem, 1.6vw, 1.25rem);
  padding-block: clamp(2.4rem, 6vw, 2rem);
}

.about-force-section h2 {
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: 48px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.about-force-heading-main {
  color: #7a2bff;
}

.about-force-heading-sub {
  color: #000;
}

.about-force-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.45rem, 1vw, 0.8rem);
  justify-content: center;
  padding-inline: clamp(0.25rem, 1vw, 0.9rem);
}

.about-force-row-3 {
  margin-top: clamp(1.1rem, 2.4vw, 1.6rem);
}

.about-force-row-5 {
  margin-top: clamp(0.7rem, 1.8vw, 1.5rem);
}

.about-force-avatar {
  border-radius: 999px;
  display: inline-flex;
  height: clamp(8.1rem, 9.2vw, 9rem);
  overflow: hidden;
  transition: box-shadow 0.24s ease;
  width: clamp(8.1rem, 9.2vw, 9rem);
}

.about-force-avatar img {
  filter: grayscale(100%);
  height: 100%;
  object-fit: cover;
  transition: filter 0.24s ease;
  width: 100%;
}

.about-force-member:hover .about-force-avatar img,
.about-force-member:focus-within .about-force-avatar img,
.about-force-link:hover .about-force-avatar img,
.about-force-link:focus-visible .about-force-avatar img {
  filter: grayscale(0%);
}

.about-force-member:hover .about-force-avatar,
.about-force-member:focus-within .about-force-avatar,
.about-force-link:hover .about-force-avatar,
.about-force-link:focus-visible .about-force-avatar {
  box-shadow: 0 0 0 2px rgba(122, 43, 255, 0.95), 0 0 0 5px rgba(122, 43, 255, 0.28);
}

.about-force-member {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: clamp(11rem, 12.8vw, 12.8rem);
}

.about-force-link {
  align-items: center;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
}

.about-force-meta {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-height: 2rem;
  text-align: center;
}

.about-force-meta h3 {
  color: #000;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.0001em;
  line-height: 1.15;
  margin: 0;
  margin-bottom: 6px;
}

.about-force-meta p {
  color: #000;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 1.15;
  margin: 0;
}

@media (min-width: 992px) {
  .about-force-meta h3,
  .about-force-meta p {
    white-space: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section,
  :is(.about-page, .services-page, .service-detail-page) .home-force-section,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .about-force-section,
  :is(.about-page, .services-page, .service-detail-page) .about-force-section {
    margin-bottom: unset;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section h2,
  :is(.about-page, .services-page, .service-detail-page) .home-force-section h2,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .about-force-section h2,
  :is(.about-page, .services-page, .service-detail-page) .about-force-section h2 {
    margin-bottom: 40px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-meta h3,
  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-meta h3 {
    font-size: 14px;
    line-height: 1.15;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-meta p,
  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-meta p {
    font-size: 12px;
    line-height: 1.15;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-avatar,
  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-avatar {
    height: clamp(7.1rem, 9.2vw, 9rem);
    width: clamp(7.1rem, 9.2vw, 9rem);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-member,
  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-member {
    gap: 0.5rem;
    width: clamp(8rem, 12.8vw, 12.8rem);
  }

  .contact-faq-section.home-faq-section,
  .contact-faq-section.home-faq-section .container-fluid.layout-shell.contact-shell,
  .home-page:not(.blog-page):not(.blog-detail-page) .home-blog-section {
    display: none !important;
  }
}

.about-force-avatar-icon,
.about-force-member .about-force-avatar-icon {
  align-items: center;
  background: #f1f1f1;
  color: rgba(34, 34, 34, 0.86);
  justify-content: center;
}

.about-force-avatar-icon i {
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
}

@media (max-width: 324.98px) {
  .home-force-section .about-force-row {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.45rem, 1vw, 0.8rem);
    justify-content: center;
    padding-inline: clamp(0.25rem, 1vw, 0.9rem);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .about-testimonial-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-testimonial-content {
    width: 100%;
  }

  .about-testimonial-video {
    align-self: start;
    justify-self: stretch;
    left: auto;
    right: auto;
    margin: 0;
    max-width: none;
    position: relative;
    top: -3.4rem;
    width: 100%;
  }

  .home-testimonial-avatar {
    height: 70px;
    width: 70px;
  }

  .about-page .home-building-section {
    background: url("assets/images/home/bg-net1.png") center 100px / cover no-repeat;
  }

  .about-page .about-story-panel {
    margin-top: 100px;
  }
}

@media (max-width: 991.98px) {
  .about-story-flow {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
  }

  .about-story-col {
    gap: 1rem;
    max-width: none;
  }

  .about-client-quote {
    grid-template-columns: auto 1fr;
  }

  .about-testimonial-panel {
    grid-template-areas: "content";
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(14.8rem, 30vw, 15.4rem) 1.15rem 1.1rem;
  }

  .about-testimonial-video {
    left: 50%;
    right: auto;
    margin: 0;
    position: absolute;
    top: -3.2rem;
    transform: translateX(-50%);
    width: min(92%, 32rem);
  }

  .about-testimonial-content {
    width: 100%;
  }

  .about-testimonial-title-wrap {
    display: none;
  }

  .about-testimonial-card {
    margin-top: 0.9rem;
  }

  .about-testimonial-mini {
    padding: 1rem 0.9rem 0.95rem 2.6rem;
  }

  .about-testimonial-mini img {
    height: 74px;
    left: -37px;
    top: 0.9rem;
    width: 74px;
  }
}

@media (max-width: 767.98px) {
  .about-force-section {
    --about-force-cut-point: 65%;
  }

  .about-results-title {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .about-story-flow {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .about-story-col {
    gap: 0.9rem;
    max-width: none;
    width: 100%;
  }

  .about-story-copy {
    font-size: clamp(0.9rem, 0.82rem + 0.18vw, 1.05rem);
    line-height: 1.35;
  }

  .about-story-col-right .about-copy-2 {
    order: 1;
  }

  .about-story-col-right .about-story-photo {
    order: 2;
  }

  .about-story-photo img {
    margin-left: 0;
    width: 100%;
  }

  .about-story-photo {
    width: 100%;
  }

  .about-marquee-item {
    font-size: clamp(2.6rem, 13.2vw, 4rem);
  }

  .about-client-quote {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .about-client-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .about-trust-section .services-trust-logos {
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.9rem;
  }

  .about-trust-section .services-trust-logo {
    min-height: 5.4rem;
  }

  .about-trust-section .services-trust-logo img {
    max-height: 4.7rem;
    width: auto;
  }

  .about-testimonial-panel {
    border-radius: 20px;
    padding: 9.8rem 0.8rem 0.9rem;
  }

  .about-testimonial-title-wrap {
    display: none;
  }

  .about-testimonial-video {
    top: -2.95rem;
    width: min(94%, 20.5rem);
  }

  .about-testimonial-video figcaption {
    font-size: 0.9rem;
    left: 0.7rem;
    padding: 0.36rem 0.6rem;
  }

  .about-video-play {
    border-width: 3px;
    height: 44px;
    left: 0.72rem;
    top: 0.72rem;
    width: 44px;
  }

  .about-video-play i {
    font-size: 1.25rem;
  }

  .about-testimonial-mini {
    border-radius: 14px;
    padding: 0.85rem 0.75rem 0.8rem 2.15rem;
  }

  .about-testimonial-mini img {
    height: 60px;
    left: -30px;
    top: 0.75rem;
    width: 60px;
  }

  .about-testimonial-mini-head strong {
    font-size: 1rem;
  }

  .about-stars {
    font-size: 0.86rem;
    gap: 0.12rem;
  }

  .about-testimonial-mini p {
    font-size: 0.78rem;
    line-height: 1.36;
  }

  .about-partners-icons {
    gap: 1.4rem;
  }

  .about-partners-icons img {
    height: 2.1rem;
  }

  .about-force-avatar {
    height: clamp(4.6rem, 20vw, 5.25rem);
    width: clamp(4.6rem, 20vw, 5.25rem);
  }

  .about-force-member {
    gap: 0.38rem;
    width: clamp(6.1rem, 28vw, 7.1rem);
  }

  .about-force-section h2 {
    font-size: clamp(2.1rem, 9vw, 48px);
  }
}

/* Home page */


.home-page section {
  position: relative;
}

.home-hero-section {
  padding-bottom: clamp(2.2rem, 5vw, 4.2rem);
  padding-top: clamp(2.2rem, 7vw, 6.8rem);
}

.home-hero-owl {
  display: none;
  margin: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.home-hero-owl img {
  display: block;
  height: auto;
  width: 100%;
}

.home-hero-btn {
  align-items: center;
  background: #7e23fe;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  height: 42px;
  justify-content: space-between;
  letter-spacing: -0.0001em;
  line-height: 48px;
  margin-top: clamp(1.1rem, 2.3vw, 1.8rem);
  min-width: min(100%, 30rem);
  padding: 0 1.95rem;
  position: relative;
  text-transform: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  width: min(100%, 30rem);
}

.home-hero-btn:hover,
.home-hero-btn:focus-visible {
  background: #6b16ef;
  box-shadow: 0 8px 30px rgba(126, 35, 254, 0.28);
  transform: translate3d(0, -1px, 0) !important;
}

.home-hero-btn-arrow {
  flex: 0 0 auto;
  height: 14px;
  position: relative;
  width: 52px;
}

.home-hero-btn-arrow::before {
  border-top: 2px solid #fff;
  content: "";
  left: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.home-hero-btn-arrow::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
}

@media (min-width: 1024px) {
  .home-hero-owl {
    display: block;
    right: clamp(14rem, 23vw, 18rem);
    top: clamp(0rem, 0vw, 0rem);
    width: clamp(19rem, 28vw, 26.5rem);
  }
}

@media (max-width: 767.98px) {
  .home-hero-owl {
    display: block;
    left: 50%;
    right: auto;
    top: clamp(1.8rem, 7vw, 3rem);
    transform: translateX(-50%);
    width: min(58vw, 15rem);
  }
}

.home-building-section {
  background: url("assets/images/home/bg-net1.png") center 200px / cover no-repeat;
  padding-top: clamp(1.1rem, 6vw, 6rem);
  padding-bottom: unset;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-section {
  padding-top: 120px;
}

.home-building-section h2 {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(1.95rem, 5.8vw, 4rem);
  letter-spacing: -0.0001em;
  line-height: 1.2;
  margin: 0 auto;
  max-width: min(100%, 1013px);
  text-align: center;
  text-transform: uppercase;
}

.home-building-section h2 .accent {
  color: #7a2bff;
}

@media (min-width: 1200px) {
  .home-building-section h2 {
    font-size: 64px;
    line-height: 77px;
    max-width: 1013px;
  }
}

.home-building-grid {
  display: grid;
  gap: clamp(0.65rem, 1.6vw, 1rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(1rem, 2.6vw, 1.6rem);
}

.home-building-mobile-controls {
  display: none;
}

.home-page .home-building-grid {
  column-gap: 120px;
  grid-auto-rows: 1fr;
  margin-top: clamp(3rem, 8vw, 7rem);
  row-gap: clamp(1.8rem, 3.8vw, 3rem);
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-grid {
    column-gap: 30px;
  }
}

@media (min-width: 1024px) and (max-width: 1199.98px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-grid {
    column-gap: 30px;
  }
}

@media (min-width: 1200px) and (max-width: 1280px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-grid {
    column-gap: 60px;
  }
}

@media (min-width: 1281px) and (max-width: 1430px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-grid {
    column-gap: 90px;
  }
}

@media (min-width: 1200px) {
  .home-page .home-building-grid {
    margin-top: 150px;
  }
}

.service-detail-page .home-building-grid {
  column-gap: clamp(0.75rem, 1.6vw, 1.15rem);
  grid-auto-rows: 1fr;
  margin-top: 150px;
  padding-bottom: 100px;
  row-gap: clamp(0.75rem, 1.8vw, 1.2rem);
}

.service-detail-page .home-building-section {
  padding-bottom: 100px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .service-detail-page .home-building-section {
    margin-top: -50px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .service-detail-page .home-building-section {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .service-detail-page .home-building-section {
    padding-bottom: 0;
  }
}

.service-detail-page .service-detail-blurb-card {
  gap: clamp(0.75rem, 1.3vw, 1rem);
  justify-content: flex-start;
  min-height: calc(15.2rem - 30px);
  overflow: hidden;
}

.service-detail-page .service-detail-blurb-card::before {
  background: #7a1cfe;
  border-radius: 16px 16px 0 0;
  content: "";
  height: 2px;
  inset: 1px 1px auto;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-detail-page .service-detail-blurb-card p {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  max-width: none;
  white-space: normal;
  width: 100%;
  overflow-wrap: anywhere;
}

.service-detail-page .service-detail-blurb-card h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.service-detail-page .service-detail-card-icon {
  color: #fff;
  font-size: clamp(3rem, 3.8vw, 4.3rem);
  line-height: 1;
}

.service-detail-page .service-detail-card-image-icon {
  display: block;
  height: clamp(3rem, 3.8vw, 4.3rem);
  object-fit: contain;
  width: clamp(3rem, 3.8vw, 4.3rem);
}

.service-detail-page .service-detail-blurb-card .service-card-divider {
  margin-top: 0;
}

.service-detail-page .home-about-section {
  background-position: center top;
  padding-top: clamp(5.5rem, 9vw, 7.5rem);
}

.service-detail-page .service-detail-about-top-owl {
  display: block;
  height: auto;
  margin: 0 auto 0;
  max-width: min(100%, 22rem);
  width: 100%;
}

.service-detail-page .service-detail-about-top-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: "Eurostile", "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 1.08;
  margin: clamp(1rem, 2.4vw, 1.75rem) auto clamp(1.2rem, 3vw, 2rem);
  max-width: min(100%, 933px);
  text-align: center;
  text-transform: uppercase;
}

.service-detail-page .service-detail-about-top-heading-primary {
  color: #7a1cfe;
}

.service-detail-page .service-detail-about-top-heading-secondary {
  color: #000;
}

.service-detail-page .service-detail-why-choose-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(87, 21, 248, 0.2) 53.37%), #000;
  padding-block: clamp(2.8rem, 6vw, 5rem);
}

.service-detail-page .service-detail-why-choose-layout {
  align-items: start;
  column-gap: clamp(2rem, 6vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 26rem);
}

.service-detail-page .service-detail-why-choose-content {
  min-width: 0;
}

.service-detail-page .service-detail-why-choose-top {
  display: block;
}

.service-detail-page .service-detail-why-choose-top h2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.0001em;
  line-height: 1.06;
  margin: clamp(0.35rem, 1vw, 0.9rem) 0 0;
  max-width: min(100%, 36rem);
  padding-bottom: clamp(0.5rem, 1.2vw, 0.9rem);
  text-transform: uppercase;
}

.service-detail-page .service-detail-why-choose-visual {
  align-self: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.3rem, 1vw, 0.75rem);
  justify-self: end;
  width: min(100%, 26rem);
}

.service-detail-page .service-detail-why-choose-owl {
  height: auto;
  max-width: min(100%, 18rem);
  width: 100%;
}

.service-detail-page .service-detail-why-choose-image {
  border-radius: clamp(0.8rem, 1.8vw, 1.4rem);
  height: auto;
  margin-top: 0;
  max-width: min(100%, 24rem);
  width: 100%;
}

.service-detail-page .service-detail-why-choose-list {
  list-style: none;
  margin: clamp(1.6rem, 3.8vw, 2.8rem) 0 0;
  max-width: 50rem;
  padding: 0;
}

.service-detail-page .service-detail-why-choose-list li {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 1.5;
  margin: 0;
  min-height: clamp(2.2rem, 4.5vw, 3.6rem);
  padding: 0 0 clamp(1rem, 2.4vw, 1.8rem) clamp(2.5rem, 5vw, 3rem);
  position: relative;
}

.service-detail-page .service-detail-why-choose-list li + li {
  margin-top: clamp(0.6rem, 1.4vw, 1.1rem);
}

.service-detail-page .service-detail-why-choose-list li::before {
  border: 3px solid #fff;
  border-radius: 50%;
  content: "";
  height: clamp(0.9rem, 1.2vw, 1.2rem);
  left: 0;
  position: absolute;
  top: 0.4em;
  width: clamp(0.9rem, 1.2vw, 1.2rem);
}

.service-detail-page .service-detail-why-choose-list li::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: clamp(0.28rem, 0.45vw, 0.42rem);
  left: clamp(0.32rem, 0.45vw, 0.4rem);
  position: absolute;
  top: calc(0.4em + clamp(0.28rem, 0.35vw, 0.4rem));
  width: clamp(0.28rem, 0.45vw, 0.42rem);
}

.service-detail-page .service-detail-why-choose-cta {
  align-items: center;
  background: #e7e7e7;
  border-radius: 16px;
  color: #202024;
  display: flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
  font-weight: 400;
  height: clamp(2.65rem, 3.9vw, 3.2rem);
  justify-content: center;
  margin: clamp(2rem, 4.5vw, 3.5rem) auto 0;
  max-width: 13.5rem;
  padding-inline: clamp(0.75rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  width: min(100%, 13.5rem);
}

.service-detail-page .service-detail-why-choose-cta:hover,
.service-detail-page .service-detail-why-choose-cta:focus-visible {
  background: #dadada;
  box-shadow: 0 8px 24px rgba(9, 9, 9, 0.16);
  transform: translate3d(0, -1px, 0) !important;
}

@media (max-width: 991.98px) {
  .service-detail-page .service-detail-why-choose-layout {
    grid-template-columns: 1fr;
    row-gap: clamp(1.4rem, 4vw, 2.2rem);
  }

  .service-detail-page .service-detail-why-choose-visual {
    justify-self: center;
    width: min(100%, 24rem);
  }

  .service-detail-page .service-detail-why-choose-image {
    margin-top: 0;
  }

  .service-detail-page .service-detail-why-choose-top h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    max-width: 100%;
  }

  .service-detail-page .service-detail-why-choose-list li {
    font-size: clamp(1.05rem, 4.2vw, 1.25rem);
  }
}

@media (min-width: 992px) {
  .service-detail-page .home-building-grid {
    column-gap: clamp(0.85rem, 1.4vw, 1.25rem);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: clamp(0.85rem, 1.5vw, 1.25rem);
  }

  .service-detail-page .service-detail-blurb-card {
    min-height: calc(17rem - 30px);
  }
}

@media (min-width: 1200px) {
  .service-detail-page .service-detail-blurb-card {
    min-height: 274px;
  }
}

.service-detail-page .service-detail-faq-section {
  background: #fff;
  padding-block: clamp(3.2rem, 7vw, 6rem);
}

.service-detail-page .service-detail-faq-head h2 {
  color: #7a1cfe;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(2.15rem, 4.3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
}

.service-detail-page .service-detail-faq-layout {
  align-items: start;
  column-gap: clamp(1.4rem, 3.8vw, 2.8rem);
  display: grid;
  grid-template-columns: minmax(0, 558px) minmax(0, 1fr);
  justify-content: center;
  margin-top: clamp(1.6rem, 3.8vw, 3rem);
}

.service-detail-page .service-detail-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.service-detail-page .service-detail-faq-item {
  background: #fff;
  border-radius: 4.91124px;
  box-shadow: 0 24.5562px 32.7416px -14.7337px rgba(149, 149, 149, 0.25);
  color: #222;
  overflow: hidden;
}

.service-detail-page .service-detail-faq-item summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  list-style: none;
  min-height: 100px;
  padding: 24px 18px;
}

.service-detail-page .service-detail-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-detail-page .service-detail-faq-item-left {
  color: rgba(0, 0, 0, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.service-detail-page .service-detail-faq-item summary p {
  color: rgba(0, 0, 0, 0.88);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
}

.service-detail-page .service-detail-faq-item-right {
  align-items: center;
  background: #7a1cfe;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}

.service-detail-page .service-detail-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.service-detail-page .service-detail-faq-answer p {
  color: rgba(0, 0, 0, 0.75);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0 18px 22px 64px;
}

.service-detail-page .service-detail-faq-item[open] .service-detail-faq-answer {
  max-height: 180px;
}

.service-detail-page .service-detail-faq-item[open] .service-detail-faq-item-right {
  font-size: 0;
}

.service-detail-page .service-detail-faq-item[open] .service-detail-faq-item-right::before {
  color: #fff;
  content: "−";
  font-size: 18px;
  line-height: 1;
}

.service-detail-page .service-detail-faq-side {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.service-detail-page .service-detail-faq-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: clamp(17rem, 24vw, 21rem);
  position: relative;
}

.service-detail-page .service-detail-faq-vector {
  display: block;
  height: auto;
  max-width: min(100%, 293px);
  width: 100%;
}

.service-detail-page .service-detail-faq-visual::after {
  color: #fff;
  content: "?";
  font-family: "Inter", sans-serif;
  font-size: clamp(5rem, 7.8vw, 9.375rem);
  font-weight: 700;
  left: 50%;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-detail-page .service-detail-faq-side-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.service-detail-page .service-detail-faq-side-copy h3 {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.service-detail-page .service-detail-faq-side-copy p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 0.94rem);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.service-detail-page .service-detail-faq-side-copy label {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 6px;
}

.service-detail-page .service-detail-faq-input-wrap {
  align-items: center;
  border: 1px solid #929292;
  display: flex;
  gap: 10px;
  height: 36px;
  justify-content: space-between;
  padding-inline: 12px 8px;
  width: min(100%, 435px);
}

.service-detail-page .service-detail-faq-input-wrap input {
  border: 0;
  color: #000;
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  outline: none;
}

.service-detail-page .service-detail-faq-input-wrap input::placeholder {
  color: #000;
  opacity: 1;
}

.service-detail-page .service-detail-faq-input-wrap span {
  color: #7a1cfe;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .service-detail-page .service-detail-faq-layout {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .service-detail-page .service-detail-faq-list {
    order: 2;
  }

  .service-detail-page .service-detail-faq-side {
    align-items: center;
    order: 1;
    text-align: center;
  }

  .service-detail-page .service-detail-faq-visual {
    min-height: auto;
  }

  .service-detail-page .service-detail-faq-vector {
    max-width: min(100%, 220px);
  }

  .service-detail-page .service-detail-faq-side-copy {
    align-items: center;
  }

  .service-detail-page .service-detail-faq-input-wrap {
    width: min(100%, 30rem);
  }
}

@media (max-width: 575.98px) {
  .service-detail-page .service-detail-faq-item {
    gap: 0.65rem;
  }

  .service-detail-page .service-detail-faq-item summary {
    gap: 0.65rem;
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
    padding: 14px 12px;
  }

  .service-detail-page .service-detail-faq-item-left {
    font-size: 30px;
  }

  .service-detail-page .service-detail-faq-item summary p {
    font-size: 15px;
  }

  .service-detail-page .service-detail-faq-item-right {
    font-size: 16px;
    height: 22px;
    width: 22px;
  }

  .service-detail-page .service-detail-faq-answer p {
    font-size: 14px;
    padding: 0 12px 14px 50px;
  }

  .service-detail-page .service-detail-faq-side-copy h3 {
    font-size: 1.5rem;
  }

  .service-detail-page .service-detail-faq-side-copy p {
    font-size: 0.88rem;
  }

  .service-detail-page .service-detail-faq-input-wrap {
    width: 100%;
  }
}

.home-building-card {
  min-height: clamp(15.5rem, 24vw, 20.5rem);
}

.home-page .home-building-card {
  height: 100%;
  overflow: hidden;
}

.home-page .home-building-card::before {
  background: #7a1cfe;
  border-radius: 16px 16px 0 0;
  content: "";
  height: 2px;
  inset: 1px 1px auto;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.home-building-card-head {
  align-items: flex-end;
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  width: 100%;
}

.home-building-card-footer {
  align-items: center;
  display: flex;
  margin-top: auto;
  min-height: 3rem;
  padding-top: clamp(1.2rem, 2.2vw, 1.8rem);
  width: 100%;
}

.home-building-card-link {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 30px;
  text-decoration: none;
}

.home-building-card-link > span:first-child {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.home-building-card-arrow {
  align-items: center;
  background: #7a2bff;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  height: clamp(1.8rem, 2.6vw, 2.2rem);
  justify-content: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  width: 56px;
}

.home-building-card-link:hover .home-building-card-arrow,
.home-building-card-link:focus-visible .home-building-card-arrow {
  background: #6b16ef;
  box-shadow: 0 8px 24px rgba(126, 35, 254, 0.28);
  transform: translate3d(0, -1px, 0) !important;
}

.home-building-card-arrow i {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.home-building-card .service-card-divider {
  display: none;
}

.home-building-card h3 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 !important;
}

.home-building-card p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 !important;
  margin-bottom: auto !important;
  max-width: 100%;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  width: 435px;
}

.home-building-cta {
  align-items: center;
  background: #7e23fe;
  border-radius: 0;
  color: #fff;
  display: flex;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  gap: 0.75rem;
  height: 42px;
  justify-content: center;
  letter-spacing: -0.0001em;
  line-height: 1;
  margin: 130px auto 0;
  padding: 0 1.25rem;
  position: relative;
  text-transform: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  white-space: nowrap;
  width: min(100%, 420px);
}

.home-building-cta:hover,
.home-building-cta:focus-visible {
  background: #6b16ef;
  box-shadow: 0 8px 30px rgba(126, 35, 254, 0.28);
  transform: translate3d(0, -1px, 0) !important;
}

.home-building-cta.home-reveal-target,
.home-who-btn.home-reveal-target {
  --home-reveal-delay: 0s !important;
}

@media (min-width: 992px) {
  .home-building-cta {
    margin-bottom: 80px;
    margin-top: 130px;
    min-width: 400px;
  }
}

.home-building-cta-arrow {
  flex: 0 0 auto;
  height: 12px;
  position: relative;
  width: 30px;
}

.home-building-cta-arrow::before {
  border-top: 2px solid #fff;
  content: "";
  left: 0;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.home-building-cta-arrow::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  height: 9px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 9px;
}

.home-brands-section {
  background: unset;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: clamp(0.8rem, 2.2vw, 1.4rem);
  padding-top: clamp(2.4rem, 7vw, 5.8rem);
  position: relative;
}

.home-brands-section::before {
  background: url("assets/images/home/brands-we-work-for-bg2.png") center top / 100% auto no-repeat;
  content: "";
  filter: brightness(1.2) contrast(1.05);
  inset: 0;
  opacity: 0.92;
  pointer-events: none;
  position: absolute;
  transform: translate3d(0, 0, 0);
  transform-origin: 50% 42%;
  animation: none;
  will-change: transform;
  z-index: 0;
}

@keyframes home-brands-moon-float {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes home-brands-moon-drift {
  0% {
    background-position: 40% top;
  }

  50% {
    background-position: 60% top;
  }

  100% {
    background-position: 40% top;
  }
}

.home-brands-section::before {
  animation: home-brands-moon-drift 12s ease-in-out infinite;
  background-position: 50% top;
  background-size: 118% auto;
}

@media (prefers-reduced-motion: reduce) {
  .home-brands-section::before {
    animation: none;
  }
}

.home-brands-section > .container-fluid {
  position: relative;
  z-index: 1;
}

.home-brands-section h2 {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(1.95rem, 5.8vw, 4rem);
  letter-spacing: -0.0001em;
  line-height: 1.2;
  margin: 0 auto;
  max-width: min(100%, 1013px);
  text-align: center;
  text-transform: uppercase;
}

.home-brands-section h2 .accent {
  color: #7a2bff;
}

@media (min-width: 1024px) {
  .about-page .home-brands-section {
    background: #000;
  }

  .services-page .home-brands-section {
    background: #000;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .about-page .home-brands-section {
    background: #000;
  }

  .services-page .home-brands-section {
    background: #000;
  }

  .service-detail-page .home-brands-section {
    background: #000;
  }

  .service-detail-page .home-brands-section::before {
    background-position: center top;
    background-size: 100% auto;
  }
}

@media (min-width: 1200px) {
  .home-brands-section h2,
  .home-more-services-section h2 {
    font-size: 64px;
    line-height: 77px;
  }

  .home-brands-section h2 {
    max-width: 1013px;
  }
}

@media (min-width: 992px) {
  .home-brands-section h2 {
    margin-top: 100px;
  }
}

.home-brands-subtitle {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 auto 0;
  max-width: min(100%, 47rem);
  text-align: center;
}

.home-brands-logos-section {
  --home-brands-top-duration: 24s;
  --home-brands-bottom-duration: 24s;
  --home-brands-logo-gap: clamp(0.55rem, 1.3vw, 0.95rem);
  background: #000 url("assets/images/home/we-measure-our-success-bg.png") center / cover no-repeat;
  overflow: hidden;
  padding-block: clamp(1.4rem, 3.5vw, 2.6rem);
  width: 100%;
}

.about-page .home-brands-logos-section {
  background: #000;
}

.services-page .home-brands-logos-section {
  background: #000;
}

.service-detail-page .home-brands-logos-section {
  background: #000;
}

.home-brands-logos-marquee {
  isolation: isolate;
  overflow: hidden;
  padding-inline: clamp(1rem, 2.8vw, 2.2rem);
  position: relative;
  width: 100%;
}

.home-brands-logos-marquee + .home-brands-logos-marquee {
  margin-top: clamp(0.5rem, 1.2vw, 0.8rem);
}

.home-brands-logos-marquee::before,
.home-brands-logos-marquee::after {
  bottom: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  width: clamp(1.4rem, 4vw, 4rem);
  z-index: 2;
}

.home-brands-logos-marquee::before {
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  left: 0;
}

.home-brands-logos-marquee::after {
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  right: 0;
}

.home-brands-logos-track {
  animation: home-brands-marquee-left var(--home-brands-top-duration) linear infinite;
  display: flex;
  gap: var(--home-brands-logo-gap);
  width: max-content;
  will-change: transform;
}

.home-brands-logos-marquee-bottom .home-brands-logos-track {
  animation: home-brands-marquee-right var(--home-brands-bottom-duration) linear infinite;
}

@keyframes home-brands-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes home-brands-marquee-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-brands-logos-track {
    animation: none;
    transform: none;
  }
}

.home-brands-logos-row {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: var(--home-brands-logo-gap);
  min-width: max-content;
  padding-inline: 0;
}

.home-brands-logos-row img {
  display: block;
  flex: 0 0 auto;
  height: 5.8rem;
  margin-inline: 0;
  width: auto;
}

.home-brands-logos-row-bottom img:first-child,
.home-brands-logos-row-bottom img:last-child {
  width: auto;
}

.home-success-section {
  background: #000;
  animation: none;
  overflow: hidden;
  padding-block: clamp(2.8rem, 8vw, 6.8rem);
  position: relative;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-section {
  animation: none !important;
  background: #000;
}

.service-detail-page .home-success-section {
  animation: none !important;
  background: #000;
}

.home-success-section::before {
  animation: faq-bg-drift 28s ease-in-out infinite alternate;
  background: url("assets/images/home/we-measure-our-success-bg.png") center / cover no-repeat;
  content: "";
  inset: -2% -8%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-section::before {
  background: url("assets/images/bg/stats1.png") center / cover no-repeat;
}

.service-detail-page .home-success-section::before {
  background: url("assets/images/bg/stats1.png") center / cover no-repeat;
}

.service-detail-page .home-success-section::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
  background:
    radial-gradient(42% 34% at 16% 24%, rgba(118, 58, 245, 0.28) 0%, rgba(118, 58, 245, 0) 72%),
    radial-gradient(38% 30% at 84% 72%, rgba(166, 4, 242, 0.24) 0%, rgba(166, 4, 242, 0) 74%),
    url("assets/images/bg/stats2.png") center / cover no-repeat;
}

.home-success-section .layout-shell {
  margin-inline: auto;
  max-width: min(100%, 68rem);
  position: relative;
  z-index: 1;
}

.home-success-section h2 {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 1;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  width: fit-content;
  max-width: 100%;
}

.home-success-line {
  align-items: center;
  display: inline-flex;
  font-size: inherit;
  gap: clamp(0.45rem, 1.2vw, 0.9rem);
  justify-content: flex-start;
  line-height: inherit;
  width: 100%;
}

.home-success-line-top {
  align-items: flex-end;
  margin-bottom: 0;
}

.home-success-line-mid {
  margin-bottom: 0;
}

.home-success-line-bottom {
  margin-bottom: 0;
}

.home-success-line + .home-success-line {
  margin-top: -0.08em;
}

.home-success-section h2 .accent {
  color: #7a2bff;
}

.home-success-line-top > span:first-child {
  font-size: 40px;
  line-height: 77px;
}

.home-success-line-top > .accent,
.home-success-line-mid > span,
.home-success-line-bottom > span {
  font-size: 96px;
  line-height: 0.9;
}

.home-success-subtitle {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.22;
  margin: 24px 0 0;
  max-width: 42rem;
  text-wrap: balance;
}

.home-success-grid {
  display: grid;
  column-gap: clamp(1rem, 3.5vw, 4.2rem);
  grid-template-areas:
    ". stat1"
    "stat2 ."
    ". stat3";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2.2rem, 7vw, 5rem);
  row-gap: clamp(2.1rem, 6.4vw, 5.2rem);
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-grid {
  margin-top: 32px;
  row-gap: 32px;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-stat {
  width: min(100%, 420px);
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-stat-2 {
  justify-self: start;
  text-align: center;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-stat-2 p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-grid p {
  width: min(100%, 420px);
  max-width: none;
  text-wrap: balance;
}

.home-success-grid strong {
  color: #fff;
  display: block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 96px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.home-success-grid p {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.22;
  margin: 0.5rem auto 0;
  max-width: 28rem;
  text-align: center;
  opacity: 0.94;
}

.home-success-stat {
  max-width: min(100%, 27.2rem);
  text-align: center;
}

.home-success-stat-1 {
  grid-area: stat1;
  justify-self: end;
  text-align: center;
}

.home-success-stat-2 {
  grid-area: stat2;
  justify-self: start;
}

.home-success-stat-3 {
  grid-area: stat3;
  justify-self: end;
  text-align: center;
}

.home-more-services-section {
  background: url("assets/images/bg/stats1.png") center / cover no-repeat;
  animation: none;
  padding-block: clamp(2rem, 6vw, 4.2rem);
  padding-bottom: unset;
}

.home-page .home-shared-sky-stack {
  background: #000;
  animation: none;
  position: relative;
}

.home-page .home-shared-sky-stack > .home-brands-logos-section {
  background: transparent !important;
  animation: none !important;
  padding-bottom: 0;
}

.home-page .home-shared-sky-stack > .home-success-section {
  animation: none !important;
  background: #000;
}

.home-page .home-shared-sky-stack > .home-success-section::before {
  background: url("assets/images/bg/stats1.png") center / cover no-repeat;
}

.home-page .home-shared-sky-stack > .home-success-section::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
  background:
    radial-gradient(42% 34% at 16% 24%, rgba(118, 58, 245, 0.28) 0%, rgba(118, 58, 245, 0) 72%),
    radial-gradient(38% 30% at 84% 72%, rgba(166, 4, 242, 0.24) 0%, rgba(166, 4, 242, 0) 74%),
    url("assets/images/bg/stats2.png") center / cover no-repeat;
}

.home-page .home-shared-sky-stack > .home-more-services-section {
  animation: none !important;
  background: url("assets/images/bg/stats1.png") center / cover no-repeat !important;
}

@keyframes home-stars-drift {
  0% {
    background-position: 44% 38%;
  }

  50% {
    background-position: 57% 62%;
  }

  100% {
    background-position: 43% 56%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-shared-sky-stack {
    animation: none;
  }

  .home-success-section,
  .home-more-services-section,
  .contact-faq-section {
    animation: none;
  }
}

.home-more-services-section h2 {
  color: #fff;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(1.95rem, 5.8vw, 4rem);
  letter-spacing: -0.0001em;
  line-height: 1.2;
  margin: 0 0 clamp(0.95rem, 2.2vw, 2.5rem);
  text-align: center;
  text-transform: uppercase;
}

.home-more-services-section h2 .accent {
  color: #7a2bff;
}

.home-more-services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.home-more-services-mobile-slider {
  display: none;
}

.home-more-service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 11.25rem;
  overflow: hidden;
  padding: 24px 22px;
  position: relative;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.home-more-service-card::before {
  background: #7a1cfe;
  content: "";
  height: 2px;
  inset: 0 0 auto;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-more-service-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
  }

  .home-more-service-card:hover::before {
    transform: scaleX(1);
  }
}

.home-more-service-card:focus-visible {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  outline: none;
  transform: translateY(-4px);
}

.home-more-service-card:focus-visible::before {
  transform: scaleX(1);
}

.home-more-service-card img {
  height: clamp(2.1rem, 2.4vw, 2.7rem);
  width: clamp(2.1rem, 2.4vw, 2.7rem);
}

.home-more-service-card h3 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.home-more-service-card p {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: unset;
  max-width: 266px;
  min-height: 130px;
  width: 100%;
}

.home-more-service-link {
  align-items: center;
  color: #7a1cfe;
  display: inline-flex;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  gap: 6px;
  letter-spacing: 0.01em;
  margin-top: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-more-service-card:hover .home-more-service-link {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-more-service-card:focus-visible .home-more-service-link {
  opacity: 1;
  transform: translateX(0);
}

.home-more-service-mobile-cta {
  display: none;
}

.home-more-service-mobile-arrow {
  align-items: center;
  background: #7a2bff;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  height: 2rem;
  justify-content: center;
  width: 56px;
}

.home-more-service-mobile-arrow i {
  font-size: 0.95rem;
  line-height: 1;
}

.home-about-section {
  background: #fff url("assets/images/home/bulb-bg.png") center top / contain no-repeat;
}

.home-who-section {
  background: transparent;
  padding-bottom: clamp(1.5rem, 4vw, 2.7rem);
  padding-top: clamp(5rem, 14vw, 10rem);
}

@media (min-width: 992px) {
  .home-who-section {
    padding-top: 560px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-owl {
    display: block;
    margin: 0 auto 0.65rem;
    max-width: min(100%, 20rem);
    position: relative;
    top: 48px;
  }
}

@media (min-width: 1024px) and (max-width: 1199.98px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-section {
    padding-top: 400px;
  }
}

@media (min-width: 1200px) {
  .home-who-section {
    padding-top: 400px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-owl {
    margin-bottom: 0.8rem;
    max-width: min(100%, 24rem);
    top: 72px;
  }
}

.home-who-inner {
  margin-inline: auto;
  max-width: 933px;
  text-align: center;
}

.home-who-owl {
  display: none;
  height: auto;
  margin: 0 auto clamp(1rem, 2.4vw, 1.8rem);
  max-width: min(100%, 15.5rem);
  width: 100%;
}

.home-who-section h2 {
  color: #000;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.0001em;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.home-who-copy {
  color: #7e23fe;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1rem, 1.65vw, 24px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: clamp(1.9rem, 3.6vw, 52px);
  margin: clamp(1rem, 2.2vw, 1.75rem) auto 0;
  max-width: 933px;
  text-align: center;
  text-transform: uppercase;
}

.home-who-copy-line {
  display: block;
}

.home-who-copy-line-dark {
  color: #000;
}

.home-who-btn {
  align-items: center;
  background: #d9d9d9;
  border-radius: 5px;
  color: #090909;
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.04em;
  margin-top: clamp(1.2rem, 2.8vw, 2.25rem);
  min-height: 50px;
  min-width: 200px;
  padding: 0.6rem 1.2rem;
  position: relative;
  text-transform: uppercase;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  will-change: transform;
}

.home-who-btn:hover,
.home-who-btn:focus-visible {
  background: #c7c7c7;
  box-shadow: 0 8px 24px rgba(9, 9, 9, 0.16);
  transform: translate3d(0, -1px, 0) !important;
}

.home-who-presence {
  align-items: center;
  background: #090909;
  border: 1px solid #fff;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  margin: clamp(1.8rem, 4vw, 3rem) auto 0;
  max-width: 625px;
  min-height: 50px;
  width: 100%;
}

.home-who-presence-label,
.home-who-presence-countries {
  color: #fff;
  flex: 1 1 50%;
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1rem, 1.65vw, 20px);
  font-style: normal;
  font-weight: 400;
  gap: 0.55rem;
  justify-content: center;
  align-items: center;
  letter-spacing: -0.0001em;
  line-height: 1.12;
  padding-inline: clamp(0.7rem, 2vw, 1.2rem);
  text-align: center;
  text-transform: capitalize;
}

.home-who-presence-dot {
  animation: home-presence-pulse 2s ease-in-out infinite;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.32);
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.home-who-presence-divider {
  background: #fff;
  height: 57px;
  width: 2px;
}

@keyframes home-presence-pulse {
  0%,
  100% {
    background: #ffffff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.28);
    opacity: 1;
    transform: scale(1);
  }
  50% {
    background: #8f8f96;
    box-shadow: 0 0 0 8px rgba(143, 143, 150, 0);
    opacity: 0.82;
    transform: scale(1.12);
  }
}

.home-different-section {
  background: transparent;
  padding-block: clamp(1.4rem, 3vw, 2.8rem) clamp(2.4rem, 5.8vw, 4.8rem);
}

.home-different-stack {
  display: grid;
  gap: clamp(2.8rem, 7vw, 5.3rem);
}

.home-different-row {
  align-items: start;
  column-gap: clamp(2rem, 6vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 453px) minmax(0, 1fr);
}

.home-different-row-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(0, 453px);
}

@media (min-width: 992px) {
  .home-page .home-different-section {
    --home-different-sticky-top: clamp(5.5rem, 8vw, 7rem);
  }

  .home-page .home-about-section,
  .home-page .home-different-section,
  .home-page .home-different-stack,
  .home-page .home-different-row,
  .home-page .home-different-row-bottom {
    overflow: visible;
  }

  .home-page .home-different-row,
  .home-page .home-different-row-bottom {
    position: relative;
  }

  .home-page .home-different-row-top .home-different-owl-block {
    align-self: start;
    height: fit-content;
    position: sticky;
    top: var(--home-different-sticky-top);
    z-index: 2;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-owl--why {
    display: block;
    max-width: min(100%, 19rem);
  }

  .home-page .home-different-row-top .home-different-pillars {
    align-self: start;
  }

  .home-page .home-different-row-bottom .home-different-owl-block-success {
    align-self: start;
    height: fit-content;
    position: sticky;
    top: var(--home-different-sticky-top);
    z-index: 2;
  }

  .home-page .home-different-row-bottom .home-different-stories {
    align-self: start;
  }
}

.home-different-owl-block {
  display: grid;
  gap: clamp(1rem, 2.6vw, 1.8rem);
}

.home-different-title-shell {
  display: grid;
  justify-items: center;
  margin-inline: auto;
  width: 100%;
}

.home-different-title-line {
  background: #000;
  display: block;
  height: 1px;
  width: min(100%, 271.5px);
}

.home-different-title-shell h2 {
  color: #000;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.7rem, 2.9vw, 40px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.0001em;
  line-height: 1.12;
  margin: clamp(0.65rem, 1.6vw, 1.05rem) 0;
  text-align: center;
  text-transform: uppercase;
}

.home-different-title-accent {
  color: #7a1cfe;
}

.home-different-row-top .home-different-title-shell h2 {
  width: min(100%, 292px);
}

.home-different-owl {
  margin-inline: auto;
  max-width: 453px;
  width: 100%;
}

.home-different-owl--why {
  display: none;
  margin-top: clamp(0.85rem, 1.8vw, 1.2rem);
}

.home-different-pillars {
  margin-left: auto;
  max-width: 518px;
  width: 100%;
}

.home-different-pillar {
  border-top: 1px solid #000;
  padding-block: clamp(0.9rem, 2vw, 1.4rem);
}

.home-different-mobile-thumb {
  display: none;
}

.home-different-pillar:last-child {
  border-bottom: 1px solid #000;
}

.home-different-pillar h3,
.home-different-story h3 {
  color: #000;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 32px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.0001em;
  line-height: 1.16;
  margin: 0;
  text-transform: uppercase;
}

.home-different-pillar p,
.home-different-story p {
  color: #000;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1rem, 1.65vw, 20px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 1.12;
  margin: clamp(0.6rem, 1.4vw, 0.9rem) 0 0;
}

.home-different-stories {
  max-width: 480px;
  width: 100%;
}

.home-different-mobile-dots {
  display: none;
}

.home-force-mobile-slider {
  display: none;
}

.home-different-story {
  border-top: 1px solid #000;
  padding-block: clamp(0.95rem, 2vw, 1.5rem);
}

.home-different-story:last-child {
  border-bottom: 1px solid #000;
}

.home-different-owl-block-success .home-different-title-shell h2 {
  width: min(100%, 213px);
}

.home-portfolio-section {
  background: linear-gradient(180deg, #5f10dc 0%, #7e23fe 54%, #6820e2 100%);
  overflow: hidden;
  padding-block: clamp(2.3rem, 6vw, 3.3rem) clamp(3rem, 6.8vw, 5.15rem);
}

.home-portfolio-top {
  align-items: center;
  column-gap: clamp(2rem, 7.5vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 27rem);
}

.home-portfolio-copy {
  max-width: 42rem;
}

.home-portfolio-copy h2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0;
  padding-bottom: clamp(0.5rem, 1.2vw, 0.95rem);
  text-transform: uppercase;
}

.home-portfolio-copy p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  color: rgba(255, 255, 255, 0.95);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.6vw, 2rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: clamp(0.95rem, 2vw, 1.45rem) 0 0;
  max-width: 37.4rem;
  padding-bottom: clamp(0.7rem, 1.4vw, 1.1rem);
}

@media (min-width: 1024px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-copy h2 {
    font-size: 40px;
    line-height: 1.08;
  }

  .about-page .home-portfolio-copy h2,
  .services-page .home-portfolio-copy h2,
  .service-detail-page .home-portfolio-copy h2 {
    font-size: 40px;
    line-height: 1.08;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-copy p {
    font-size: 24px;
    line-height: 1.18;
  }

  .about-page .home-portfolio-copy p,
  .services-page .home-portfolio-copy p,
  .service-detail-page .home-portfolio-copy p {
    font-size: 24px;
    line-height: 1.18;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-tabs button,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-tabs a {
    font-size: 24px;
  }

  .about-page .home-portfolio-tabs button,
  .about-page .home-portfolio-tabs a,
  .services-page .home-portfolio-tabs button,
  .services-page .home-portfolio-tabs a,
  .service-detail-page .home-portfolio-tabs button,
  .service-detail-page .home-portfolio-tabs a {
    font-size: 24px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-slide {
    height: 260px;
  }

  .about-page .home-portfolio-slide,
  .services-page .home-portfolio-slide,
  .service-detail-page .home-portfolio-slide {
    height: 260px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-slide img {
    height: 100%;
    margin: 0;
    max-height: none;
    object-fit: cover;
    width: 100%;
  }

  .about-page .home-portfolio-slide img,
  .services-page .home-portfolio-slide img,
  .service-detail-page .home-portfolio-slide img {
    height: 100%;
    margin: 0;
    max-height: none;
    object-fit: cover;
    width: 100%;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-nav {
    height: 35px;
  }

  .about-page .home-portfolio-nav,
  .services-page .home-portfolio-nav,
  .service-detail-page .home-portfolio-nav {
    height: 35px;
  }
}

.home-portfolio-owl {
  margin-left: auto;
  max-width: clamp(13rem, 30vw, 27rem);
  width: 100%;
}

.home-portfolio-tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.85rem, 2vw, 2.4rem);
  margin-top: unset;
}

.home-portfolio-tabs button,
.home-portfolio-tabs a {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.62vw, 2.1rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  padding: 0 0 0.25rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-portfolio-tabs button.is-active {
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  color: #fff;
}

.home-portfolio-tabs button:hover,
.home-portfolio-tabs a:hover {
  color: #fff;
}

.home-portfolio-carousel {
  --portfolio-gap: clamp(0.65rem, 1.2vw, 1.1rem);
  margin-left: calc(50% - 50vw);
  margin-top: clamp(1.05rem, 2.4vw, 1.9rem);
  overflow: hidden;
  width: 100vw;
}

.home-portfolio-track {
  align-items: stretch;
  display: flex;
  gap: var(--portfolio-gap);
  will-change: transform;
  width: max-content;
}

.home-portfolio-slide {
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  flex: 0 0 auto;
  height: unset;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: calc((100vw - (var(--portfolio-gap) * 3)) / 4);
}

.home-portfolio-slide img {
  display: block;
  height: auto;
  image-rendering: auto;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  width: auto;
}

.home-portfolio-slide::after {
  background: linear-gradient(180deg, rgba(6, 5, 18, 0) 10%, rgba(6, 5, 18, 0.82) 100%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.35s ease;
}

.home-portfolio-slide-overlay {
  align-items: flex-start;
  bottom: clamp(0.85rem, 1.6vw, 1.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: clamp(0.85rem, 1.6vw, 1.2rem);
  right: auto;
  text-align: left;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.home-portfolio-slide-overlay h3 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

.home-portfolio-slide-overlay span {
  color: rgba(228, 228, 233, 0.92);
  font-family: "Inter", sans-serif;
  font-size: clamp(0.74rem, 0.82vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-slide:hover img,
  .about-page .home-portfolio-slide:hover img,
  .services-page .home-portfolio-slide:hover img,
  .service-detail-page .home-portfolio-slide:hover img {
    transform: scale(1.06);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-slide:hover::after,
  .about-page .home-portfolio-slide:hover::after,
  .services-page .home-portfolio-slide:hover::after,
  .service-detail-page .home-portfolio-slide:hover::after {
    opacity: 1;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-slide:hover .home-portfolio-slide-overlay,
  .about-page .home-portfolio-slide:hover .home-portfolio-slide-overlay,
  .services-page .home-portfolio-slide:hover .home-portfolio-slide-overlay,
  .service-detail-page .home-portfolio-slide:hover .home-portfolio-slide-overlay {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.home-portfolio-controls {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: clamp(1.05rem, 2.4vw, 1.8rem);
}

.home-portfolio-nav {
  align-items: center;
  background: #f5f5f5;
  border: 0;
  border-radius: 7px;
  color: #111;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.98rem, 1.1vw, 1.35rem);
  font-weight: 500;
  gap: 0.45rem;
  height: clamp(2.35rem, 3.2vw, 3rem);
  letter-spacing: -0.01em;
  padding-inline: clamp(1rem, 1.5vw, 1.45rem);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.home-page .home-portfolio-nav:hover,
.home-page .home-portfolio-nav:focus-visible,
.about-page .home-portfolio-nav:hover,
.about-page .home-portfolio-nav:focus-visible,
.services-page .home-portfolio-nav:hover,
.services-page .home-portfolio-nav:focus-visible,
.service-detail-page .home-portfolio-nav:hover,
.service-detail-page .home-portfolio-nav:focus-visible {
  background: #efefef;
  box-shadow: 0 8px 24px rgba(9, 9, 9, 0.16);
  transform: translate3d(0, -1px, 0) !important;
}

.home-portfolio-nav-arrow {
  font-size: 1.42em;
  line-height: 1;
}

.home-connect-section {
  --home-connect-split: 62%;
  --home-connect-split-offset: 150px;
  --home-connect-split-point: min(100%, calc(var(--home-connect-split) + var(--home-connect-split-offset)));
  background: #000;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.8rem, 6vw, 6rem);
  position: relative;
}

@media (min-width: 992px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-section {
    padding-top: 190px;
  }

  .services-page .home-connect-section {
    padding-top: 190px;
  }

  .service-detail-page .home-connect-section {
    padding-top: 190px;
  }
}

@media (min-width: 992px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-section::after {
    background: #fff;
    bottom: 0;
    content: "";
    height: 20%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100vw;
    z-index: 0;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-section::after {
    background: #fff;
    bottom: 0;
    content: "";
    height: 20%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100vw;
    z-index: 0;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-block {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-section {
    padding-bottom: 62px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-section {
    padding-bottom: 62px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section h2 {
    margin-bottom: 30px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section h2 {
    margin-bottom: 30px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row-3 {
    margin-top: 0;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row-3 {
    margin-top: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1204.98px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-card,
  :is(.about-page, .services-page, .service-detail-page) .home-connect-card {
    padding-bottom: 60px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-video,
  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-video {
    width: min(50%, 33.6875rem);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-content,
  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-content {
    max-width: min(100%, 26rem);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-section::after,
  :is(.about-page, .services-page, .service-detail-page) .home-connect-section::after {
    background: #fff;
    bottom: 0;
    content: "";
    height: 20%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100vw;
    z-index: 0;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-section,
  :is(.about-page, .services-page, .service-detail-page) .home-connect-section {
    padding-bottom: 10px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-row-bottom .home-testimonial-section,
  :is(.about-page, .services-page, .service-detail-page) .home-connect-row-bottom .home-testimonial-section {
    margin-top: 50px;
    padding-top: 0;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .about-force-section.home-force-section,
  :is(.about-page, .services-page, .service-detail-page) .about-force-section.home-force-section {
    margin-top: 0;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section h2,
  :is(.about-page, .services-page, .service-detail-page) .home-force-section h2 {
    margin-bottom: 30px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row-3,
  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row-3 {
    margin-top: 0;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-head {
    padding-left: 56px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-card p {
    margin-top: 16px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-row-bottom {
    margin-top: 190px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-content {
    margin-left: 37px;
    margin-top: 20px;
    max-width: min(100%, 26.5rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-video {
    right: calc(clamp(-1.4rem, -1.9vw, -0.8rem) - 7px);
    top: calc(clamp(-1.8rem, -2.4vw, -1rem) - 80px);
    width: min(54%, 24rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-title-wrap {
    margin-inline: 30px 0;
    max-width: fit-content;
    width: fit-content;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-card {
    margin-top: 0.8rem;
    min-height: 210px;
    padding: clamp(1.15rem, 1.9vw, 1.5rem) clamp(0.9rem, 1.8vw, 1.35rem) clamp(1rem, 1.7vw, 1.25rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-head {
    gap: 0;
    justify-content: space-around;
    padding-left: 20px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-head strong {
    font-size: 20px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-card p {
    font-size: 13px;
    line-height: 1.35;
    margin-top: 16px;
  }
}

.home-connect-section::before {
  animation: faq-bg-drift 28s ease-in-out infinite alternate;
  background: url("assets/images/bg/partner.png") center / cover no-repeat;
  content: "";
  inset: -2% -8%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.home-connect-section .layout-shell {
  position: relative;
  z-index: 1;
}

.home-connect-row {
  width: 100%;
}

.home-connect-row-top {
  align-items: start;
  column-gap: clamp(2rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-partners-block {
  max-width: 32rem;
}

.home-partners-line {
  background: rgba(255, 255, 255, 0.8);
  display: block;
  height: 1px;
  width: min(100%, 16.9rem);
}

.home-partners-block h2 {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: clamp(1rem, 2vw, 1.6rem) 0;
  max-width: 24rem;
  text-transform: uppercase;
}

.home-partners-icons {
  align-items: center;
  column-gap: clamp(1rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  justify-content: start;
  margin-top: clamp(1.15rem, 2.8vw, 2rem);
  row-gap: clamp(1.1rem, 2.8vw, 2rem);
}

.home-partners-icons img {
  filter: grayscale(100%);
  height: clamp(2rem, 4.6vw, 4rem);
  object-fit: contain;
  width: auto;
}

.home-connect-card {
  max-width: 30.5rem;
  padding-top: clamp(2.8rem, 5vw, 3.8rem);
  position: relative;
}

.home-connect-kicker {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  display: inline-block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0;
  max-width: 30rem;
  padding-bottom: clamp(0.55rem, 1.2vw, 0.85rem);
  padding-top: clamp(0.95rem, 2vw, 1.35rem);
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.home-connect-kicker::before {
  background: url("assets/images/home/connect-bg.png") center / contain no-repeat;
  content: "";
  height: clamp(10.4rem, 20vw, 15rem);
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-52%, -54%);
  width: clamp(12rem, 23vw, 17.8rem);
  z-index: -1;
}

.home-connect-copy {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.22;
  margin: clamp(0.95rem, 1.8vw, 1.3rem) 0 0;
  max-width: 28.5rem;
}

.home-connect-card a {
  align-items: center;
  background: #fff;
  border-radius: 5px;
  color: #000;
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 20px);
  font-style: normal;
  font-weight: 400;
  gap: 0.45rem;
  justify-content: center;
  letter-spacing: -0.01em;
  margin-top: clamp(1.4rem, 2.8vw, 2.25rem);
  min-height: 40px;
  min-width: 200px;
  padding: 0.25rem 1rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.home-page .home-connect-card a:hover,
.home-page .home-connect-card a:focus-visible,
.about-page .home-connect-card a:hover,
.about-page .home-connect-card a:focus-visible,
.services-page .home-connect-card a:hover,
.services-page .home-connect-card a:focus-visible,
.service-detail-page .home-connect-card a:hover,
.service-detail-page .home-connect-card a:focus-visible {
  background: #f2f2f2;
  box-shadow: 0 8px 24px rgba(126, 35, 254, 0.22);
  transform: translate3d(0, -1px, 0) !important;
}

.home-connect-card a i {
  color: #000;
  font-size: 1.35em;
  line-height: 1;
}

.home-connect-row-bottom {
  margin-top: clamp(2.4rem, 8vw, 8rem);
}

.home-connect-row-bottom .about-testimonial-section {
  margin-top: 0;
  padding-block: 0;
}

.home-connect-row-bottom .about-testimonial-panel {
  max-width: 100%;
}

.home-testimonial-section {
  padding-top: 0;
  width: 100%;
}

.home-testimonial-block {
  background: linear-gradient(180deg, #8b37ff 0%, #7a2bff 100%);
  border-radius: clamp(1.2rem, 2.8vw, 2rem);
  margin-left: 0;
  min-height: clamp(24rem, 36vw, 31rem);
  max-width: 1080px;
  overflow: visible;
  padding: clamp(1.1rem, 2.6vw, 1.8rem) clamp(0.9rem, 2.4vw, 1.6rem) clamp(1rem, 2.3vw, 1.55rem);
  position: relative;
  width: min(100%, 1080px);
}

@keyframes home-stars-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1.4%, -2.2%, 0) scale(1.018);
  }
  100% {
    transform: translate3d(1.8%, -1.3%, 0) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-connect-section::before {
    animation: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-faq-section::before,
  .about-page .home-faq-section::before,
  .services-page .home-faq-section::before,
  .service-detail-page .home-faq-section::before {
    animation: none;
  }
}

.home-testimonial-content {
  margin-left: 37px;
  margin-top: 20px;
  max-width: min(100%, 31rem);
  position: relative;
  z-index: 1;
}

.home-testimonial-video {
  margin: 0;
  position: absolute;
  right: calc(clamp(-3rem, -4.2vw, -1.8rem) - 7px);
  top: calc(clamp(-2.3rem, -3.4vw, -1.2rem) - 30px);
  width: min(55%, 33.6875rem);
  z-index: 2;
}

.home-testimonial-video img {
  aspect-ratio: 539 / 301;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.home-testimonial-play {
  align-items: center;
  background: transparent;
  border: 4px solid #fff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: clamp(2.8rem, 4vw, 3.3rem);
  justify-content: center;
  left: clamp(0.8rem, 1.3vw, 1rem);
  position: absolute;
  top: clamp(0.7rem, 1.2vw, 0.95rem);
  width: clamp(2.8rem, 4vw, 3.3rem);
}

.home-testimonial-play i {
  font-size: clamp(1.18rem, 1.6vw, 1.5rem);
  margin-left: 0.14rem;
}

.home-testimonial-video figcaption {
  background: #7a2bff;
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.85rem);
  left: clamp(0.8rem, 1.3vw, 1rem);
  line-height: 1.05;
  padding: clamp(0.35rem, 0.7vw, 0.55rem) clamp(0.6rem, 1vw, 0.85rem);
  position: absolute;
  text-transform: uppercase;
  top: clamp(64%, 71%, 75%);
}

.home-testimonial-title-wrap {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 30px;
  margin-inline: 30px 0;
  max-width: fit-content;
  width: fit-content;
}

.home-testimonial-line {
  background: rgba(255, 255, 255, 0.92);
  display: block;
  height: 1px;
  width: 100%;
}

.home-testimonial-heading {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: clamp(0.4rem, 1vw, 0.7rem) 0 0;
  text-align: center;
  text-transform: uppercase;
}

.home-testimonial-carousel {
  margin-top: clamp(0.9rem, 2vw, 1.3rem);
}

.home-testimonial-track {
  clip-path: inset(-2.25rem 0 0 -2rem);
  position: relative;
}

.home-testimonial-slide {
  display: none;
}

.home-testimonial-slide.is-dragging,
.home-testimonial-slide.is-animating {
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.home-testimonial-slide.is-active {
  display: block;
}

.home-testimonial-card {
  background: #e8e8ea;
  border-radius: clamp(1rem, 2.4vw, 1.5rem);
  color: #111;
  min-height: 210px;
  padding: clamp(1.45rem, 2.8vw, 2rem) clamp(1rem, 2.6vw, 1.8rem) clamp(1.15rem, 2.4vw, 1.6rem);
  position: relative;
}

.home-testimonial-avatar {
  border-radius: 50%;
  height: 90px;
  object-fit: cover;
  position: absolute;
  left: clamp(-1.6rem, -1.8vw, -0.9rem);
  top: clamp(-1.9rem, -2.6vw, -1.2rem);
  width: 90px;
}

.home-testimonial-head {
  align-items: center;
  display: flex;
  gap: 0rem;
  justify-content: space-around;
  padding-left: 20px;
}

.home-testimonial-head strong {
  color: #111;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.16;
}

.home-testimonial-stars {
  color: #1d1b20;
  display: inline-flex;
  font-size: 14px;
  gap: clamp(0.12rem, 0.3vw, 0.24rem);
  line-height: 1;
}

.home-testimonial-card p {
  color: #161616;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.34;
  margin: 16px 0 0;
}

.home-testimonial-dots {
  align-items: center;
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin-top: clamp(0.95rem, 1.8vw, 1.2rem);
}

.home-testimonial-dot {
  background: rgba(255, 255, 255, 0.52);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 0.75rem;
  padding: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
  width: 0.75rem;
}

.home-testimonial-dot.is-active {
  background: #fff;
  transform: scale(1.08);
}

.home-testimonial-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.home-force-section {
  margin-top: unset;
}

.home-world-section {
  margin-top: 0;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-faq-section,
.about-page .home-faq-section,
.services-page .home-faq-section,
.service-detail-page .home-faq-section {
  animation: none !important;
  background: #000;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(2rem, 6vw, 6rem);
  padding-bottom: clamp(2rem, 6vw, 6rem);
  position: relative;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-faq-section::before,
.about-page .home-faq-section::before,
.services-page .home-faq-section::before,
.service-detail-page .home-faq-section::before {
  display: none;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-faq-section::before,
.about-page .home-faq-section::before,
.services-page .home-faq-section::before,
.service-detail-page .home-faq-section::before {
  animation: home-stars-float 14s ease-in-out infinite alternate;
  background: url("assets/images/home/connect-stars.svg") center / cover no-repeat;
  content: "";
  inset: 0;
  opacity: 0.52;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-faq-section > .container-fluid.layout-shell.contact-shell,
.about-page .home-faq-section > .container-fluid.layout-shell.contact-shell,
.services-page .home-faq-section > .container-fluid.layout-shell.contact-shell,
.service-detail-page .home-faq-section > .container-fluid.layout-shell.contact-shell {
  position: relative;
  z-index: 1;
}

.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-faq-section::after,
.about-page .home-faq-section::after,
.services-page .home-faq-section::after,
.service-detail-page .home-faq-section::after {
  animation: faq-bg-drift 28s ease-in-out infinite alternate;
  background: url("assets/images/bg/faq.png") center top / cover no-repeat;
  content: "";
  inset: -2% -8%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

@keyframes faq-bg-drift {
  0% {
    transform: translateX(-3%);
  }

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

.home-blog-section {
  --home-blog-bg-shift: -35px;
  --home-blog-white-start: 75%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0 var(--home-blog-white-start), #f9f5ff var(--home-blog-white-start) 100%),
    #f1f1f5 url("assets/images/home/ourblog-bg.png") center var(--home-blog-bg-shift) / cover no-repeat;
  padding-block: clamp(2.2rem, 6vw, 4.4rem);
}

.blog-page .home-blog-section {
  background: #000 url("assets/images/home/bg-net1.png") center 100px / cover no-repeat;
  margin-top: 100px;
}

.blog-page .home-blog-title-row h3,
.blog-page .home-blog-title-link,
.blog-page .home-blog-excerpt,
.blog-page .home-blog-author-name {
  color: #fff;
}

.blog-page .home-blog-category {
  color: #fff;
}

.blog-page .blog-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: calc(clamp(1.8rem, 4vw, 3rem) + 20px);
}

.blog-page .blog-pagination-pages {
  align-items: center;
  background: rgba(7, 5, 20, 0.85);
  border: 1px solid rgba(144, 129, 255, 0.28);
  border-radius: 999px;
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.35rem 0.45rem;
}

.blog-page .blog-pagination-page,
.blog-page .blog-pagination-btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  gap: 0.45rem;
  height: 2.3rem;
  justify-content: center;
  min-width: 2.3rem;
  padding: 0 0.8rem;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.blog-page .blog-pagination-page {
  background: transparent;
  padding-inline: 0.7rem;
}

.blog-page .blog-pagination-page.is-active {
  background: linear-gradient(90deg, #6517cf 0%, #8928fe 100%);
  border-color: rgba(166, 126, 255, 0.85);
  color: #fff;
  pointer-events: none;
}

.blog-page .blog-pagination-dots {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 0 0.15rem;
}

.blog-page .blog-pagination-btn.is-disabled {
  cursor: default;
  opacity: 0.4;
}

.blog-page .blog-pagination-btn:not(.is-disabled):hover,
.blog-page .blog-pagination-page:not(.is-active):hover {
  background: rgba(137, 40, 254, 0.2);
  border-color: rgba(166, 126, 255, 0.75);
  color: #fff;
}

/* Blog detail only: lift the shared top-scene background so owl is fully visible */
.blog-detail-page {
  --site-main-bg-position: center -70px;
}

.blog-detail-page .blog-detail-article-section {
  background: #fff;
  padding-block: clamp(2rem, 6vw, 4.2rem);
}

.blog-detail-page .blog-detail-article {
  margin-inline: auto;
  max-width: 900px;
}

.blog-detail-page .blog-detail-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.blog-detail-page .blog-detail-author {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
}

.blog-detail-page .blog-detail-author img {
  border-radius: 50%;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.blog-detail-page .blog-detail-author-name {
  color: #111827;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.blog-detail-page .blog-detail-author-date,
.blog-detail-page .blog-detail-read-time {
  color: #6b7280;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.blog-detail-page .blog-detail-feature {
  margin: clamp(1rem, 3vw, 1.8rem) 0 0;
}

.blog-detail-page .blog-detail-feature img {
  border-radius: 16px;
  display: block;
  width: 100%;
}

.blog-detail-page .blog-detail-body {
  margin-top: clamp(1.2rem, 3vw, 2rem);
}

.blog-detail-page .blog-detail-body h2 {
  color: #111827;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin: clamp(1.2rem, 3vw, 2rem) 0 0.7rem;
}

.blog-detail-page .blog-detail-body p,
.blog-detail-page .blog-detail-body li {
  color: #1f2937;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 400;
  line-height: 1.75;
}

.blog-detail-page .blog-detail-body p {
  margin: 0.8rem 0 0;
}

.blog-detail-page .blog-detail-body ul {
  margin: 0.9rem 0 0;
  padding-left: 1.25rem;
}

.blog-detail-page .blog-detail-more-section {
  background: #f1f1f5;
}

.blog-detail-page .blog-detail-more-head h2 {
  color: #7a1cfe;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 400;
  margin: 0;
  text-align: center;
}

@media (max-width: 767.98px) {
  .blog-detail-page .blog-detail-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

.home-blog-head {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-inline: auto;
  max-width: 1024px;
  text-align: center;
}

.home-blog-badge {
  align-items: center;
  background: #f2e8fe;
  border-radius: 16px;
  color: #7e23fe;
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  height: 28px;
  justify-content: center;
  line-height: 20px;
  margin: 0;
  min-width: 82px;
  padding: 4px 12px;
}

.home-blog-title {
  color: #7a1cfe;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: clamp(2.5rem, 4.2vw, 3.75rem);
  margin: 0;
  max-width: 1024px;
}

.home-blog-supporting {
  color: #7e23fe;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1rem, 1.45vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin: unset;
  margin-bottom: 20px;
  max-width: 1024px;
}

.home-blog-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 392px));
  justify-content: center;
  margin-top: clamp(1.4rem, 2.4vw, 2rem);
  margin-inline: auto;
  max-width: 1216px;
  width: 100%;
}

.home-blog-card {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 36px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition:
    background 0.3s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  width: min(100%, 392px);
}

.home-blog-card::before {
  background: #7a1cfe;
  content: "";
  height: 2px;
  inset: 0 0 auto;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}

.home-blog-thumb {
  aspect-ratio: 1 / 1;
  align-self: stretch;
  border-radius: 36px;
  object-fit: cover;
  transition: transform 0.25s ease;
  width: 100%;
}

.home-blog-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 22px;
  min-height: auto;
}

@media (hover: hover) and (pointer: fine) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card:hover,
  .service-detail-page .service-detail-blurb-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.29) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card:hover::before,
  .service-detail-page .service-detail-blurb-card:hover::before {
    transform: scaleX(1);
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page, .blog-page, .blog-detail-page) .home-blog-card:hover {
    transform: translateY(-4px);
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page, .blog-page, .blog-detail-page) .home-blog-card:hover::before {
    transform: scaleX(1);
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page, .blog-page, .blog-detail-page) .home-blog-card:hover .home-blog-thumb {
    transform: scale(1.015);
  }
}

.home-blog-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.home-blog-category {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 3px;
  box-shadow: inset -1.5px -1.5px 4.5px rgba(0, 0, 0, 0.25), inset 0.75px 0.75px 4.5px rgba(255, 255, 255, 0.2);
  color: #000;
  display: inline-flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 9.14286px;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
  min-height: 18px;
  padding: 1px 6px;
  text-transform: capitalize;
}

.home-blog-title-row {
  align-items: flex-start;
  display: block;
  gap: 0;
}

.home-blog-title-row h3 {
  color: #000;
  display: -webkit-box;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 27px;
  margin: 0;
  text-transform: capitalize;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-blog-title-link {
  color: inherit;
  text-decoration: none;
}

.home-blog-post-link {
  display: none;
}

.home-blog-post-link i {
  font-size: 24px;
  line-height: 1;
}

.home-blog-post-link:hover {
  color: inherit;
  transform: none;
}

.home-blog-excerpt {
  display: none;
}

.home-blog-author {
  align-items: center;
  display: inline-flex;
  gap: 0;
  margin-top: 2px;
}

.home-blog-author img {
  display: none;
}

.home-blog-author-meta {
  display: flex;
  flex-direction: column;
}

.home-blog-author-name {
  color: #000;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 9.14286px;
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 16px;
  text-transform: capitalize;
}

.home-blog-author-date {
  display: none;
}

.home-blog-btn {
  align-items: center;
  background-color: #791cfe;
  border-radius: 5px;
  color: #fff;
  display: flex;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  margin: clamp(1.35rem, 2.8vw, 2rem) auto 0;
  min-height: 40px;
  padding: 0;
  text-transform: uppercase;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  white-space: nowrap;
  width: min(100%, 180px);
}

.home-page .home-blog-btn:hover,
.home-page .home-blog-btn:focus-visible,
.about-page .home-blog-btn:hover,
.about-page .home-blog-btn:focus-visible,
.services-page .home-blog-btn:hover,
.services-page .home-blog-btn:focus-visible,
.service-detail-page .home-blog-btn:hover,
.service-detail-page .home-blog-btn:focus-visible {
  background: #6b16ef;
  box-shadow: 0 8px 30px rgba(126, 35, 254, 0.28);
  transform: translate3d(0, -1px, 0) !important;
}

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

  .home-blog-grid {
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-brands-logos-row img {
    height: clamp(3.2rem, 5vw, 4.9rem);
  }
}

@media (max-width: 991.98px) {
  .home-connect-section {
    --home-connect-split: 76%;
  }

  .hero-title {
    font-size: var(--fs-hero-unified);
  }

  .home-hero-btn {
    width: min(100%, 30rem);
  }

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

  .home-success-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stat1"
      "stat2"
      "stat3";
    margin-top: clamp(1.8rem, 4.8vw, 2.8rem);
    row-gap: clamp(1.5rem, 4vw, 2.4rem);
  }

  .home-success-section h2 {
    align-items: flex-start;
    line-height: 1.1;
    margin-inline: 0;
    text-align: left;
  }

  .home-success-line-top,
  .home-success-line-mid,
  .home-success-line-bottom {
    justify-content: flex-start;
    max-width: none;
    width: 100%;
  }

  .home-success-stat-1,
  .home-success-stat-2,
  .home-success-stat-3 {
    justify-self: center;
    max-width: min(100%, 32rem);
    text-align: center;
  }

  .home-success-grid p {
    margin-inline: auto;
    max-width: 30rem;
  }

  .home-connect-section .layout-shell {
    display: flex;
    flex-direction: column;
  }

  .home-connect-row-top,
  .home-connect-row-bottom {
    display: contents;
  }

  .home-connect-row-top {
    grid-template-columns: 1fr;
    row-gap: clamp(1.8rem, 4.6vw, 2.8rem);
  }

  .home-partners-block,
  .home-connect-card {
    max-width: 38rem;
  }

  .home-partners-block {
    max-width: 100%;
  }

  .home-partners-icons {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
  }

  .home-connect-card {
    order: 1;
  }

  .home-testimonial-section {
    order: 2;
  }

  .home-connect-row-bottom .home-testimonial-section {
    margin-top: clamp(4.8rem, 10vw, 6.8rem);
    padding-top: clamp(2rem, 4.8vw, 3.2rem);
  }

  .home-testimonial-block {
    min-height: auto;
    max-width: min(100%, 44rem);
    padding: clamp(13rem, 28vw, 14.5rem) clamp(0.85rem, 2.3vw, 1.2rem) clamp(1rem, 2.2vw, 1.35rem);
  }

  .home-testimonial-video {
    left: 50%;
    right: auto;
    top: clamp(-3rem, -5vw, -2.2rem);
    transform: translateX(-50%);
    width: min(92%, 32rem);
  }

  .home-testimonial-content {
    max-width: 100%;
  }

  .home-testimonial-title-wrap {
    margin-inline: auto;
  }

  .home-testimonial-card {
    min-height: clamp(15rem, 23vw, 12rem);
  }

  .home-testimonial-avatar {
    height: 90px;
    left: clamp(-1.1rem, -1.3vw, -0.8rem);
    right: auto;
    top: -1.7rem;
    width: 90px;
  }

  .home-testimonial-head strong {
    font-size: 24px;
  }

  .home-testimonial-card p {
    font-size: 14px;
  }

  .home-partners-block {
    margin-top: clamp(4.2rem, 9.5vw, 6.2rem);
    order: 3;
  }

  .home-connect-row-bottom {
    margin-top: 0;
  }

  .home-different-row,
  .home-different-row-bottom {
    gap: clamp(1.8rem, 4.6vw, 2.8rem);
    grid-template-columns: 1fr;
  }

  .service-detail-page .service-detail-top-owl-block {
    display: none;
  }

  .home-different-row-bottom .home-different-owl-block {
    margin-inline: auto;
    max-width: 32rem;
  }

  .home-different-row-bottom .home-different-owl-block-success {
    gap: 0;
    margin-bottom: 0.35rem;
    order: -1;
  }

  .service-detail-page .home-different-row-bottom .home-different-owl-block-success {
    display: grid;
    justify-items: center;
    margin-block: 0;
  }

  .service-detail-page .home-different-row-bottom .home-different-owl-block-success .home-different-owl {
    display: block;
    position: relative;
    transform: scale(1.58);
    transform-origin: center center;
    top: 1.45rem;
    z-index: 1;
  }

  .home-different-row-bottom .home-different-owl-block-success .home-different-owl {
    display: none;
  }

  .home-different-pillars,
  .home-different-stories {
    margin-inline: auto;
    max-width: 32rem;
  }

  .home-who-copy {
    line-height: clamp(1.6rem, 3.4vw, 2.35rem);
  }

  .home-who-owl {
    display: block;
  }

  .home-who-presence {
    max-width: 38rem;
  }

  .home-who-presence-label,
  .home-who-presence-countries {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
  }

  .home-different-owl {
    max-width: min(100%, 14.5rem);
  }

  .home-portfolio-top {
    gap: 1.2rem;
    grid-template-columns: 1fr;
  }

  .home-portfolio-owl {
    display: none;
  }

  .home-portfolio-owl {
    margin-inline: auto;
    max-width: min(100%, 12.5rem);
  }

  .home-portfolio-copy {
    max-width: 36rem;
  }

  .home-portfolio-tabs {
    gap: clamp(0.7rem, 1.9vw, 1.25rem);
    margin-top: clamp(1.7rem, 4.4vw, 2.8rem);
  }

  .home-portfolio-slide {
    height: clamp(170px, 24vw, 250px);
    width: calc((100vw - var(--portfolio-gap)) / 2);
  }

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

  .home-partners-icons img {
    height: 1.65rem;
  }

  .home-brands-logos-section {
    --home-brands-top-duration: 20s;
    --home-brands-bottom-duration: 20s;
  }

  .home-brands-logos-row img {
    height: clamp(3rem, 6vw, 4.2rem);
  }

  .home-brands-logos-row-bottom img:first-child,
  .home-brands-logos-row-bottom img:last-child {
    width: auto;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .home-success-grid {
    row-gap: clamp(2.2rem, 5.6vw, 3.2rem);
  }

  .home-success-stat {
    padding-block: clamp(0.4rem, 1.2vw, 0.8rem);
  }

  .home-success-grid p {
    margin-top: 0.7rem;
  }

  .home-connect-row-bottom .home-testimonial-section {
    margin-top: clamp(6rem, 10vw, 7.2rem);
    padding-top: clamp(2.4rem, 4vw, 3rem);
  }

  .home-partners-icons {
    gap: clamp(1.2rem, 2.6vw, 2rem);
    justify-content: flex-start;
  }

  .home-partners-icons img {
    height: clamp(2.25rem, 3.6vw, 2.75rem);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-owl {
    margin-bottom: 0.35rem;
    position: relative;
    top: 32px;
  }
}

@media (max-width: 767.98px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-owl {
    margin-bottom: 0.35rem;
    position: relative;
    top: 32px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  :root {
    --site-main-bg-position: center -10px;
  }

  .hero-section,
  .about-hero-section,
  .services-hero-section,
  .home-hero-section {
    padding-top: calc(clamp(2.2rem, 7vw, 6.8rem) + 90px);
  }

  .hero-content {
    margin-top: clamp(2.4rem, 5.2vw, 90px);
  }
}

@media (max-width: 767.98px) {
  .home-success-section::before,
  .home-connect-section::before,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-faq-section::after,
  .about-page .home-faq-section::after,
  .services-page .home-faq-section::after,
  .service-detail-page .home-faq-section::after {
    animation-duration: 14s;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-faq-section::before,
  .about-page .home-faq-section::before,
  .services-page .home-faq-section::before,
  .service-detail-page .home-faq-section::before {
    animation-duration: 7s;
  }

  .contact-faq-section.home-faq-section,
  .contact-faq-section.home-faq-section .container-fluid.layout-shell.contact-shell {
    display: none !important;
  }

  .home-brands-logos-section {
    --home-brands-top-duration: 34s;
    --home-brands-bottom-duration: 34s;
  }

  .home-page:not(.blog-page):not(.blog-detail-page) .home-blog-section {
    display: none !important;
  }

  .about-page .home-portfolio-section,
  .about-page .home-blog-section {
    display: none !important;
  }

  .about-page .about-story-panel {
    background: #000 url("assets/images/about/bg-1.png") center / cover no-repeat;
    margin-top: clamp(2rem, 7vw, 2.8rem);
    padding: clamp(1rem, 4.2vw, 1.3rem);
  }

  .about-page .home-building-section .about-story-header h2 {
    font-size: 22px;
    line-height: 1.08;
    text-align: center;
    text-transform: uppercase;
  }

  .about-page .about-story-lead {
    display: none;
  }

  .about-page .about-story-right-copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .about-page .about-story-content-grid {
    gap: 1rem;
    margin-top: 1rem;
  }

  .about-page .about-story-cta {
    font-size: 12px;
    gap: 0.4rem;
    min-height: 32px;
    padding: 0.3rem 0.8rem;
  }

  .about-page .about-story-cta i {
    font-size: 1em;
  }

  .about-page .about-principles-panel {
    background: #000 url("assets/images/about/bg-1.png") center / cover no-repeat;
    margin-top: 1.2rem;
    padding: clamp(1rem, 4vw, 1.2rem);
  }

  .about-page .home-building-section h2.about-principles-title {
    font-size: 22px;
    line-height: 1.08;
  }

  .about-page .home-building-section .about-principle-item summary {
    font-size: 20px;
    line-height: 1.18;
  }

  .about-page .home-building-section .about-principle-item p {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 0.6rem;
  }

  .about-page .about-tech-stack-title {
    font-size: 22px;
    line-height: 1.12;
  }

  .about-page .about-tech-stack-subtitle {
    font-size: 16px;
    line-height: 1.35;
  }

  .about-tech-stack-row img {
    height: 22px;
    width: 22px;
  }

  .about-marquee-item {
    font-size: 22px;
    line-height: 1.1;
  }

  .home-brands-section h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  .home-brands-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
  }

  :root {
    --shell-pad: clamp(40px, 10vw, 48px);
    --site-main-bg-position: center 0px;
  }

  .hero-section,
  .about-hero-section,
  .services-hero-section,
  .home-hero-section {
    padding-top: calc(clamp(2.2rem, 7vw, 6.8rem) + 200px);
  }

  .hero-title {
    font-size: 22px;
    line-height: 1.08;
  }

  .hero-kicker {
    color: #cfd1dc;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    margin: 0 0 clamp(0.2rem, 2.6vw, 0rem);
  }

  .hero-subtitle.page-subtitle {
    font-size: 10px;
    line-height: 1.3;
    margin-top: 10px;
    max-width: 50ch;
  }

  .home-page:not(.blog-page):not(.blog-detail-page):not(.service-detail-page) .home-hero-section .home-hero-btn {
    font-size: 8px;
    height: 26px;
    justify-content: flex-start;
    gap: 0.2rem;
    line-height: 1;
    margin-top: 10px;
    min-width: 0;
    padding: 0 0.8rem;
    width: min(100%, 13.2rem);
  }

  .home-page:not(.blog-page):not(.blog-detail-page):not(.service-detail-page) .home-hero-section .home-hero-btn-arrow {
    align-items: center;
    display: inline-flex;
    height: auto;
    justify-content: center;
    width: auto;
  }

  .home-page:not(.blog-page):not(.blog-detail-page):not(.service-detail-page) .home-hero-section .home-hero-btn-arrow::before {
    content: none;
  }

  .home-page:not(.blog-page):not(.blog-detail-page):not(.service-detail-page) .home-hero-section .home-hero-btn-arrow::after {
    border: 0;
    content: "\2192";
    font-size: 10px;
    height: auto;
    position: static;
    transform: none;
  }

  .home-blog-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .home-building-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page .home-building-section {
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 130% auto;
    padding-bottom: 0;
    padding-top: clamp(1.1rem, 4vw, 1.6rem);
  }

  .service-detail-page .home-building-grid {
    column-gap: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(1.35rem, 4vw, 1.9rem);
    padding-bottom: 50px;
    row-gap: 0.8rem;
  }

  .service-detail-page .service-detail-blurb-card {
    border-radius: 14px;
    gap: 0.45rem;
    min-height: 10.4rem;
    padding: 1rem 0.85rem;
  }

  .service-detail-page .service-detail-card-icon {
    font-size: 50px;
    margin-bottom: 0.35rem;
  }

  .service-detail-page .service-detail-blurb-card h3 {
    font-size: 10px;
    line-height: 1.2;
  }

  .service-detail-page .service-detail-blurb-card p {
    font-size: 8px;
    line-height: 1.3;
    margin-bottom: auto;
  }

  .service-detail-page .service-detail-blurb-card .service-card-divider {
    display: block;
    margin-top: 0.35rem;
  }

  .service-detail-page .service-detail-about-top-heading {
    font-size: 22px;
    line-height: 1.08;
  }

  .service-detail-page .home-different-pillar h3,
  .service-detail-page .home-different-story h3 {
    font-size: 20px;
    line-height: 1.18;
  }

  .service-detail-page .home-different-pillar p,
  .service-detail-page .home-different-story p {
    font-size: 14px;
    line-height: 1.35;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-section {
    background-position: center top;
    background-size: cover;
    padding-top: clamp(1.8rem, 6vw, 2.6rem);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-section h2 {
    font-family: "Neuropolitical", "Inter", sans-serif;
    font-size: 22px;
    line-height: 1.12;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-grid {
    display: flex;
    gap: 0;
    grid-template-columns: none;
    margin-top: clamp(1.4rem, 4.5vw, 2rem);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-grid .home-building-card {
    flex: 0 0 100%;
    min-width: 0;
    min-height: 13.8rem;
    overflow: hidden;
    padding: 1.05rem 1rem;
    scroll-snap-align: start;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-mobile-controls {
    align-items: center;
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 0.8rem;
    margin-bottom: 30px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-mobile-nav {
    align-items: center;
    background: #fff;
    border: 0;
    border-radius: 0.26rem;
    color: #111;
    display: inline-flex;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    height: 28px;
    justify-content: center;
    min-width: 82px;
    padding: 0 0.62rem;
    text-transform: uppercase;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-mobile-nav:disabled {
    opacity: 0.45;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card h3 {
    font-size: 20px;
    line-height: 1.15;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card p {
    font-size: 16px;
    line-height: 1.3;
    max-width: 100%;
    width: auto;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card .service-card-icon {
    height: 2.1rem;
    width: 2.1rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card-head {
    gap: 10px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card-link {
    gap: 30px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card-link > span:first-child {
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card-arrow {
    border-radius: 5px;
    height: 24px;
    width: 56px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card-arrow i {
    font-size: 14px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-cta {
    display: none;
  }

  .home-building-card h3 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .home-building-card p {
    font-size: clamp(1.05rem, 4.8vw, 1.2rem);
  }

  .home-building-card-link > span:first-child {
    font-size: clamp(1rem, 4.8vw, 1.2rem);
  }

  .hero-content {
    margin-top: 10px;
    max-width: 100%;
  }

  .hero-title-line {
    flex-wrap: nowrap;
    gap: 0.2em;
    white-space: nowrap;
  }

  .home-hero-btn {
    font-size: 15px;
    height: 40px;
    line-height: 1;
    min-width: 0;
    padding: 0 1.25rem;
    width: min(100%, 30rem);
  }

  .home-hero-btn-arrow {
    width: 44px;
  }

  .home-building-section h2,
  .home-success-section h2,
  .home-brands-section h2,
  .home-more-services-section h2 {
    font-size: clamp(1.95rem, 10.6vw, 2.7rem);
  }

  .home-brands-section h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  .home-success-line-top > span:first-child {
    font-size: clamp(1.35rem, 6.8vw, 2rem);
    line-height: 1.1;
  }

  .home-success-line-top > .accent,
  .home-success-line-mid > span,
  .home-success-line-bottom > span {
    font-size: clamp(2.4rem, 13vw, 3.95rem);
    line-height: 0.92;
  }

  .home-success-grid strong {
    font-size: clamp(2.2rem, 12.8vw, 3.6rem);
  }

  .home-success-grid p {
    font-size: clamp(1rem, 4.8vw, 1.18rem);
    line-height: 1.25;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-section h2 {
    align-items: flex-start;
    font-size: 48px;
    line-height: 1;
    margin-inline: 0;
    text-align: left;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-line-top > span:first-child {
    font-size: 22px;
    line-height: 1.05;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-line-top > .accent,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-line-mid > span,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-line-bottom > span {
    font-size: 48px;
    line-height: 0.92;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-grid {
    column-gap: 0.7rem;
    grid-template-areas:
      ". stat1"
      "stat2 ."
      ". stat3";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
    row-gap: 32px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-grid strong {
    font-size: 42px;
    line-height: 0.95;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-grid p {
    font-size: 12px;
    line-height: 1.25;
    margin-top: 0.35rem;
    max-width: 14rem;
    text-align: center;
    text-wrap: balance;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-stat-1 {
    justify-self: end;
    text-align: center;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-stat-2 {
    justify-self: start;
    text-align: center;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-stat-3 {
    justify-self: end;
    text-align: center;
  }

  .service-detail-page .home-success-section h2 {
    align-items: flex-start;
    font-size: 48px;
    line-height: 1;
    margin-inline: 0;
    text-align: left;
  }

  .service-detail-page .home-success-line-top > span:first-child {
    font-size: 22px;
    line-height: 1.05;
  }

  .service-detail-page .home-success-line-top > .accent,
  .service-detail-page .home-success-line-mid > span,
  .service-detail-page .home-success-line-bottom > span {
    font-size: 48px;
    line-height: 0.92;
  }

  .service-detail-page .home-success-grid {
    column-gap: 0.7rem;
    grid-template-areas:
      ". stat1"
      "stat2 ."
      ". stat3";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
    row-gap: 32px;
  }

  .service-detail-page .home-success-grid strong {
    font-size: 42px;
    line-height: 0.95;
  }

  .service-detail-page .home-success-grid p {
    font-size: 12px;
    line-height: 1.25;
    margin-top: 0.35rem;
    max-width: 14rem;
    text-align: center;
    text-wrap: balance;
  }

  .service-detail-page .home-success-stat-1 {
    justify-self: end;
    text-align: center;
  }

  .service-detail-page .home-success-stat-2 {
    justify-self: start;
    text-align: center;
  }

  .service-detail-page .home-success-stat-3 {
    justify-self: end;
    text-align: center;
  }

  .service-detail-page .service-detail-why-choose-layout {
    row-gap: 1rem;
  }

  .service-detail-page .service-detail-why-choose-visual {
    justify-self: stretch;
    order: -1;
    width: 100%;
  }

  .service-detail-page .service-detail-why-choose-image {
    max-width: none;
    width: 100%;
  }

  .service-detail-page .service-detail-why-choose-top h2 {
    font-size: 22px;
    line-height: 1.08;
    margin-top: 0;
    padding-bottom: 0.55rem;
  }

  .service-detail-page .service-detail-why-choose-list li {
    font-size: 16px;
    line-height: 1.45;
    min-height: 0;
    padding-bottom: 0.85rem;
  }

  .service-detail-page .service-detail-why-choose-cta {
    border-radius: 8px;
    font-size: 12px;
    height: 32px;
    margin-top: 1.1rem;
    max-width: 10.5rem;
    padding-inline: 0.8rem;
    width: min(100%, 10.5rem);
  }

  .home-success-grid {
    margin-top: clamp(2.6rem, 8vw, 3.8rem);
    row-gap: clamp(2.1rem, 7.5vw, 3.2rem);
  }

  .home-success-stat {
    padding-block: clamp(0.45rem, 1.8vw, 0.85rem);
  }

  .home-brands-subtitle {
    font-size: 20px;
    font-weight: 400;
  }

  .home-brands-logos-section {
    --home-brands-logo-gap: 0.45rem;
  }

  .home-brands-logos-row img {
    height: clamp(2.7rem, 9.4vw, 3.4rem);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-section h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-grid {
    display: flex;
    gap: 0;
    grid-template-columns: none;
    margin-top: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-service-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 12.1rem;
    overflow: hidden;
    padding: 24px 22px;
    scroll-snap-align: start;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-service-card img {
    height: 1.45rem;
    width: 1.45rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-service-card h3 {
    font-size: 16px;
    margin: 0;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-service-card p {
    font-size: 12px;
    line-height: 1.35;
    max-width: none;
    min-height: 0;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-service-link {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-service-mobile-cta {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    gap: 22px;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-top: auto;
    min-height: 2rem;
    padding-top: 1rem;
    text-transform: uppercase;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-mobile-slider {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-mobile-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    height: 16px;
    margin: 0;
    width: min(100%, 11rem);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-mobile-slider input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    height: 2px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-mobile-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    height: 6px;
    margin-top: -2px;
    width: 56px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-mobile-slider input[type="range"]::-moz-range-track {
    background: rgba(255, 255, 255, 0.28);
    border: 0;
    border-radius: 999px;
    height: 2px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-mobile-slider input[type="range"]::-moz-range-thumb {
    background: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    height: 6px;
    width: 56px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-world-section .layout-shell {
    padding-top: 58px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-world-section .layout-shell {
    padding-top: 58px;
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-world-section .services-world-bird {
    height: 18rem;
    margin-bottom: 28px;
    margin-top: -12px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-world-section .services-world-bird {
    margin-bottom: 28px;
    margin-top: -12px;
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-world-section .services-world-bird img {
    transform: translateY(-1.5%);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-world-section .services-world-bird img {
    transform: translateY(-1.5%);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-world-section h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-world-section h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-world-section p {
    font-size: 16px;
    line-height: 1.35;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-world-section p {
    font-size: 16px;
    line-height: 1.35;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-world-section .services-world-btn {
    font-size: 12px;
    min-height: 32px;
    min-width: 104px;
    padding: 0.3rem 0.8rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-world-section .services-world-btn {
    font-size: 12px;
    min-height: 32px;
    min-width: 104px;
    padding: 0.3rem 0.8rem;
  }

  .home-who-section {
    padding-block: 2.3rem;
  }

  .home-who-btn {
    min-width: 11rem;
  }

  .home-who-copy {
    line-height: 1.55;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-section h2 {
    font-size: 22px;
    line-height: 1.1;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-copy {
    font-size: 10px;
    line-height: 2;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-copy .home-who-copy-line-dark {
    display: inline;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-copy .home-who-copy-line-dark + .home-who-copy-line-dark::before {
    content: " ";
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-btn {
    font-size: 12px;
    min-height: 32px;
    min-width: 104px;
    padding: 0.3rem 0.8rem;
  }

  .home-who-owl {
    margin-bottom: 0.9rem;
    max-width: min(100%, 12.5rem);
  }

  .home-who-presence {
    border-radius: 24px;
    flex-direction: row;
    gap: 0;
    min-height: 50px;
    padding-block: 0;
  }

  .home-who-presence-divider {
    height: 32px;
    width: 1px;
  }

  .home-who-presence-label,
  .home-who-presence-countries {
    font-size: clamp(0.82rem, 3.4vw, 0.98rem);
    gap: 0.35rem;
    line-height: 1.1;
    padding-inline: 0.45rem;
    white-space: nowrap;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence-label,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence-countries {
    font-size: 12px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence {
    border-radius: 16px;
    max-width: 19rem;
    min-height: 36px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence-label,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence-countries {
    font-size: 10px;
    gap: 0.25rem;
    padding-inline: 0.35rem;
  }

  .home-who-presence-dot {
    height: 6px;
    width: 6px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence-divider {
    height: 22px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-title-shell h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-title-shell {
    width: min(100%, 11rem);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-title-line {
    width: 70px !important;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-pillar h3,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-story h3 {
    font-size: 18px;
    line-height: 1.18;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-pillar p,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-story p {
    font-size: 14px;
    line-height: 1.35;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-pillar p,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-story p {
    margin-top: unset;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-pillars,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-stories {
    display: flex;
    gap: 5px;
    margin-inline: auto;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-pillars::-webkit-scrollbar,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-stories::-webkit-scrollbar {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-pillars .home-different-pillar,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-stories .home-different-story {
    border: 0;
    flex: 0 0 100%;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-pillars .home-different-pillar {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding-block: 0;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-stories .home-different-story {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding-block: 0;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-mobile-thumb {
    border-radius: 1.2rem;
    display: block;
    height: clamp(12rem, 54vw, 15rem);
    object-fit: cover;
    width: 100%;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-mobile-dots {
    align-items: center;
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    margin-top: 0.65rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-mobile-dot {
    background: rgba(0, 0, 0, 0.2);
    border: 0;
    border-radius: 999px;
    height: 6px;
    padding: 0;
    transition: background-color 0.2s ease;
    width: 6px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-different-mobile-dot.is-active {
    background: #000;
  }

  .home-different-stack {
    gap: 2.4rem;
  }

  .home-different-row,
  .home-different-row-bottom {
    gap: 1.75rem;
  }

  .home-different-title-shell h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .home-different-pillar h3,
  .home-different-story h3 {
    font-size: clamp(1.15rem, 6vw, 1.5rem);
  }

  .home-different-pillar p,
  .home-different-story p {
    font-size: clamp(0.95rem, 4.5vw, 1.12rem);
    line-height: 1.35;
    margin-top: 0.7rem;
  }

  .home-different-owl {
    max-width: min(100%, 12.5rem);
  }

  .home-portfolio-top {
    gap: 1rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-copy h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  .service-detail-page .home-portfolio-copy h2 {
    font-size: 22px;
    line-height: 1.08;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-copy p {
    font-size: 18px;
    line-height: 1.22;
  }

  .service-detail-page .home-portfolio-copy p {
    font-size: 18px;
    line-height: 1.22;
  }

  .home-portfolio-owl {
    max-width: min(100%, 10.5rem);
  }

  .home-portfolio-tabs {
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  .home-portfolio-tabs::-webkit-scrollbar {
    display: none;
  }

  .home-portfolio-track {
    gap: 0.55rem;
  }

  .home-portfolio-slide {
    height: clamp(160px, 56vw, 230px);
    width: 100vw;
  }

  .home-portfolio-controls {
    margin-top: 0.9rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-nav {
    font-size: 12px;
    height: 30px;
    padding-inline: 0.72rem;
  }

  .service-detail-page .home-portfolio-nav {
    font-size: 12px;
    height: 30px;
    padding-inline: 0.72rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-portfolio-nav-arrow {
    font-size: 1.05em;
  }

  .service-detail-page .home-portfolio-nav-arrow {
    font-size: 1.05em;
  }

  .home-connect-section {
    --home-connect-split: 82%;
    padding-block: 2.2rem;
  }

  .home-partners-line {
    width: min(100%, 14rem);
  }

  .home-partners-block h2 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
    margin-block: 0.85rem;
    max-width: 100%;
  }

  .home-partners-icons {
    gap: 0;
    justify-content: space-between;
    margin-top: 1rem;
    width: 100%;
  }

  .home-partners-icons img {
    height: clamp(2.2rem, 9.6vw, 3rem);
  }

  .home-connect-card {
    padding-top: 2.55rem;
  }

  .home-connect-kicker {
    font-size: clamp(1.4rem, 8vw, 2.15rem);
  }

  .home-connect-kicker::before {
    height: clamp(8rem, 31vw, 9.6rem);
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-52%, -54%);
    width: clamp(9.2rem, 37vw, 11.1rem);
  }

  .home-connect-copy {
    font-size: clamp(1rem, 4.9vw, 1.34rem);
    max-width: 100%;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-kicker {
    font-size: 22px;
    line-height: 1.08;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-kicker {
    font-size: 22px;
    line-height: 1.08;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-copy {
    font-size: 12px;
    line-height: 1.35;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-copy {
    font-size: 12px;
    line-height: 1.35;
  }

  .home-testimonial-block {
    border-radius: 1.2rem;
    max-width: 100%;
    padding: 9.9rem 0.75rem 0.95rem;
  }

  .home-testimonial-heading {
    font-size: 40px;
  }

  .home-testimonial-title-wrap {
    max-width: min(100%, 18rem);
  }

  .home-testimonial-card {
    border-radius: 1rem;
    min-height: auto;
    padding: 1.05rem 0.82rem 0.95rem;
  }

  .home-testimonial-video {
    left: 50%;
    right: auto;
    top: -2.9rem;
    transform: translateX(-50%);
    width: min(94%, 20.5rem);
  }

  .home-testimonial-video figcaption {
    font-size: 0.9rem;
    left: 0.7rem;
    padding: 0.36rem 0.6rem;
  }

  .home-testimonial-play {
    border-width: 3px;
    height: 44px;
    left: 0.72rem;
    top: 0.72rem;
    width: 44px;
  }

  .home-testimonial-play i {
    font-size: 1.25rem;
  }

  .home-testimonial-avatar {
    height: 90px;
    left: -0.8rem;
    right: auto;
    top: -1.55rem;
    width: 90px;
  }

  .home-testimonial-head {
    align-items: center;
    flex-direction: row;
    gap: 0.45rem;
    padding-left: 30px;
    padding-right: 0;
  }

  .home-testimonial-head strong {
    font-size: 24px;
  }

  .home-testimonial-stars {
    font-size: 14px;
    gap: 0.14rem;
  }

  .home-testimonial-card p {
    font-size: 14px;
    line-height: 1.36;
    margin-top: 0.6rem;
  }

  .home-testimonial-dot {
    height: 0.62rem;
    width: 0.62rem;
  }

  .home-testimonial-carousel {
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
  }

  .home-testimonial-carousel:active,
  .home-testimonial-track.is-dragging {
    cursor: grabbing;
  }

  .home-connect-card a {
    font-size: clamp(1rem, 4.4vw, 1.15rem);
    min-height: 40px;
    min-width: min(100%, 200px);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-card a {
    font-size: 12px;
    min-height: 32px;
    min-width: 120px;
    padding: 0.3rem 0.75rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-card a {
    font-size: 12px;
    min-height: 32px;
    min-width: 120px;
    padding: 0.3rem 0.75rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-card a i {
    font-size: 1.05em;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-card a i {
    font-size: 1.05em;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-row-bottom .home-testimonial-section {
    margin-top: 1.1rem;
    margin-left: calc(50% - 50vw + 12px);
    max-width: none;
    padding-top: 80px;
    width: calc(100vw - 24px);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-row-bottom .home-testimonial-section {
    margin-top: 1.1rem;
    margin-left: calc(50% - 50vw + 12px);
    max-width: none;
    padding-top: 80px;
    width: calc(100vw - 24px);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-block {
    border-radius: 1.2rem;
    padding: 8.9rem 0.9rem 1rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-block {
    border-radius: 1.2rem;
    padding: 8.9rem 0.9rem 1rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-video {
    left: calc(50% + 80px);
    top: calc(-2.5rem - 30px);
    width: 250px;
    z-index: 3;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-video {
    left: calc(50% + 80px);
    right: auto;
    top: calc(-2.5rem - 30px);
    width: 250px;
    z-index: 3;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-video figcaption {
    display: none;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-video figcaption {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-play {
    display: none;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-play {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-title-wrap {
    display: none;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-title-wrap {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-content {
    margin: -70px auto 0;
    max-width: 320px;
    width: 320px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-content {
    margin: -70px auto 0;
    max-width: 320px;
    width: 320px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-carousel {
    min-height: 12.8rem;
    margin-top: 0;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-carousel {
    margin-top: 0;
    min-height: 12.8rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-card {
    border-radius: 1rem;
    margin-top: 1.45rem;
    min-height: 12.8rem;
    padding: 0.95rem 0.9rem 0.95rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-card {
    border-radius: 1rem;
    margin-top: 1.45rem;
    min-height: 12.8rem;
    padding: 0.95rem 0.9rem 0.95rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-avatar {
    height: 56px;
    left: -0.35rem;
    top: -0.75rem;
    width: 56px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-avatar {
    height: 56px;
    left: -0.35rem;
    top: -0.75rem;
    width: 56px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-head {
    align-items: center;
    gap: 0.55rem;
    justify-content: space-between;
    padding-left: 56px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-head {
    align-items: center;
    gap: 0.55rem;
    justify-content: space-between;
    padding-left: 56px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-head strong {
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-head strong {
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-stars {
    font-size: 13px;
    gap: 0.11rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-stars {
    font-size: 13px;
    gap: 0.11rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-card p {
    font-size: 12px;
    line-height: 1.34;
    margin-top: 16px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-card p {
    font-size: 12px;
    line-height: 1.34;
    margin-top: 16px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-partners-block {
    margin-top: 1.9rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-partners-block {
    margin-top: 1.9rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-partners-line:first-child {
    display: none;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-partners-line:first-child {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-partners-block h2 {
    font-size: 0;
    line-height: 0;
    margin: 0 0 0.65rem;
    max-width: 100%;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-partners-block h2 {
    font-size: 0;
    line-height: 0;
    margin: 0 0 0.65rem;
    max-width: 100%;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-partners-block h2::before {
    content: "PROUD PARTNERS";
    display: block;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-partners-block h2::before {
    content: "PROUD PARTNERS";
    display: block;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-partners-line {
    width: min(100%, 12.5rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-partners-line {
    width: min(100%, 12.5rem);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-partners-icons {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-items: start;
    margin-top: 0.9rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-partners-icons {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-items: start;
    margin-top: 0.9rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-partners-icons img {
    height: 2rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-partners-icons img {
    height: 2rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section h2 {
    font-size: 22px;
    line-height: 1.08;
    margin-bottom: 40px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section h2 {
    font-size: 22px;
    line-height: 1.08;
    margin-bottom: 40px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row {
    gap: 0.24rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row {
    gap: 0.24rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-meta h3 {
    font-size: 12px;
    line-height: 1.12;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-meta h3 {
    font-size: 12px;
    line-height: 1.12;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-meta p {
    font-size: 8px;
    line-height: 1.24;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-meta p {
    font-size: 8px;
    line-height: 1.24;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-avatar {
    height: 64px;
    width: 64px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-avatar {
    height: 64px;
    width: 64px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row-5-primary {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.08rem;
    justify-content: flex-start;
    margin-top: 0.8rem;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    padding-top: 6px;
    padding-inline: max(1.3rem, env(safe-area-inset-left)) max(1.3rem, env(safe-area-inset-right));
    scroll-padding-inline: max(1.3rem, env(safe-area-inset-left)) max(1.3rem, env(safe-area-inset-right));
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100vw;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row-5-primary {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.08rem;
    justify-content: flex-start;
    margin-top: 0.8rem;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    padding-top: 6px;
    padding-inline: max(1.3rem, env(safe-area-inset-left)) max(1.3rem, env(safe-area-inset-right));
    scroll-padding-inline: max(1.3rem, env(safe-area-inset-left)) max(1.3rem, env(safe-area-inset-right));
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100vw;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row-5-primary::-webkit-scrollbar {
    display: none;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row-5-primary::-webkit-scrollbar {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row-5-primary .about-force-member {
    flex: 0 0 5.4rem;
    overflow: visible;
    scroll-snap-align: start;
    width: 5.4rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row-5-primary .about-force-member {
    flex: 0 0 5.4rem;
    overflow: visible;
    scroll-snap-align: start;
    width: 5.4rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row-5-primary .about-force-link {
    width: 100%;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row-5-primary .about-force-link {
    width: 100%;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row-5-primary .about-force-meta h3,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row-5-primary .about-force-meta p {
    overflow-wrap: anywhere;
    width: 100%;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row-5-primary .about-force-meta h3,
  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row-5-primary .about-force-meta p {
    overflow-wrap: anywhere;
    width: 100%;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-meta {
    gap: 0.04rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-meta {
    gap: 0.04rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-row-5:not(.about-force-row-5-primary) {
    display: none;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-row-5:not(.about-force-row-5-primary) {
    display: none;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-section .about-force-member {
    gap: 0.38rem;
    width: 5.4rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-section .about-force-member {
    gap: 0.38rem;
    width: 5.4rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-mobile-slider {
    display: flex;
    justify-content: center;
    margin-top: 0.55rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-mobile-slider {
    display: flex;
    justify-content: center;
    margin-top: 0.55rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-mobile-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    height: 16px;
    margin: 0;
    width: min(100%, 11rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-mobile-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    height: 16px;
    margin: 0;
    width: min(100%, 11rem);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-mobile-slider input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    height: 2px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-mobile-slider input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    height: 2px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-mobile-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: #000;
    border: 0;
    border-radius: 999px;
    height: 4px;
    margin-top: -1px;
    width: 56px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-mobile-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: #000;
    border: 0;
    border-radius: 999px;
    height: 4px;
    margin-top: -1px;
    width: 56px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-mobile-slider input[type="range"]::-moz-range-track {
    background: rgba(0, 0, 0, 0.35);
    border: 0;
    border-radius: 999px;
    height: 2px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-mobile-slider input[type="range"]::-moz-range-track {
    background: rgba(0, 0, 0, 0.35);
    border: 0;
    border-radius: 999px;
    height: 2px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-force-mobile-slider input[type="range"]::-moz-range-thumb {
    background: #000;
    border: 0;
    border-radius: 999px;
    height: 4px;
    width: 56px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-force-mobile-slider input[type="range"]::-moz-range-thumb {
    background: #000;
    border: 0;
    border-radius: 999px;
    height: 4px;
    width: 56px;
  }

  .home-connect-row-bottom {
    margin-top: 1.9rem;
  }

  .home-blog-head {
    gap: 0.72rem;
  }

  .home-blog-section {
    --home-blog-bg-shift: -35px;
    --home-blog-white-start: 75%;
  }

  .home-blog-title {
    font-size: clamp(1.7rem, 9.2vw, 2.55rem);
    line-height: 1.16;
  }

  .home-blog-supporting {
    font-size: clamp(1rem, 4.8vw, 1.2rem);
    line-height: 1.45;
  }

  .home-blog-card {
    gap: 0;
    min-height: auto;
    padding: 0;
  }

  .home-blog-content {
    gap: 0.55rem;
    min-height: auto;
    margin-top: 1rem;
  }

  .home-blog-title-row h3 {
    font-size: clamp(0.95rem, 4.6vw, 1rem);
    line-height: 1.45;
  }

  .blog-page .home-blog-section {
    display: block !important;
    margin-top: 25px;
  }

  .blog-page .projects-filter-bar.d-none.d-lg-flex {
    align-items: stretch;
    display: flex !important;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 100px;
    margin-top: -30px;
  }

  .blog-page .projects-filter-tabs {
    flex-wrap: nowrap;
    gap: 1.45rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .blog-page .projects-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .blog-page .projects-filter-tab {
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 1.08;
    padding-bottom: 0.35rem;
    white-space: nowrap;
  }

  .blog-page .projects-filter-search {
    border-radius: 14px;
    flex: 0 0 auto;
    gap: 0.45rem;
    min-height: 2.5rem;
    padding: 0 0.75rem;
    width: 100%;
  }

  .blog-page .projects-filter-search input {
    font-size: 14px;
    line-height: 1.2;
  }

  .blog-page .projects-filter-search i {
    font-size: 14px;
  }

  .blog-page .blog-pagination {
    gap: 0.55rem;
    margin-top: calc(1.4rem + 20px);
  }

  .blog-page .blog-pagination-btn {
    font-size: 0.82rem;
    height: 2rem;
    min-width: 2rem;
    padding-inline: 0.65rem;
  }

  .blog-page .blog-pagination-pages {
    gap: 0.3rem;
    padding: 0.25rem 0.35rem;
  }

  .blog-page .blog-pagination-page {
    font-size: 0.8rem;
    height: 1.9rem;
    min-width: 1.9rem;
    padding-inline: 0.55rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .home-testimonial-avatar {
    height: 70px;
    width: 70px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .contact-page .contact-modern-section {
    margin-top: calc(clamp(1rem, 2.4vw, 1.8rem) + 150px);
  }

  .blog-page .home-blog-section {
    margin-top: 50px;
  }

  :is(.our-work-page, .blog-page) .projects-filter-search input,
  :is(.our-work-page, .blog-page) .projects-filter-search input::placeholder {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .about-page {
    padding-bottom: 0;
  }

  .about-page .about-story-panel {
    background: #000 url("assets/images/about/bg-1.png") center / cover no-repeat;
    margin-top: 100px;
    padding: 50px;
  }

  .about-page .about-story-content-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .about-page .about-principles-panel {
    gap: clamp(1.3rem, 3vw, 2.8rem);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  }

  .about-page .home-building-section .about-principle-item summary {
    font-size: 32px;
    line-height: 1.1;
  }

  .about-page .home-building-section .about-principle-item p {
    font-size: 16px;
    line-height: 1.45;
  }

  .about-page .about-tech-stack-row img {
    height: 50px;
    width: 50px;
  }

  .about-page .home-portfolio-section {
    display: none !important;
  }

  .about-page .home-blog-section {
    display: none !important;
  }

  .services-page .home-portfolio-section {
    display: none !important;
  }

  .services-page .home-blog-section {
    display: none !important;
  }

  .about-force-section.home-force-section h2,
  .home-force-section h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 40px;
  }

  .about-force-section.home-force-section .about-force-meta h3,
  .home-force-section .about-force-meta h3 {
    font-size: 14px;
    line-height: 1.15;
  }

  .about-force-section.home-force-section .about-force-meta p,
  .home-force-section .about-force-meta p {
    font-size: 12px;
    line-height: 1.15;
  }

  .about-force-section.home-force-section .about-force-avatar,
  .home-force-section .about-force-avatar {
    height: clamp(7.1rem, 9.2vw, 9rem);
    width: clamp(7.1rem, 9.2vw, 9rem);
  }

  .about-force-section.home-force-section .about-force-member,
  .home-force-section .about-force-member {
    gap: 0.5rem;
    width: clamp(8rem, 12.8vw, 12.8rem);
  }

  .services-world-section.home-world-section .layout-shell,
  .home-world-section .layout-shell {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 20rem;
    padding-top: 80px;
    text-align: center;
  }

  .services-world-section.home-world-section .services-world-bird,
  .home-world-section .services-world-bird {
    height: clamp(10.5rem, 20vw, 15rem);
    margin-bottom: 50px;
    width: min(100%, clamp(18rem, 40vw, 30rem));
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-world-section .services-world-bird {
    height: 18rem;
  }

  .services-world-section.home-world-section .services-world-bird img,
  .home-world-section .services-world-bird img {
    transform: translateY(7%);
  }

  .services-world-section.home-world-section h2,
  .home-world-section h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .services-world-section.home-world-section p,
  .home-world-section p {
    font-size: 16px;
    line-height: 1.4;
    max-width: 42rem;
  }

  .services-world-section.home-world-section .services-world-btn,
  .home-world-section .services-world-btn {
    font-size: 14px;
    min-height: 38px;
    padding: 0.45rem 0.9rem;
  }
}

@media (min-width: 1200px) {
  .about-page {
    padding-bottom: 0;
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-world-section .services-world-bird {
    height: 18rem;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-world-section .services-world-bird {
    height: 15rem;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  :is(
    .hero-title,
    .title-section h2,
    .home-building-section h2,
    .home-success-section h2,
    .home-brands-section h2,
    .home-more-services-section h2,
    .home-who-section h2,
    .home-different-title-shell h2,
    .home-connect-kicker,
    .home-testimonial-heading,
    .home-partners-block h2,
    .home-force-section h2,
    .home-world-section h2,
    .services-expertise-title,
    .services-page .home-building-section h2.services-dev-title,
    .about-results-title,
    .about-page .home-building-section .about-story-header h2,
    .about-page .home-building-section h2.about-principles-title,
    .about-tech-stack-title,
    .about-marquee-item,
    .contact-title,
    .contact-modern-left h2,
    .blog-detail-page .blog-detail-more-head h2,
    .cta-text h2
  ) {
    font-size: 32px;
    line-height: 1.1;
  }

  :is(
    .page-subtitle,
    .hero-subtitle.page-subtitle,
    .home-brands-subtitle,
    .home-portfolio-copy,
    .home-connect-copy,
    .home-world-section p,
    .home-blog-supporting,
    .services-expertise-copy p,
    .about-story-lead,
    .about-story-right-copy,
    .about-tech-stack-subtitle,
    .contact-modern-left > p,
    .cta-text p
  ) {
    font-size: 16px;
    line-height: 1.4;
  }

  :is(
    .btn-primary-cta,
    .home-hero-btn,
    .home-building-cta,
    .home-who-btn,
    .home-connect-card a,
    .services-world-btn,
    .about-story-cta,
    .service-detail-page .service-detail-why-choose-cta,
    .contact-modern-submit,
    .contact-send-btn,
    .home-blog-btn
  ) {
    font-size: 14px;
    min-height: 38px;
    padding: 0.45rem 0.9rem;
  }

  :is(.home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page), .about-page, .services-page, .service-detail-page) .home-world-section .services-world-bird {
    height: 13rem;
    margin-bottom: 0;
  }

  .hero-kicker {
    margin-bottom: 12px;
  }

  .hero-subtitle,
  .hero-subtitle.page-subtitle,
  .page-subtitle {
    margin-top: 12px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card h3 {
    font-size: 26px;
    line-height: 1.1;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card p {
    font-size: 20px;
    line-height: 1.25;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card-link > span:first-child {
    font-size: 20px;
    line-height: 1.1;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-card .service-card-icon {
    height: 2.5rem;
    width: 2.5rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-building-cta {
    margin-bottom: 30px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-section h2 {
    align-items: flex-start;
    margin-inline: 0;
    padding-inline: 30px;
    text-align: left;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-line-top > span:first-child {
    font-size: 32px;
    line-height: 1.05;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-line-top > .accent,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-line-mid > span,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-line-bottom > span {
    font-size: 64px;
    line-height: 0.92;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-grid {
    column-gap: clamp(1rem, 3.5vw, 4.2rem);
    grid-template-areas:
      ". stat1"
      "stat2 ."
      ". stat3";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
    padding-inline: 30px;
    row-gap: 32px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-grid strong {
    font-size: 64px;
    line-height: 0.9;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-grid p {
    font-size: 18px;
    line-height: 1.22;
    margin: 0.5rem auto 0;
    max-width: none;
    text-align: center;
    text-wrap: balance;
    width: min(100%, 420px);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-stat-1 {
    justify-self: end;
    text-align: center;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-stat-2 {
    justify-self: start;
    text-align: left;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-success-stat-3 {
    justify-self: end;
    text-align: center;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-more-services-section h2 {
    margin-bottom: 40px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence {
    border-radius: 22px;
    max-width: 23.5rem;
    min-height: 42px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence-label,
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence-countries {
    font-size: 14px;
    gap: 0.4rem;
    line-height: 1.1;
    padding-inline: 0.5rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-who-presence-divider {
    height: 24px;
  }

  .home-connect-section .layout-shell {
    display: block;
  }

  .home-connect-row-top {
    align-items: start;
    column-gap: clamp(1rem, 2.3vw, 1.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .home-connect-row-bottom {
    display: block;
    margin-bottom: 50px;
    margin-top: 190px;
  }

  .home-connect-row-top {
    margin-bottom: 30px;
  }

  .home-connect-card,
  .home-testimonial-section,
  .home-partners-block {
    max-width: 100%;
    order: initial;
  }

  .home-connect-row-bottom .home-testimonial-section {
    margin-top: 0;
    padding-top: 40px;
  }

  .home-testimonial-block {
    max-width: 100%;
    min-height: clamp(20rem, 36vw, 26rem);
    padding: clamp(1rem, 2vw, 1.4rem) clamp(0.85rem, 1.9vw, 1.3rem) clamp(1rem, 1.8vw, 1.3rem);
  }

  .home-testimonial-content {
    margin-left: 37px;
    margin-top: 20px;
    max-width: min(100%, 26.5rem);
  }

  .home-testimonial-video {
    left: auto;
    right: calc(clamp(-1.4rem, -1.9vw, -0.8rem) - 7px);
    top: calc(clamp(-1.8rem, -2.4vw, -1rem) - 80px);
    transform: none;
    width: min(54%, 24rem);
  }

  .home-testimonial-title-wrap {
    margin-inline: 30px 0;
    max-width: fit-content;
    width: fit-content;
  }

  .home-testimonial-card {
    margin-top: 0.8rem;
    min-height: 210px;
    padding: clamp(1.15rem, 1.9vw, 1.5rem) clamp(0.9rem, 1.8vw, 1.35rem) clamp(1rem, 1.7vw, 1.25rem);
  }

  .home-testimonial-avatar {
    height: 56px;
    left: clamp(-0.7rem, -0.9vw, -0.45rem);
    top: clamp(-1.05rem, -1.4vw, -0.7rem);
    width: 56px;
  }

  .home-testimonial-head {
    gap: 0rem;
    justify-content: space-around;
    padding-left: 20px;
  }

  .home-testimonial-head strong {
    font-size: 20px;
  }

  .home-testimonial-stars {
    font-size: 13px;
  }

  .home-testimonial-card p {
    font-size: 13px;
    line-height: 1.35;
    margin-top: 16px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-section .layout-shell {
    display: block;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-row-top {
    align-items: start;
    column-gap: clamp(1rem, 2.3vw, 1.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    margin-bottom: 30px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-row-bottom {
    display: block;
    margin-bottom: 50px;
    margin-top: clamp(2.6rem, 6.2vw, 4rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-card,
  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-section,
  :is(.about-page, .services-page, .service-detail-page) .home-partners-block {
    max-width: 100%;
    order: initial;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-row-bottom .home-testimonial-section {
    margin-top: 0;
    padding-top: 40px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-block {
    max-width: 100%;
    min-height: clamp(20rem, 36vw, 26rem);
    padding: clamp(1rem, 2vw, 1.4rem) clamp(0.85rem, 1.9vw, 1.3rem) clamp(1rem, 1.8vw, 1.3rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-content {
    margin-left: clamp(1.25rem, 2.6vw, 2.1rem);
    margin-top: clamp(1.25rem, 2.4vw, 1.8rem);
    max-width: min(100%, 26.5rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-video {
    left: auto;
    right: clamp(-1.4rem, -1.9vw, -0.8rem);
    top: calc(clamp(-1.8rem, -2.4vw, -1rem) - 50px);
    transform: none;
    width: min(54%, 24rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-title-wrap {
    margin-inline: 0;
    max-width: min(100%, 17rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-card {
    margin-top: 0.8rem;
    min-height: 11.5rem;
    padding: clamp(1.15rem, 1.9vw, 1.5rem) clamp(0.9rem, 1.8vw, 1.35rem) clamp(1rem, 1.7vw, 1.25rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-avatar {
    height: 56px;
    left: clamp(-0.7rem, -0.9vw, -0.45rem);
    top: clamp(-1.05rem, -1.4vw, -0.7rem);
    width: 56px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-head {
    padding-left: 2.7rem;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-head strong {
    font-size: 20px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-stars {
    font-size: 13px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-card p {
    font-size: 13px;
    line-height: 1.35;
    margin-top: 0.55rem;
  }

  .our-work-page .projects-filter-bar.d-none.d-lg-flex {
    align-items: stretch;
    display: flex !important;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 100px;
    margin-top: -30px;
  }

  .our-work-page .projects-filter-tabs {
    flex-wrap: nowrap;
    gap: 1.45rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .our-work-page .projects-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .our-work-page .projects-filter-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .our-work-page .projects-filter-search {
    border-radius: 14px;
    flex: 0 0 auto;
    min-height: 2.8rem;
    width: 100%;
  }

  .our-work-page .project-kicker {
    font-size: 1.5rem;
  }

  .blog-detail-page .blog-detail-more-section {
    padding-block: clamp(2rem, 4vw, 2.6rem);
  }

  .blog-detail-page .home-blog-grid {
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
    max-width: none;
  }

  .blog-detail-page .home-blog-card {
    width: 100%;
  }

  .blog-detail-page .home-blog-thumb {
    border-radius: 24px;
  }

  .blog-detail-page .home-blog-title-row h3 {
    font-size: 15px;
    line-height: 1.45;
  }

  .blog-detail-page .home-blog-category {
    font-size: 10px;
    line-height: 1.2;
    min-height: 20px;
    padding: 2px 8px;
  }

  .blog-detail-page .home-blog-author-name {
    font-size: 11px;
    line-height: 1.3;
  }

  .blog-page .home-blog-section {
    display: block !important;
    margin-top: 40px;
  }

  .blog-page .projects-filter-bar.d-none.d-lg-flex {
    align-items: stretch;
    display: flex !important;
    flex-direction: column;
    gap: 0.95rem;
    margin-bottom: 100px;
    margin-top: -30px;
  }

  .blog-page .projects-filter-tabs {
    flex-wrap: nowrap;
    gap: 1.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .blog-page .projects-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .blog-page .projects-filter-tab {
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 1.1;
    padding-bottom: 0.35rem;
    white-space: nowrap;
  }

  .blog-page .projects-filter-search {
    border-radius: 14px;
    flex: 0 0 auto;
    min-height: 3rem;
    padding: 0 0.9rem;
    width: 100%;
  }

  .blog-page .projects-filter-search input,
  .blog-page .projects-filter-search input::placeholder {
    font-size: 18px;
  }

  .blog-page .projects-filter-search i {
    font-size: 18px;
  }

  .blog-page .blog-pagination {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.15rem;
    justify-content: space-between;
  }

  .blog-page .blog-pagination-pages {
    flex: 1 1 auto;
    gap: 0.08rem;
    justify-content: center;
    min-width: 0;
    padding: 0.14rem 0.16rem;
  }

  .blog-page .blog-pagination-page,
  .blog-page .blog-pagination-btn {
    font-size: 0.62rem;
    gap: 0;
    flex: 0 0 auto;
    height: 1.58rem;
    min-width: 1.58rem;
    padding: 0 0.28rem;
  }

  .blog-page .blog-pagination-btn {
    min-width: 1.58rem;
    width: 1.58rem;
  }

  .blog-page .blog-pagination-page {
    padding-inline: 0.28rem;
  }

  .blog-page .blog-pagination-dots {
    font-size: 0.62rem;
    padding: 0 0.02rem;
  }

  .blog-page .blog-pagination-btn span {
    display: none;
  }

  .blog-page .blog-pagination-btn i {
    font-size: 0.72rem;
  }
}

@media (max-width: 375px) {
  .blog-page .blog-pagination {
    justify-content: center;
  }

  .blog-page .blog-pagination-btn {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .contact-page .contact-modern-section {
    margin-top: clamp(1.15rem, 2.8vw, 2rem);
    padding-bottom: clamp(2.2rem, 4.2vw, 3.6rem);
    padding-top: 120px;
  }

  .contact-page .contact-modern-grid {
    grid-template-columns: 1fr;
    row-gap: clamp(1.25rem, 3vw, 2rem);
  }

  .contact-page .contact-modern-form-card {
    order: -1;
    padding: clamp(2.6rem, 2.8vw, 2.2rem);
  }

  .contact-page .contact-modern-form-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.05rem);
    line-height: 1.12;
    margin-bottom: clamp(0.95rem, 2vw, 1.35rem);
  }

  .contact-page .contact-modern-form {
    gap: clamp(0.7rem, 1.4vw, 0.9rem);
  }

  .contact-page .contact-modern-row-two {
    gap: clamp(0.7rem, 1.4vw, 0.9rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page .contact-modern-form input,
  .contact-page .contact-modern-form textarea {
    font-size: 15px;
    min-height: 2.8rem;
    padding: 0.72rem 0.9rem;
  }

  .contact-page .contact-modern-form textarea {
    min-height: 8.6rem;
  }

  .contact-page .contact-modern-form input::placeholder,
  .contact-page .contact-modern-form textarea::placeholder {
    font-size: 15px;
  }

  .contact-page .contact-modern-submit {
    font-size: 14px;
    min-height: 2.6rem;
    padding: 0.5rem 1rem;
  }

  .contact-page .contact-modern-left {
    margin-top: clamp(1.2rem, 2.2vw, 1.8rem);
    padding-top: 0;
    text-align: center;
  }

  .contact-page .contact-modern-left h2 {
    color: #fff;
    font-family: "Neuropolitical", "Inter", sans-serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.08;
    margin: 0;
    text-align: center;
  }

  .contact-page .contact-modern-left h2 span {
    color: var(--purple);
  }

  .contact-page .contact-modern-left > p {
    font-size: 15px;
    line-height: 1.32;
    margin: 0.8rem auto 1.15rem;
    max-width: 40rem;
    text-align: center;
  }

  .contact-page .contact-modern-card {
    padding: clamp(1.05rem, 2.1vw, 1.4rem);
  }

  .contact-page .contact-modern-card h3 {
    color: var(--purple);
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }

  .contact-page .contact-modern-card a,
  .contact-page .contact-modern-card p {
    font-size: 15px;
    line-height: 1.3;
    text-align: center;
  }

  .contact-page .contact-modern-card-split {
    align-items: stretch;
    column-gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    row-gap: 0;
  }

  .contact-page .contact-modern-card-split::after {
    background: rgba(255, 255, 255, 0.45);
    content: "";
    height: 68%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
  }

  .contact-page .contact-modern-col {
    display: grid;
    place-items: center;
    text-align: center;
  }

  .contact-page .contact-modern-col + .contact-modern-col {
    border-left: 0;
    border-top: 0;
    padding-left: 0;
    padding-top: 0;
  }

  .contact-page .contact-modern-work-row {
    margin-top: clamp(2.4rem, 5vw, 3.4rem);
    padding-bottom: clamp(1rem, 2.8vw, 1.8rem);
  }

  .contact-page .contact-modern-work-lines {
    font-size: clamp(4.2rem, 10.5vw, 6.2rem);
    row-gap: 34px;
  }

  .contact-page .contact-modern-work-btn {
    height: clamp(5.8rem, 14vw, 7.2rem);
    left: 50%;
    margin-top: 0;
    position: absolute;
    top: 46%;
    transform: translate(-50%, -50%);
    width: clamp(5.8rem, 14vw, 7.2rem);
  }

  .contact-page .contact-modern-work-icon {
    height: 2rem;
    width: 2rem;
  }

  .contact-page .contact-modern-work-btn span {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .services-page .services-why-grid {
    align-items: center;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .services-page .services-why-figure {
    justify-self: start;
    margin: 0;
    order: -1;
  }

  .services-page .services-why-ring {
    height: auto;
    width: min(500px, 100%);
  }

  .services-page .services-why-play {
    left: calc(clamp(-1.35rem, -1.2vw, -0.75rem) + 60px);
    width: clamp(3.4rem, 6vw, 4.8rem);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .service-detail-page .home-success-section h2 {
    align-items: flex-start;
    margin-inline: 0;
    padding-inline: 30px;
    text-align: left;
  }

  .service-detail-page .home-success-line-top > span:first-child {
    font-size: 32px;
    line-height: 1.05;
  }

  .service-detail-page .home-success-line-top > .accent,
  .service-detail-page .home-success-line-mid > span,
  .service-detail-page .home-success-line-bottom > span {
    font-size: 64px;
    line-height: 0.92;
  }

  .service-detail-page .home-success-grid {
    column-gap: clamp(1rem, 3.5vw, 4.2rem);
    grid-template-areas:
      ". stat1"
      "stat2 ."
      ". stat3";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
    padding-inline: 30px;
    row-gap: 32px;
  }

  .service-detail-page .home-success-grid strong {
    font-size: 64px;
    line-height: 0.9;
  }

  .service-detail-page .home-success-grid p {
    font-size: 18px;
    line-height: 1.22;
    margin: 0.5rem auto 0;
    max-width: none;
    text-align: center;
    text-wrap: balance;
    width: min(100%, 420px);
  }

  .service-detail-page .home-success-stat-1 {
    justify-self: end;
    text-align: center;
  }

  .service-detail-page .home-success-stat-2 {
    justify-self: start;
    text-align: center;
  }

  .service-detail-page .home-success-stat-3 {
    justify-self: end;
    text-align: center;
  }

  .service-detail-page .service-detail-about-top-heading {
    font-size: 32px;
    line-height: 1.1;
  }

  .service-detail-page .service-detail-why-choose-layout {
    align-items: center;
    column-gap: clamp(1.2rem, 3vw, 2.2rem);
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 21rem);
    row-gap: 0;
  }

  .service-detail-page .service-detail-why-choose-visual {
    justify-self: end;
    order: 0;
    width: min(100%, 20rem);
  }

  .service-detail-page .service-detail-why-choose-image {
    margin-top: 0;
    max-width: min(100%, 20rem);
    width: 100%;
  }

  .service-detail-page .service-detail-why-choose-top h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-top: 0;
    max-width: min(100%, 24rem);
    padding-bottom: 0.65rem;
  }

  .service-detail-page .service-detail-why-choose-list {
    margin-top: clamp(1.1rem, 2.2vw, 1.8rem);
  }

  .service-detail-page .service-detail-why-choose-list li {
    font-size: 16px;
    line-height: 1.4;
    min-height: 0;
    padding: 0 0 0.85rem 2.2rem;
  }

  .service-detail-page .service-detail-why-choose-list li::before {
    border-width: 2px;
    height: 0.95rem;
    width: 0.95rem;
  }

  .service-detail-page .service-detail-why-choose-list li::after {
    height: 0.34rem;
    left: 0.31rem;
    top: calc(0.4em + 0.31rem);
    width: 0.34rem;
  }

  .service-detail-page .service-detail-why-choose-cta {
    border-radius: 10px;
    font-size: 14px;
    height: 38px;
    margin-top: 1.25rem;
    max-width: 11.5rem;
    padding-inline: 0.9rem;
    width: min(100%, 11.5rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-row-bottom {
    margin-top: 190px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-connect-row-bottom .home-testimonial-section {
    margin-top: 0;
    padding-top: 40px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-content {
    margin-left: 37px;
    margin-top: 20px;
    max-width: min(100%, 26.5rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-video {
    right: calc(clamp(-1.4rem, -1.9vw, -0.8rem) - 7px);
    top: calc(clamp(-1.8rem, -2.4vw, -1rem) - 80px);
    width: min(54%, 24rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-title-wrap {
    margin-inline: 30px 0;
    max-width: fit-content;
    width: fit-content;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-card {
    margin-top: 0.8rem;
    min-height: 210px;
    padding: clamp(1.15rem, 1.9vw, 1.5rem) clamp(0.9rem, 1.8vw, 1.35rem) clamp(1rem, 1.7vw, 1.25rem);
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-head {
    gap: 0;
    justify-content: space-around;
    padding-left: 20px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-head strong {
    font-size: 20px;
  }

  :is(.about-page, .services-page, .service-detail-page) .home-testimonial-card p {
    font-size: 13px;
    line-height: 1.35;
    margin-top: 16px;
  }
}

@media (max-width: 320px) {
  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-connect-row-bottom .home-testimonial-section {
    margin-left: calc(50% - 50vw + 8px);
    width: calc(100vw - 16px);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-block {
    padding-top: 7.3rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-video {
    left: calc(50% + 26px);
    top: calc(-2.5rem - 10px);
    width: 188px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-content {
    margin-top: -48px;
    max-width: calc(100vw - 28px);
    width: calc(100vw - 28px);
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-card {
    min-height: 0;
    padding: 0.85rem 0.72rem 0.9rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-avatar {
    height: 44px;
    width: 44px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-head {
    gap: 0.4rem;
    padding-left: 44px;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-head strong {
    font-size: 15px;
    white-space: normal;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-stars {
    font-size: 10px;
    gap: 0.08rem;
  }

  .home-page:not(.service-detail-page):not(.blog-page):not(.blog-detail-page) .home-testimonial-card p {
    font-size: 11px;
    line-height: 1.32;
    margin-top: 10px;
  }
}
