@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/main-bg.png");
  --site-main-bg-position: top center;
  --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-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%;
}

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 {
  isolation: isolate;
  position: relative;
}

body > 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;
}

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: rgba(3, 3, 6, 0.9);
  backdrop-filter: blur(10px);
}

.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.64rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1;
  padding: 0.38rem 0.85rem;
  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.42rem;
  vertical-align: 0.08em;
}

.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);
  margin-top: 0.48rem;
  min-width: 13.8rem;
  padding: 0.35rem;
}

.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: rgba(13, 0, 191, 0.41);
  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: rgba(30, 10, 220, 0.44);
}

.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::-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: rgba(13, 0, 191, 0.41);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: inset 0 0 6px 3px rgba(255, 255, 255, 0.2);
  color: #fff;
  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%;
}

/* Hero */
.hero-section {
  padding-top: clamp(3rem, 11vw, 9rem);
  padding-bottom: clamp(2.4rem, 7vw, 6.2rem);
}

.page-kicker {
  color: #cfd1dc;
  font-size: var(--fs-kicker);
  margin-bottom: clamp(1rem, 2.6vw, 2rem);
}

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

.hero-section h1 {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.45rem, 1vw, 0.95rem);
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: var(--fs-hero);
  letter-spacing: 0.04em;
  line-height: 0.96;
  margin: 0;
  text-transform: none;
}

.hero-section h1 .accent {
  color: var(--purple);
}

.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: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: clamp(0.95rem, 1.6vw, 1.25rem) 0 0;
  max-width: min(100%, 37.375rem);
}

/* 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 {
  position: relative;
  padding-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.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:
    linear-gradient(0deg, rgba(172, 255, 36, 0.2), rgba(172, 255, 36, 0.2)),
    url("assets/images/cta-squares.svg"),
    url("assets/images/cta-wave.svg"); */
  background-blend-mode: color, normal, overlay;
  background-position: center, center, center;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, 26px 26px, cover;
  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;
}

.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);
}

/* 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;
  width: 167px;
}

.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: 111px;
}

.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;
  width: 50px;
}

.social-row a i {
  font-size: 16px;
}

.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-section h1 {
    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) {
  .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: 112px;
  }

  .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;
  }
}

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

  .hero-section {
    min-height: 34rem;
    display: flex;
    align-items: center;
  }

  .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 {
    font-size: 0.66rem;
    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;
  }

  .hero-section {
    min-height: 36rem;
  }

  .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: 677px;
    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: 50px;
    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-page .hero-section h1 {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.contact-shell {
  width: 100%;
}

.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;
  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);
}

.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;
}

.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: 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 {
  overflow: hidden;
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
  padding-top: clamp(2.2rem, 6vw, 5.6rem);
  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-kicker,
.services-title,
.services-lead {
  position: relative;
  z-index: 1;
}

.services-kicker {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.65rem, 0.56rem + 0.2vw, 0.75rem);
  margin: 0 0 0.8rem;
}

.services-kicker span {
  color: #7a2bff;
}

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

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

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

.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-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;
  height: clamp(14.5rem, 34vw, 24.5rem);
  justify-content: center;
  overflow: hidden;
  padding: clamp(0.35rem, 1.1vw, 0.6rem);
  position: relative;
  width: clamp(14.5rem, 34vw, 24.5rem);
}

.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: clamp(-1.95rem, -1.6vw, -1.2rem);
  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: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.12rem);
  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;
}

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

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

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

  .services-title {
    font-size: clamp(2.05rem, 11.4vw, 3.4rem);
  }

  .services-expertise-title {
    font-size: clamp(1.88rem, 11vw, 2.95rem);
  }

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

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

  .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-why-figure {
    order: -1;
  }

  .services-why-play {
    bottom: 0.8rem;
    left: -1.3rem;
    width: 4.1rem;
  }

  .services-why-copy h2 {
    font-size: clamp(2rem, 8vw, 2.45rem);
    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;
  }

  .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;
  }
}

@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-hero-section {
    padding-top: 7.6rem;
  }

  .services-title {
    font-size: 5.4rem;
  }

  .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: 42px 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-hero-section {
  padding-bottom: clamp(2.4rem, 5.8vw, 6rem);
  padding-top: clamp(2.7rem, 8.4vw, 8rem);
}

.about-kicker {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.64rem, 0.58rem + 0.2vw, 0.74rem);
  margin: 0 0 0.85rem;
}

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

.about-title {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.45em;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(2.2rem, 7.9vw, 4.6rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin: 0;
  white-space: nowrap;
}

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

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

.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-marquee-section {
  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 {
  background: #fff;
  margin-top: clamp(3rem, 7vw, 5.2rem);
  padding-block: clamp(2.4rem, 6vw, 6rem);
}

.about-force-section h2 {
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(1.12rem, 2.2vw, 2.2rem);
  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(1rem, 1.8vw, 1.4rem);
  justify-content: center;
}

.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(7.4rem, 8.4vw, 8.35rem);
  overflow: hidden;
  width: clamp(7.4rem, 8.4vw, 8.35rem);
}

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

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

.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: clamp(0.68rem, 0.8vw, 0.82rem);
  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: clamp(0.6rem, 0.7vw, 0.74rem);
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 1.15;
  margin: 0;
}

.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 (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%;
  }
}

@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-hero-section {
    padding-top: 3rem;
  }

  .about-title {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .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-meta h3 {
    font-size: 0.62rem;
  }

  .about-force-meta p {
    font-size: 0.56rem;
  }
}

/* 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-content {
  max-width: 48rem;
}

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

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

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

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

.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;
  text-transform: none;
  width: min(100%, 30rem);
}

.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;
}

.home-building-section {
  padding-block: clamp(1.1rem, 6vw, 6rem);
}

.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);
}

.service-detail-page .home-building-grid {
  margin-top: 0;
}

.service-detail-page .service-detail-blurb-card {
  gap: clamp(0.75rem, 1.3vw, 1rem);
  justify-content: flex-start;
}

.service-detail-page .service-detail-blurb-card p {
  max-width: none;
}

.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-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(11rem, 22rem);
}

.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: clamp(2rem, 4.3vw, 3.5rem);
  font-style: normal;
  font-weight: 700;
  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-owl {
  align-self: center;
  height: auto;
  justify-self: end;
  max-width: min(100%, 22rem);
  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: clamp(1.4rem, 1vw, 2rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.0001em;
  line-height: 1.42;
  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;
  width: min(100%, 13.5rem);
}

@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-owl {
    display: none;
  }

  .service-detail-page .service-detail-why-choose-top h2 {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .service-detail-page .home-building-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.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(13.6rem, 21vw, 18rem);
}

.home-building-card-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  min-height: 3rem;
  width: 100%;
}

.home-building-card-footer span {
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(0.74rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  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: 2.6rem;
  justify-content: center;
  width: 4.8rem;
}

.home-building-card-arrow i {
  font-size: 1.65rem;
}

.home-building-card .service-card-icon,
.home-building-card h3,
.home-building-card p,
.home-building-card .service-card-divider {
  pointer-events: none;
}

.home-building-card h3 {
  color: #fff;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 800;
  line-height: 1.28;
  margin: 0 !important;
}

.home-building-card p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(0.8rem, 0.95vw, 0.875rem);
  font-weight: 500;
  line-height: 1.285;
  margin: 0 !important;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.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;
  height: 40px;
  justify-content: space-between;
  letter-spacing: -0.0001em;
  line-height: 48px;
  margin: 1.05rem auto 0;
  padding: 0 1.1rem 0 1.25rem;
  text-transform: none;
  white-space: nowrap;
  width: 250px;
}

.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: #000;
  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;
  z-index: 0;
}

.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: 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: "Inter", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: clamp(0.8rem, 2vw, 1.35rem) auto 0;
  max-width: min(100%, 47rem);
  text-align: center;
}

.home-brands-logos-section {
  background: #000 url("assets/images/home/we-measure-our-success-bg.png") center / cover no-repeat;
  padding-block: clamp(1.4rem, 3.5vw, 2.6rem);
}

.home-brands-logos-row {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.55rem, 1.3vw, 0.95rem);
  justify-content: center;
}

.home-brands-logos-row + .home-brands-logos-row {
  margin-top: clamp(0.5rem, 1.2vw, 0.8rem);
}

.home-brands-logos-row-top {
  justify-content: center;
}

.home-brands-logos-row-bottom {
  justify-content: center;
}

.home-brands-logos-row img {
  display: block;
  flex: 0 0 auto;
  height: clamp(3.4rem, 5.5vw, 5.3rem);
  margin-inline: 0;
  width: auto;
}

.home-brands-logos-row-bottom img:first-child,
.home-brands-logos-row-bottom img:last-child {
  width: clamp(7.2rem, 14.8vw, 13.6rem);
}

.home-success-section {
  background: #000 url("assets/images/home/we-measure-our-success-bg.png") center / cover no-repeat;
  padding-block: clamp(2.8rem, 8vw, 6.8rem);
}

.home-success-section .layout-shell {
  margin-inline: auto;
  max-width: min(100%, 68rem);
}

.home-success-section h2 {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.0001em;
  line-height: 0.84;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.home-success-line {
  align-items: flex-end;
  display: unset;
  font-size: clamp(1.9rem, 5.8vw, 5.25rem);
}

.home-success-line-top {
  gap: clamp(0.45rem, 1.4vw, 1.45rem);
  justify-content: space-between;
  width: 100%;
}

.home-success-line-top > span:first-child {
  color: #fff;
  font-size: 0.56em;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-align: left;
}

.home-success-line-mid {
  gap: clamp(0.7rem, 2.1vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(-0.3rem, -0.3vw, -0.12rem);
}

.home-success-line-bottom {
  justify-content: center;
  margin-top: clamp(-0.5rem, -0.4vw, -0.18rem);
}

.home-success-section h2 .accent {
  color: #7a2bff;
}

.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-success-grid strong {
  color: #fff;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.4rem, 5.3vw, 5.65rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.home-success-grid p {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.06rem);
  font-weight: 500;
  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: #000 url("assets/images/home/we-measure-our-success-bg.png") center / cover no-repeat;
  padding-block: clamp(2rem, 6vw, 4.2rem);
  padding-bottom: unset;
}

.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: clamp(0.65rem, 1.8vw, 1rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.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;
  min-height: 11.25rem;
  padding: 1rem 1rem;
}

.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: 1.2rem;
  font-weight: 700;
  margin: 0.55rem 0 20px;
}

.home-more-service-card p {
  color: #fff;
  font-family: "Space Mono", "Inter", monospace;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0.4rem 0 0;
  max-width: 266px;
  min-height: 144px;
  width: 100%;
}

.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;
  }
}

@media (min-width: 1200px) {
  .home-who-section {
    padding-top: 800px;
  }
}

.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-btn {
  align-items: center;
  background: #d9d9d9;
  border-radius: 5px;
  color: #090909;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.75rem, 0.8vw, 0.9rem);
  font-weight: 600;
  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;
  text-transform: uppercase;
}

.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%;
  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;
  padding-inline: clamp(0.7rem, 2vw, 1.2rem);
  text-align: center;
  text-transform: capitalize;
}

.home-who-presence-divider {
  background: #fff;
  height: 57px;
  width: 2px;
}

.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);
}

.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-row-top .home-different-title-shell h2 {
  width: min(100%, 292px);
}

.home-different-owl {
  margin-inline: auto;
  max-width: 453px;
  width: 100%;
}

.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-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-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);
}

.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;
  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;
  width: auto;
}

.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);
}

.home-portfolio-nav-arrow {
  font-size: 1.42em;
  line-height: 1;
}

.home-connect-section {
  background: radial-gradient(130% 110% at 50% 100%, #2a0b73 0%, #18074d 32%, #0d0431 58%, #07031f 80%, #050315 100%);
  padding-block: clamp(2.8rem, 6vw, 6rem);
}

.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: clamp(1.9rem, 4.2vw, 2rem);
  font-style: normal;
  font-weight: 300;
  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: clamp(1.7rem, 3.5vw, 2rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0;
  max-width: 30rem;
  padding-bottom: clamp(0.55rem, 1.2vw, 0.85rem);
  position: relative;
  text-transform: uppercase;
  z-index: 0;
}

.home-connect-kicker::before {
  background: url("assets/images/home/connect-bg.png") center / contain no-repeat;
  content: "";
  height: clamp(5.4rem, 11vw, 8.5rem);
  pointer-events: none;
  position: absolute;
  right: clamp(0.2rem, 1.8vw, 1.1rem);
  top: clamp(-4.2rem, -5.8vw, -3rem);
  width: clamp(6.4rem, 13vw, 10rem);
  z-index: -1;
}

.home-connect-copy {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.2vw, 2rem);
  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;
  text-decoration: none;
  text-transform: uppercase;
}

.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;
}

.home-force-section {
  margin-top: unset;
}

.home-world-section {
  margin-top: 0;
}

.home-faq-section {
  padding-top: clamp(2rem, 6vw, 6rem);
  padding-bottom: clamp(2rem, 6vw, 6rem);

}

.home-blog-section {
  /* background: #f1f1f5 url("assets/images/home/ourblog-bg.png") center top / cover no-repeat; */
  padding-block: clamp(2.2rem, 6vw, 4.4rem);
}

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

@media (min-width: 768px) and (max-width: 1024px) {
  .blog-page .services-title {
    max-width: 10.8ch;
  }

  .blog-page .services-title > span {
    display: block;
    white-space: normal;
  }
}

.blog-detail-page .blog-detail-hero-title {
  color: #fff;
  font-family: "Neuropolitical", "Inter", sans-serif;
  font-size: clamp(2.15rem, 5.3vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  max-width: min(100%, 62rem);
}

/* 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: clamp(1rem, 2.2vw, 2rem);
  grid-template-columns: repeat(3, minmax(0, 384px));
  justify-content: center;
  margin-top: clamp(1.4rem, 2.4vw, 2rem);
}

.home-blog-card {
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 580px;
  padding: 24px 24px 32px;
  width: min(100%, 384px);
}

.home-blog-thumb {
  aspect-ratio: 336 / 240;
  align-self: stretch;
  object-fit: cover;
  width: 100%;
}

.home-blog-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  min-height: 252px;
}

.home-blog-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-blog-category {
  color: #7e23fe;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}

.home-blog-title-row {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}

.home-blog-title-row h3 {
  color: #101828;
  font-family: "Space Grotesk", "Inter", sans-serif;
  flex: 1 1 auto;
  font-size: clamp(1.35rem, 1.65vw, 24px);
  font-weight: 700;
  line-height: 1.333;
  margin: 0;
}

.home-blog-title-link {
  color: inherit;
  text-decoration: none;
}

.home-blog-post-link {
  align-items: center;
  color: #101828;
  display: inline-flex;
  flex: 0 0 24px;
  height: 24px;
  justify-content: center;
  margin-top: 2px;
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
  width: 24px;
}

.home-blog-post-link i {
  font-size: 24px;
  line-height: 1;
}

.home-blog-post-link:hover {
  color: #7e23fe;
  transform: translate(1px, -1px);
}

.home-blog-excerpt {
  color: #667085;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.home-blog-author {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-top: auto;
}

.home-blog-author img {
  border-radius: 200px;
  flex: 0 0 40px;
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.home-blog-author-meta {
  display: flex;
  flex-direction: column;
}

.home-blog-author-name {
  color: #101828;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.home-blog-author-date {
  color: #667085;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.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;
  white-space: nowrap;
  width: min(100%, 180px);
}

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

  .home-blog-grid {
    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-hero-title {
    font-size: clamp(2.1rem, 6.9vw, 2.7rem);
  }

  .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: center;
    margin-inline: auto;
    text-align: center;
  }

  .home-success-line-top,
  .home-success-line-mid,
  .home-success-line-bottom {
    justify-content: center;
    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-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: none;
  }

  .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(3, minmax(0, 1fr));
  }

  .home-partners-icons img {
    height: 1.65rem;
  }

  .home-brands-logos-section .layout-shell {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.35rem;
    scroll-behavior: smooth;
  }

  .home-brands-logos-row {
    flex-wrap: nowrap;
    min-width: 100%;
    width: max-content;
  }

  .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);
  }
}

@media (max-width: 767.98px) {
  .home-blog-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .home-building-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-section {
    padding-top: 2.2rem;
  }

  .home-hero-content {
    max-width: 100%;
  }

  .home-hero-title {
    font-size: clamp(2.12rem, 11.7vw, 2.95rem);
    line-height: 1.05;
  }

  .home-hero-title-line {
    flex-wrap: wrap;
    gap: 0.2em;
    white-space: normal;
  }

  .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-success-line {
    font-size: clamp(1.8rem, 12vw, 3.05rem);
  }

  .home-success-line-top > span:first-child {
    font-size: 0.5em;
  }

  .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-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: clamp(0.95rem, 4.2vw, 1.2rem);
  }

  .home-brands-logos-row {
    gap: 0.45rem;
  }

  .home-brands-logos-row img {
    height: clamp(2.7rem, 9.4vw, 3.4rem);
  }

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

  .home-more-service-card {
    min-height: 10.6rem;
  }

  .home-who-section {
    padding-block: 2.3rem;
  }

  .home-who-btn {
    min-width: 11rem;
  }

  .home-who-copy {
    line-height: 1.55;
  }

  .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);
    line-height: 1.1;
    padding-inline: 0.45rem;
    white-space: nowrap;
  }

  .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-portfolio-copy p {
    font-size: clamp(1rem, 4.8vw, 1.25rem);
    line-height: 1.3;
  }

  .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-portfolio-nav {
    font-size: 0.92rem;
    height: 2.18rem;
    padding-inline: 0.88rem;
  }

  .home-connect-section {
    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: 5.3rem;
    right: 0.1rem;
    top: -2.95rem;
    width: 6.3rem;
  }

  .home-connect-copy {
    font-size: clamp(1rem, 4.9vw, 1.34rem);
    max-width: 100%;
  }

  .home-connect-card a {
    font-size: clamp(1rem, 4.4vw, 1.15rem);
    min-height: 40px;
    min-width: min(100%, 200px);
  }

  .home-connect-row-bottom {
    margin-top: 1.9rem;
  }

  .home-blog-head {
    gap: 0.72rem;
  }

  .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: 1.5rem;
    min-height: auto;
    padding: 1rem 1rem 1.25rem;
  }

  .home-blog-content {
    gap: 1.2rem;
    min-height: auto;
  }

  .home-blog-title-row h3 {
    font-size: clamp(1.3rem, 7vw, 1.75rem);
  }

  .home-blog-excerpt {
    font-size: clamp(0.98rem, 4.4vw, 1.1rem);
    line-height: 1.45;
  }
}
