html {
  scroll-behavior: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

body {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-size: 100%;
  color: #000;
  background: var(--bg);
  font-family: var(--font-one);
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-text-size-adjust: none;
  font-weight: 300;
}

.clear {
  clear: both;
  font-size: 0px;
  line-height: 0px;
  height: 0px;
  margin: 0px;
  padding: 0px;
}

:focus {
  outline: 0;
}

a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #fff;
}

a:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

img {
  border: none;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

:root {
  --font-one: "Google Sans Flex", sans-serif;
  --font-two: "Golos Text", sans-serif;
  --bg: #fbf9ef;
  --white: #fff;
  --black: #0f1423;
  --brand: #929a29;
  --darkblue: #1f396c;
  --btn-radius: 40px;
  --small-radius: 20px;
  --grey: #1a1a1a;
  --skyblue: #00a3e0;
  --darkgrey: #969696;
  --duration: 1.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.2;
}

p {
  margin: 0;
  line-height: 1.5;
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--black);
  font-weight: 400;
}

h1 {
  margin: 0;
  padding: 0;
  color: var(--black);
  line-height: 1;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 600;
  font-family: var(--font-one);
}

h2 {
  margin: 0;
  padding: 0;
  color: var(--white);
  font-size: 2.8em;
  line-height: 1.1;
  font-weight: 500;
  font-family: var(--font-one);
}

h3 {
  margin: 0;
  padding: 0;
  font-size: clamp(35px, 5vw, 70px);
  line-height: 1.1;
  font-weight: 600;
  font-family: var(--font-one);
}

h4 {
  margin: 0;
  padding: 0;
  font-size: 1.8em;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--font-one);
  color: var(--black);
}

h5 {
  margin: 0;
  padding: 0;
  font-size: 1.3em;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--font-one);
}

h6 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 2.3em;
  line-height: 1.3;
  font-family: var(--font-one);
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
}

.medium-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: transparent;
  transition:
    background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Added after 30% viewport scroll */
.header.is-scrolled {
  background: #fff;
}

.header img {
  transition: max-width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.is-scrolled img {
  max-width: 80px;
  transition: max-width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.header .container {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.logo img {
  max-width: 100px;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav > li {
  position: relative;
}

.nav > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  font-size: clamp(1.1rem, 1vw, 1rem);
  font-weight: 500;
  padding: 0 0;
  font-family: var(--font-one);
}

.arrow {
  font-size: 12px;
  transition: 0.3s;
}

/* DESKTOP DROPDOWN */
.dropdown {
 position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--black);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  padding: 0 0;
  overflow: hidden;
}

.dropdown li {
  position: relative;
}

.dropdown a {
 display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #efefef1a;
}

.dropdown a:hover {
  background:  var(--brand);
  color: var(--white);
}

/* second level */
.dropdown .dropdown {
  top: 0;
  left: 100%;
  margin-left: 8px;
}

/* Desktop hover */
@media (min-width: 993px) {
  .nav li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav li:hover > a .arrow {
    transform: rotate(225deg);
  }

  .nav li.has-dropdown:hover ul.dropdown:hover a .arrow {
    transform: rotate(130deg);
  }

  /* .nav li.has-dropdown:hover ul.dropdown a.arrow {
    transform: rotate(315deg);
  }  */
}

/* MOBILE BUTTON */
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: #111;
  position: relative;
  display: block;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: #111;
  left: 0;
}

.menu-btn span::before {
  top: -7px;
}

.menu-btn span::after {
  top: 7px;
}

.menu-btn.active span {
  background: transparent;
}

.menu-btn.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  pointer-events: none;
  transform-origin: left center;
}

/* =========================
           HERO
        ========================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background: #fff;
}
.inner .hero {
  height: 85vh;
    min-height: 650px;
}
.inner.contact-page .hero {
  height: 60vh;
    min-height: 600px;
}
/* Background */

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video,
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  will-change: transform;
  object-position: bottom;
  left: 0;
  object-fit: 88%;
}
.single-services .hero {
	height: 78vh;
    min-height: 700px;
}

/* =========================
           HERO CONTENT
        ========================= */

.hero-container {
  position: relative;
  z-index: 5;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
}

/* Eyebrow */

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 28px;

  font-size: clamp(0.7rem, 0.55rem + 0.35vw, 1rem);
  font-weight: 600;

  opacity: 0;
  transform: translateY(30px);
}

.hero-eyebrow span {
  display: block;
  width: 35px;
  height: 1px;
  background: #fff;
}

/* =========================
           TITLE
        ========================= */

.title-line {
  display: block;
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.title-line span b {
  color: var(--brand);
  font-weight: 600;
}

.title-line span {
  display: block;

  opacity: 0;
  transform: translateY(110%);

  will-change: transform, opacity;
}

/* =========================
           BOTTOM AREA
        ========================= */

.hero-bottom {
  margin-top: clamp(35px, 4vw, 60px);

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 40px;
}

.hero-description {
  width: min(100%, 470px);

  font-size: clamp(0.9rem, 0.82rem + 0.25vw, 1.1rem);

  line-height: 1.55;

  color: rgba(255, 255, 255, 0.8);

  opacity: 0;
  transform: translateY(30px);
}

/* =========================
           CTA
        ========================= */

.hero-button-wrap {
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  gap: 10px;
  margin: 50px 0 0 0;
}

.cycle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
  font-weight: 600;
}

.btn-text {
  position: relative;
  display: block;
  height: 24px;
  overflow: hidden;
}

.btn-text span {
  display: block;
  height: 24px;
  line-height: 24px;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Move first text up and second text into view */
.cycle-btn:hover .btn-text span {
  transform: translateY(-100%);
}

.btn-arrow {
  display: inline-flex;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.cycle-btn.green-btn {
  background-color: var(--brand);
}

/* MARQUEE */

.marquee-section {
  width: 100%;
  overflow: hidden;
  color: var(--black);
  padding: 35px 0 0 0;
}


.marquee-item  {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-right: 20px;
  justify-content: center;
  text-align: center;
}
.marquee-item a {
font-size: clamp(1.1rem, 1vw, 1rem);
  line-height: 1;
  font-weight: 600;
  color: var(--black);
  padding: 0 15px;
}
.reveal-section.reveal-home-page {
    margin: 50px 0 0 0;
}
.reveal-home-page::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
height: 40%;

background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 65.38%);

}
/* =================================
   ZOOM SECTION
================================= */

.zoom-wrapper {
  position: relative;
  width: 100%;
  height: 180vh;
}

/* Sticky viewport */

.zoom-sticky {
  position: sticky;
  top: 0;

  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Zoom element */

.zoom-section {
  position: relative;

  width: 70%;
  height: 75%;

  overflow: hidden;

  transform: scale(0.85);

  will-change: transform, width, height;

  background: #111;
}

/* Background image */

.zoom-section img,
.zoom-section video {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* Overlay */

.zoom-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.25);

  z-index: 2;
}

/* Content */

.zoom-content {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: center;
  color: #fff;
  padding: 0 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  bottom: 0;
  flex-direction: column;
  padding: 0 0 100px 0;
}

.zoom-content p {
  color: var(--white);
  width: 100%;
  text-align: center;
}

.zoom-content h2 {
  font-family: Arial, sans-serif;

  font-size: clamp(40px, 7vw, 100px);

  line-height: 0.95;

  letter-spacing: -0.05em;
}

.company-stats {
  width: 100%;
  padding: 0 0 00;
  justify-content: space-between;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  margin: 0 0 40px 0;
}

.zoom-content p a {
  color: var(--brand);
}

.stats-wrapper {
  width: 100%;
  max-width: 1600px;

  margin: 0 auto;

  border-top: 1px solid rgba(255, 255, 255, 0.25);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* =========================================
   STAT ITEM
========================================= */

.stat-item {
  padding: 0 0 20px 0;
}

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

/* =========================================
   NUMBER
========================================= */

.stat-number {
  font-size: clamp(35px, 7vw, 60px);
  line-height: 0.8;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

/* =========================================
   UAE
========================================= */

.stat-text {
  font-size: clamp(40px, 9vw, 50px);
}

/* =========================================
   LABEL
========================================= */

.stat-label {
  max-width: 200px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.4;
  font-family: var(--font-one);
  font-weight: 400;
  margin: 10px 0 0;
}

/* =========================================
   HOVER
========================================= */

.stat-item {
  transition: background 0.4s ease;
}

.zoom-section::after {
  content: "";
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 65.38%
  );
  width: 100%;
  height: 80%;
  bottom: 0;
}

.shape-logo img {
 max-width: 100px;
    width: inherit;
    height: inherit;
    position: absolute;
    left: 80px;
    top: 80px;
    z-index: 2;
}

/* filler sections so the pinned section has real scroll context */
.filler {
  height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background-color: #fbf9ef;
    z-index: 999;
    position: relative;
}

/* ===== pinned zoom section ===== */
.pin-section {
  position: relative;
  height: 400vh;
  /* 100vh per word */
}

.pin-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.word-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.word {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  font-weight: 800;
  font-size: clamp(2.4rem, 9vw, 8rem);
  white-space: nowrap;
  color: var(--black);
  opacity: 0;
  will-change: transform, opacity, filter;
  text-align: center;
  line-height: 1;
}

.progress {
  position: fixed;
  left: 32px;
  bottom: 32px;
  display: flex;
  gap: 8px;
  z-index: 20;
}

.progress span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ghost-line);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.progress span.active {
  background: var(--ink);
  transform: scale(1.25);
}

.scroll-hint {
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
  z-index: 20;
}

.mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    top: 6px;
  }

  70% {
    opacity: 0;
    top: 16px;
  }

  100% {
    opacity: 0;
    top: 6px;
  }
}

.small-container {
  max-width: 750px;
  width: 90%;
  margin: 0 auto;
}

.ad-desc {
  text-align: center;
}

.ad-desc .cycle-btn.green-btn {
  margin: 20px 0 0 0;
}

.ad-desc p {
  padding: 10px 0;
}

/* =========================================================
           SECTION
        ========================================================= */

.services-section {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
   background-color: #fbf9ef;
    z-index: 999;
    position: relative;
}

/* =========================================================
           CARDS WRAPPER
        ========================================================= */

.services-slider {
  width: 100%;
  height: 100%;
  margin: 50px 0 0 0;
  display: flex;
  align-items: stretch;

  gap: 10px;

  overflow: hidden;
}

/* =========================================================
           CARD
           ALL CARDS SAME WIDTH INITIALLY
        ========================================================= */

.service-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
  isolation: isolate;
  transition:
    flex-grow 1s cubic-bezier(0.76, 0, 0.16, 1),
    flex-basis 1s cubic-bezier(0.76, 0, 0.16, 1);
  display: flex;
  align-items: flex-end;
  padding: 0 0 50px 0;
  border-radius: 20px;
}

/* =========================================================
           HOVER WIDTH

           When wrapper is hovered:
           all cards become smaller.

           The hovered card becomes wide.
        ========================================================= */

.services-slider:hover .service-card {
  flex-grow: 0.65;
}

.services-slider .service-card:hover {
  flex-grow: 1;
}

/* =========================================================
           IMAGE
        ========================================================= */

.service-image {
  position: absolute;

  top: 0;
  left: 0;

  width: 106%;
  height: 106%;

  object-fit: cover;

  transform: translate3d(var(--move-x, 0px), var(--move-y, 0px), 0) scale(1);

  transition:
    transform 1.3s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s ease;
}

/* =========================================================
           IMAGE HOVER ZOOM
        ========================================================= */

.service-card:hover .service-image {
  transform: translate3d(var(--move-x, 0px), var(--move-y, 0px), 0) scale(1.08);
}

/* =========================================================
           IMAGE DARK OVERLAY
        ========================================================= */

.service-card::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.06) 35%,
    rgba(0, 0, 0, 0.28) 60%,
    rgba(0, 0, 0, 0.72) 100%
  );

  transition: background 0.8s ease;
}

/* =========================================================
           OTHER CARDS DARKER WHEN HOVERING
        ========================================================= */

.services-slider:hover .service-card:not(:hover) .service-image {
  filter: brightness(0.55);
}

/* =========================================================
           HOVERED CARD
        ========================================================= */

.service-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.08) 35%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.61) 100%
  );
}

/* =========================================================
           CARD NUMBER
        ========================================================= */

.service-number {
  position: absolute;

  left: 20px;

  z-index: 5;

  color: rgba(255, 255, 255, 0.85);

  letter-spacing: 0.08em;

  transition:
    opacity 0.35s ease,
    transform 0.5s ease;
}

.service-number h4 {
  color: var(--white);
}

/* =========================================================
           CONTENT
        ========================================================= */

.service-content {
  position: absolute;

  left: 42px;
  right: 42px;
  bottom: 40px;

  z-index: 5;

  color: #fff;

  opacity: 0;

  transform: translateY(60px);

  transition:
    opacity 0.4s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
           CONTENT SHOW ON HOVER
        ========================================================= */

.service-card:hover .service-content {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0.18s;
}

/* =========================================================
           TITLE
        ========================================================= */

.service-content h2 {
  font-size: clamp(32px, 3.2vw, 56px);

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -0.045em;

  margin-bottom: 18px;
}

/* =========================================================
           DESCRIPTION
        ========================================================= */

.service-content p {
  max-width: 450px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 16px;

  line-height: 1.5;

  margin-bottom: 27px;
}

/* =========================================================
           READ MORE
        ========================================================= */

.read-more {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: #fff;

  font-size: 13px;

  line-height: 1;

  text-decoration: none;

  text-transform: uppercase;

  letter-spacing: 0.04em;

  padding-bottom: 8px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.75);

  transition: gap 0.4s ease;
}

.read-more::after {
  content: "→";

  font-size: 17px;

  line-height: 1;

  transition: transform 0.4s ease;
}

.read-more:hover {
  gap: 20px;
}

.read-more:hover::after {
  transform: translateX(5px);
}

/* =========================================================
           HOVER BORDER
        ========================================================= */

.service-card::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 6;

  border: 1px solid rgba(255, 255, 255, 0);

  pointer-events: none;

  transition: border-color 0.6s ease;
}

.service-card:hover::after {
  border-color: rgba(255, 255, 255, 0.14);
}

/* =========================================================
           IMAGE PARALLAX VARIABLES
        ========================================================= */

.service-card {
  --move-x: 0px;
  --move-y: 0px;
}

.services-section h3 {
  text-align: center;
}

/* =========================================================
           DEMO TOP SECTION
        ========================================================= */

.intro-section {
  height: 100vh;

  min-height: 650px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 30px;
}

.intro-section h1 {
  font-size: clamp(60px, 10vw, 150px);

  line-height: 0.85;

  letter-spacing: -0.07em;

  font-weight: 500;
}

/*
            This is the area that ScrollTrigger pins.
        */

.cards-pin {
  width: 100%;

  height: 100vh;

  min-height: 650px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  overflow: hidden;
}

/* =========================================================
           LEFT CONTENT
        ========================================================= */

.card-right {
  width: 40%;
}

.cards-intro .eyebrow {
  display: block;

  margin-bottom: 25px;

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  color: #777;
}

.cards-intro h2 {
  font-size: clamp(45px, 6vw, 95px);

  line-height: 0.88;

  letter-spacing: -0.065em;

  font-weight: 500;
}

.cards-intro p {
  max-width: 330px;

  margin-top: 30px;

  color: #666;

  font-size: 15px;

  line-height: 1.5;
}

/* =========================================================
           CARD STACK AREA
        ========================================================= */

/* =========================================================
   CARD STACK
========================================================= */

.cards-wrapper {
  position: relative;

  width: min(440px, 100%);
  height: min(560px, 78vh);

  flex-shrink: 0;

  perspective: 1200px;
}

/* =========================================================
   CARD
========================================================= */

.feature-card {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: #f7f6ef;

  border: 1px solid #bcbcb5;

  border-radius: 8px;

  overflow: hidden;

  backface-visibility: hidden;

  -webkit-backface-visibility: hidden;

  isolation: isolate;

  will-change: transform;
}

/* =========================================================
   REMOVE OLD STACK TRANSFORMS
========================================================= */

/*
DO NOT use these anymore:

.feature-card:nth-child(2) {
    transform: translateY(18px) scale(.96);
}

.feature-card:nth-child(3) {
    transform: translateY(34px) scale(.92);
}

.feature-card:nth-child(4) {
    transform: translateY(48px) scale(.88);
}

.feature-card:nth-child(5) {
    transform: translateY(60px) scale(.84);
}
*/

/* =========================================================
   CARD CONTENT
========================================================= */

.card-content {
  position: relative;

  z-index: 2;

  margin-top: auto;

  padding-top: 35px;
}

/* =========================================================
   ICON
========================================================= */

.card-icon {
  position: relative;

  z-index: 2;

  width: 90px;
  height: 90px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto;
}

/* =========================================================
   TEXT
========================================================= */

.card-number {
  font-size: 11px;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: #8a8a84;

  margin-bottom: 12px;
}

.card-title {
  font-size: clamp(25px, 2.2vw, 38px);

  line-height: 1;

  letter-spacing: -0.045em;

  font-weight: 600;

  margin-bottom: 16px;
}

.card-description {
  max-width: 360px;

  color: #5d5d57;

  font-size: 13px;

  line-height: 1.5;
}

/* =========================================================
   BOTTOM
========================================================= */

.card-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 25px;

  padding-top: 15px;

  border-top: 1px solid #d2d1c9;
}

/* =========================================================
           PROGRESS
        ========================================================= */

.cards-progress {
  position: absolute;

  right: 5vw;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 12px;
}

.progress-line {
  width: 1px;

  height: 100px;

  background: #ccc;

  position: relative;

  overflow: hidden;
}

.progress-fill {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 0%;

  background: #111;
}

.progress-count {
  font-size: 11px;

  letter-spacing: 0.1em;

  color: #555;
}

/* =========================================================
           BOTTOM SECTION
        ========================================================= */

.after-section {
  height: 100vh;

  min-height: 650px;

  background: #151515;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 30px;
}

.after-section h2 {
  font-size: clamp(50px, 9vw, 140px);

  line-height: 0.85;

  letter-spacing: -0.07em;

  font-weight: 500;
}

.card-left {
  width: 35%;
}

.hero-eyebrow.cmd-span {
  opacity: 1;
  color: var(--black);
  display: block;
  padding: 0 0 20px 0;
  font-size: clamp(16px, 1.1vw, 20px);
}

h3 span {
  color: var(--brand);
}

.cards-intro h3 {
  margin: 0 0 30px;
}

.client-content {
  text-align: center;
  width: 100%;
}

.client-content strong {
  display: block;
  margin: 0 0 30px 0;
  font-size: clamp(12px, 1.2vw, 18px);
}

.client-reviews {
  position: relative;
}

.client-reviews::after {
  content: "";
  position: absolute;
  width: 100%;
  background: #fafaf3;
  background: linear-gradient(
    181deg,
    rgba(250, 250, 243, 1) 0%,
    rgba(250, 250, 243, 0) 100%
  );
  height: 75%;
  top: 0;
}

.client-reviews .hero-container {
  align-items: flex-start;
}

.client-content p {
  max-width: 650px;
  margin: 0 auto;
  width: 90%;
  padding: 20px 0;
}

.client-content img {
  padding: 20px 0 0;
}

.btn-arrow img {
  padding: 0 0 0 0;
}

/* =====================================================
           APPROACH SECTION
        ====================================================== */

.approach-section {
  position: relative;

  width: 100%;

  background: #0d1220;

  color: #fff;
}

/* =====================================================
           PIN
        ====================================================== */

.approach-pin {
  position: relative;

  width: 100%;

  height: 100vh;

  min-height: 650px;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 0 7vw;
}

/* =====================================================
           INNER
        ====================================================== */

.approach-inner {
  width: 100%;
}

/* =====================================================
           TOP
        ====================================================== */

.approach-top {
  display: flex;

  align-items: center;

  gap: 70px;

  margin-bottom: 95px;
}

/* =====================================================
           SYMBOL
        ====================================================== */

.approach-symbol {
  position: relative;
  flex-shrink: 0;
  opacity: 0;
}

.approach-symbol img {
  max-width: 250px;
}

/* =====================================================
           SYMBOL CIRCLES
        ====================================================== */

.approach-symbol-one,
.approach-symbol-two {
  position: absolute;

  width: 70px;

  height: 70px;

  border: 9px solid #c0ce24;

  border-radius: 50%;
}

.approach-symbol-one {
  left: 0;

  top: 0;
}

.approach-symbol-two {
  right: 0;

  bottom: 0;
}

/* =====================================================
           SYMBOL CONNECTORS
        ====================================================== */

.approach-symbol-one::after {
  content: "";

  position: absolute;

  width: 9px;

  height: 48px;

  background: #c0ce24;

  right: -9px;

  top: 28px;
}

.approach-symbol-two::before {
  content: "";

  position: absolute;

  width: 9px;

  height: 48px;

  background: #c0ce24;

  left: -9px;

  bottom: 28px;
}

/* =====================================================
           HEADING
        ====================================================== */

.approach-heading {
  overflow: hidden;
}

.approach-eyebrow {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1;
  font-weight: 500;
  opacity: 0;
}

.approach-heading h3 {
  max-width: 550px;
  opacity: 0;
  transform: translateY(40px);
  color: var(--white);
  clip-path: inset(100% 0 0 0);
}

/* =====================================================
           TIMELINE
        ====================================================== */

.approach-timeline {
  position: relative;

  width: 100%;
}

/* =====================================================
           BASE LINE
        ====================================================== */

.approach-line {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 1px;

  background: rgba(192, 206, 36, 0.25);

  transform: scaleX(0);

  transform-origin: left center;
}

/* =====================================================
           PROGRESS LINE
        ====================================================== */

.approach-progress {
  position: absolute;

  left: 0;

  top: 0;

  width: 0%;

  height: 2px;

  background: #c0ce24;

  transform-origin: left center;

  box-shadow: 0 0 15px rgba(192, 206, 36, 0.35);
}

/* =====================================================
           STEPS WRAPPER
        ====================================================== */

.approach-steps {
  position: relative;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

  width: 100%;
}

/* =====================================================
           STEP
        ====================================================== */

.approach-step {
  position: relative;

  min-height: 170px;

  padding-top: 27px;

  padding-right: 45px;

  opacity: 0.3;
}

/* =====================================================
           DOT
        ====================================================== */

.approach-dot {
  position: absolute;

  left: 0;

  top: -5px;

  width: 15px;

  height: 15px;

  border-radius: 50%;

  background: var(--black);

  border: 1px solid rgba(192, 206, 36, 0.55);

  transform: scale(0.7);

  transform-origin: center;
}

/* =====================================================
           NUMBER
        ====================================================== */

.approach-number {
  display: block;

  margin-bottom: 8px;

  font-size: 9px;

  line-height: 1;

  letter-spacing: 0.12em;

  color: #c0ce24;

  opacity: 0;

  transform: translateY(8px);
}

/* =====================================================
           STEP TITLE
        ====================================================== */

.approach-step h3 {
  margin: 0 0 12px;

  color: #fff;

  font-size: 15px;

  line-height: 1.15;

  font-weight: 600;

  transform: translateY(15px);
}

/* =====================================================
           STEP DESCRIPTION
        ====================================================== */

.approach-step p {
  max-width: 235px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(15px, 1.5vw, 13px);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(15px);
  font-weight: 300;
}

/* =====================================================
           ACTIVE STEP
        ====================================================== */

.approach-step.is-active {
  opacity: 1;
}

.approach-step.is-active .approach-dot {
  background: var(--brand);

  border-color: var(--brand);

  transform: scale(1.45);
  width: 10px;
  height: 10px;
}

.approach-step.is-active .approach-number {
  opacity: 1;

  transform: translateY(0);
}

.approach-step.is-active h3 {
  transform: translateY(0);
}

.approach-step.is-active p {
  opacity: 1;

  transform: translateY(0);
}

/* =====================================================
           SCROLL INDICATOR
        ====================================================== */

.approach-scroll {
  position: absolute;

  left: 7vw;

  bottom: 30px;

  display: flex;

  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 255, 0.4);

  font-size: 9px;

  line-height: 1;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}

.approach-scroll-line {
  position: relative;

  width: 38px;

  height: 1px;

  background: rgba(255, 255, 255, 0.3);

  overflow: hidden;
}

.approach-scroll-line::after {
  content: "";

  position: absolute;

  left: -100%;

  top: 0;

  width: 100%;

  height: 100%;

  background: var(--brand);

  animation: approachScrollLine 2s ease-in-out infinite;
}

@keyframes approachScrollLine {
  0% {
    left: -100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

.service-content h4 {
  color: var(--white);
}

.approach-step h4 {
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 20px);
  margin: 0 0 10px 0;
}

.insights {
  width: 100%;
  padding: 100px 0;
}

.insight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  width: 100%;
}

.insight-set {
  background-color: var(--white);
  border-radius: 20px;
}

.hero-eyebrow.cmd-sp {
  opacity: 1;
}

.insight-set img {
  width: 100%;
  height: 300px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
}

.insight-content {
  padding: 50px;
  text-align: left;
}

.insight-content h4 {
  color: #0f1423;
  font-family: var(--font-two);
  font-size: clamp(20px, 2vw, 25px);
  margin: 0 0 20px 0;
  max-width: 400px;
}

.insight-content p {
  color: #1e1e1e;
  line-height: 1.4;
  font-size: clamp(15px, 1.5vw, 18px);
  opacity: 0.7;
}

.insight-content a {
  color: #231f20;
  font-weight: 600;
  margin: 50px 0 0 0;
  display: block;
  font-size: clamp(15px, 1.1vw, 17px);
}

.insight-content a span {
  font-weight: 800;
  margin: 0 0 0 5px;
  font-size: clamp(15px, 1.1vw, 17px);
}

.insights {
  text-align: center;
}

.insights .hero-eyebrow.cmd-sp {
  justify-content: center;
}

.insights h3 {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0 50px 0;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  position: relative;
  background: #151515;
  color: #ffffff;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  width: min(100% - 40px, 1000px);
  margin: 0 auto;
}

/* =========================================
   TOP
========================================= */

.footer-top {
  position: relative;
  padding: 100px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.footer-heading {
  padding-left: 0;
}

.footer-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  display: block;
  padding: 0 0 20px 0;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 400;
  opacity: 0.9;
}

.footer-heading h2 {
  margin: 0;
  font-size: clamp(60px, 5vw, 70px);
}

/* =========================================
   LOGO
========================================= */

.footer-logo {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================================
   CONTACT
========================================= */

.footer-contact {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 50px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  font-size: clamp(20px, 2.2vw, 25px);
  font-family: var(--font-one);
}

.contact-item:hover {
  opacity: 1;
}

.contact-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
}

/* =========================================
   LINKS
========================================= */

.footer-links {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 45px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-column h4 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.footer-column li {
  margin: 0 0 3px;
  line-height: 1;
}

.footer-column a {
  color: #ffffff;
  font-size: clamp(12px, 1.5vw, 17px);
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.3s ease;
  font-family: var(--font-one);
  padding: 0 0 10px 0;
  display: block;
  opacity: 0.8;
  font-weight: 200;
}

.footer-column a:hover {
  color: var(--brand);
}

/* =========================================
   SERVICES
========================================= */

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.service-grid ul {
  min-width: 0;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 25px 0;
}

.footer-address,
.footer-social {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bottom-icon {
  width: 30px;
}

.footer-bottom strong {
  display: block;
  margin-bottom: 3px;
  font-size: clamp(10px, 1.5vw, 15px);
  color: var(--white);
  opacity: 0.7;
  font-family: var(--font-one);
  font-weight: 400;
}

.footer-bottom span {
  display: block;
  font-size: clamp(10px, 1.5vw, 15px);
  color: var(--white);
  opacity: 0.7;
  font-family: var(--font-one);
  font-weight: 400;
}

.footer-social {
  min-width: 190px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #a7bb14;
}

.footer-social i {
  font-style: normal;
  margin: 0 3px;
}

/* =========================================
   COPYRIGHT
========================================= */

.footer-copyright {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 50px 0;
}

.footer-copyright p {
  margin: 0;
  font-size: clamp(10px, 1.5vw, 13px);
  color: var(--white);
  opacity: 0.7;
  font-family: var(--font-one);
  font-weight: 400;
  line-height: 1;
}

/* =========================================================
   ad_all STEP CARDS
   Fully isolated component
========================================================= */

/* =========================================================
   ad_all STEP CARDS — PIN CONFLICT FIX
   Replace the existing .ad_all-step-cards rules with these
   desktop-safe overrides.
========================================================= */

.ad_all-step-cards {
  position: relative;
  width: 100%;
  overflow: visible;
  isolation: isolate;
  z-index: 1;
}

.ad_all-step-cards__inner {
  position: relative;
  width: min(1200px, calc(100% - 80px));
  min-height: 100vh;
  height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 0;
  box-sizing: border-box;
}

.ad_all-step-cards__stage {
  position: relative;
  width: 100%;
  height: var(--ad_all-card-height);
  justify-self: center;
  perspective: 1400px;
  min-width: 0;
}

.ad_all-step-card {
  position: absolute;
  inset: 0;
  overflow: visible;
}

/*
   Following pinned sections must be allowed to sit above the
   completed ad_all section.
*/
.approach-section,
.process-stage,
[data-pin-section] {
  position: relative;
  z-index: 2;
}
.zoom-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  overflow: hidden;
}
#zoomSection {
  position: relative;

  width: 90%;
  height: 95vh;

  margin: 0;

  transform-origin: center center;

  overflow: hidden;

  will-change: transform, width, height;
}
.zoom-content-expert {
  background: #0f1423;
  padding: 50px;
  border-radius: 20px;
  max-width: 600px;
  position: absolute;
  top: 25%;
  left: 10%;
  z-index: 2;
}
.plan-expert h4 {
  color: var(--brand);
  opacity: 1 !important;
  text-align: left;
  transform: none !important;
}
.plan-expert p {
  color: var(--white);
  opacity: 1 !important;
  font-size: clamp(14px, 1.2vw, 18px);
  text-align: left;
  font-weight: 300;
  margin: 20px 0;
  transform: none !important;
}
.zoom-section .plan-expert img {
  position: relative;
}
.insight-list-page {
  margin: 100px 0 0 0;
}
.insight-list-page .insight-list {
  grid-template-columns: 1fr 1fr 1fr;
}
/* =========================================================
   JOURNAL DETAIL
========================================================= */

.journal-detail {
  width: 100%;
  padding: 14px 0 100px;
  background: #ffffff;
}

/* =========================================================
   CONTAINER
========================================================= */

.journal-detail-container {
  width: min(calc(100% - 34px), 1000px);

  margin: 0 auto;
}

/* =========================================================
   FEATURED IMAGE
========================================================= */

.journal-detail-featured {
  width: 100%;
  margin: 0 0 20px;
}

.journal-detail-featured img {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 6.5;

  object-fit: cover;

  border-radius: 15px;
}

/* =========================================================
   ARTICLE
========================================================= */

.journal-detail-article {
  width: 100%;
  max-width: 1000px;
  margin: 200px auto 0 auto;
}

/* =========================================================
   DATE
========================================================= */

.journal-detail-date {
  display: block;

  margin: 0 0 14px;

  color: #111111;

  font-size: 13px;
  font-weight: 700;

  line-height: 1.5;
}

/* =========================================================
   H1
========================================================= */

.journal-detail-title {
  margin: 0 0 24px;

  color: #18284b;

  font-size: clamp(34px, 4vw, 48px);

  font-weight: 700;

  line-height: 1.05;

  letter-spacing: -0.025em;
}

/* =========================================================
   PARAGRAPHS
========================================================= */

.journal-detail-article p {
  margin: 0 0 20px;

  color:  var(--black);

  font-size: 16px;

  font-weight: 400;

  line-height: 1.48;
}

/* =========================================================
   INTRODUCTION
========================================================= */

.journal-detail-intro {
  margin-bottom: 24px !important;

  color: #18284b;

  font-size: 17px !important;

  line-height: 1.55 !important;
}

/* =========================================================
   STRONG
========================================================= */

.journal-detail-article strong {
  color: #18284b;

  font-weight: 700;
}

/* =========================================================
   H2
========================================================= */

.journal-detail-article h2 {
  margin: 55px 0 20px;

  color: var(--black);

  font-size: clamp(25px, 3.2vw, 30px);

  font-weight: 700;

  line-height: 1.15;

  letter-spacing: -0.02em;
}

/* =========================================================
   H3
========================================================= */

.journal-detail-article h3 {
  margin: 38px 0 15px;
  color: var(--black);
  font-size: clamp(23px, 2.6vw, 25px);
  font-weight: 700;
  line-height: 1.2;
}

/* =========================================================
   H4
========================================================= */

.journal-detail-article h4 {
  margin: 30px 0 12px;

  color: var(--black);

  font-size: 21px;

  font-weight: 700;

  line-height: 1.3;
}

/* =========================================================
   H5
========================================================= */

.journal-detail-article h5 {
  margin: 25px 0 10px;

  color: var(--black);

  font-size: 18px;

  font-weight: 700;

  line-height: 1.35;
}

/* =========================================================
   LINKS
========================================================= */

.journal-detail-article a {
  color: #17726b;

  font-weight: 600;

  text-decoration: underline;

  text-decoration-thickness: 1px;

  text-underline-offset: 3px;

  transition:
    color 0.3s ease,
    text-decoration-color 0.3s ease;
}

.journal-detail-article a:hover {
  color: #111111;
}

/* =========================================================
   LIST
========================================================= */

.journal-detail-article ul,
.journal-detail-article ol {
  margin: 20px 0 28px;

  padding-left: 22px;
}

.journal-detail-article li {
  margin-bottom: 8px;
  color:  var(--black);
  font-size: 16px;
 list-style-type: disc;
  line-height: 1.55;
}

/* =========================================================
   ARTICLE IMAGE
========================================================= */

.journal-detail-image {
  width: 100%;

  margin: 40px 0;
}

.journal-detail-image img {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 25 / 10;

  object-fit: cover;

  border-radius: 12px;
}

/* =========================================================
   IMAGE CAPTION
========================================================= */

.journal-detail-image figcaption {
  margin-top: 10px;
  color: var(--black);
  font-size: 1.1em;
  line-height: 1.5;
  font-weight: 500;
}

/* =========================================================
   TESTIMONIAL / QUOTE
========================================================= */

.journal-detail-quote {
  margin: 45px 0;

  padding: 25px 30px;

  background: #f4f7f7;

  border-left: 3px solid #17726b;

  border-radius: 4px;
}

.journal-detail-quote p {
  margin: 0;

  color: #18284b;

  font-size: 19px;

  font-weight: 500;

  line-height: 1.6;
}

.journal-detail-quote cite {
  display: block;

  margin-top: 15px;

  color: #777777;

  font-size: 13px;

  font-style: normal;

  font-weight: 600;
}

/* =========================================================
   SECTION SPACING
========================================================= */

.journal-detail-article > h2:first-of-type {
  margin-top: 50px;
}

.blog-flex date {
  color: var(--black);
  font-weight: 500;
}
.blog-flex h2 {
  font-size: clamp(25px, 3.2vw, 45px);
  max-width: 750px;
}


/* =========================================================
   INTRO
========================================================= */

.ad_all-step-cards__intro {
  position: relative;
  z-index: 2;
}

.ad_all-step-cards__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 25px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #555;
}

.ad_all-step-cards__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.ad_all-step-cards__intro h2 {
  max-width: 600px;
  margin: 0;

  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.055em;
  color: var(--ad_all-text);
}

.ad_all-step-cards__intro h2 span {
  font-style: italic;
}

/* =========================================================
   CARD
========================================================= */

.ad_all-step-card {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  padding: 50px;

  display: flex;
  flex-direction: column;
  inset: 0;
  overflow: visible;
  background: #f8f7f0;
  border: 1px solid var(--ad_all-border);
  border-radius: 10px;

  box-sizing: border-box;

  transform-origin: 50% 100%;

  will-change: transform, opacity;

  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 25px 60px rgba(0, 0, 0, 0.05);
}

/* Small offset layers behind the cards */

.ad_all-step-card::after {
  content: "";

  position: absolute;

  left: 15px;
  right: -1px;
  bottom: -11px;

  height: 100%;

  border: 1px solid #d9d8d0;
  border-radius: 6px;

  background: #f8f7f0;

  z-index: -1;
}

.ad_all-step-card::before {
  content: "";

  position: absolute;

  left: 29px;
  right: -2px;
  bottom: -22px;

  height: 100%;

  border: 1px solid #e1e0d9;
  border-radius: 6px;

  background: #f8f7f0;

  z-index: -2;
}

/* =========================================================
   CARD NUMBER
========================================================= */

.ad_all-step-card__number {
  position: absolute;

  top: 28px;
  right: 30px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;

  color: #777;
}

/* =========================================================
   ICON
========================================================= */

.ad_all-step-card__icon {
  width: 200px;
  height: 200px;

  margin: 35px auto 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #111;
}

.ad_all-step-card__icon svg {
  width: 100%;
  height: 100%;

  overflow: visible;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.ad_all-step-card__content {
  margin-top: auto;
}

.ad_all-step-card__content h3 {
  margin: 0 0 12px;

  font-size: clamp(28px, 2.5vw, 35px);
  line-height: 1.05;
  font-weight: 600;
  color: var(--black);
}

.ad_all-step-card__content p {
  max-width: 400px;
  margin: 0;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--black);
}

/* =========================================================
   PROGRESS
========================================================= */

.ad_all-step-cards__progress {
  position: absolute;

  left: 0;
  bottom: 70px;

  display: flex;
  align-items: center;
  gap: 22px;
}

.ad_all-step-cards__progress-line {
  position: relative;

  display: block;

  width: 170px;
  height: 1px;

  background: #d1d0ca;

  overflow: hidden;
}

.ad_all-step-cards__progress-line span {
  display: block;

  width: 20%;
  height: 100%;

  background: #111;

  transform-origin: left center;
}

.ad_all-step-cards__counter {
  display: flex;
  align-items: baseline;
  gap: 5px;

  font-size: 13px;
}

.ad_all-step-cards__counter strong {
  font-weight: 600;
}

.ad_all-step-cards__counter em {
  font-style: normal;
  color: #999;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  line-height: 1.5;
}

.breadcrumb a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-separator {
  color: #777;
}

.breadcrumb-current {
  color: var(--brand);
  font-weight: 600;
}

.hero-eyebrow .breadcrumb span {
  display: block;
  width: inherit;
  height: inherit;
  background: transparent;
}

.zoom-wrapper-about {
  width: 100%;
  background-color: var(--black);
  padding: 100px 0;
  color: var(--white);
}

.zoom-wrapper-about p {
  color: var(--white);
  text-align: center;
}

.zoom-wrapper-about p a {
  color: var(--brand);
  margin: 0 0 0 5px;
}

.about-think {
  width: 100%;
  padding: 100px 0;
}

.about-think h3 span {
  color: var(--brand);
}

.about-think p {
  margin: 20px 0;
}

.full-width-image img {
  display: block;
}

.arrow {
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
}

.p-gap .services-section {
  padding: 200px 0 0 0;
}

.service-page ul {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  margin: 50px 0;
  padding: 25px 0;
}

.service-page li a {
  color: var(--black);
  font-size: clamp(12px, 2vw, 25px);
  font-weight: 500;
}

.service-page li a.active {
  color: var(--brand);
}

.service-list-set h3 {
  color: var(--black);
  font-weight: 600;
  font-size: clamp(30px, 3.5vw, 40px);
  text-align: left;
}

.service-list-set h4 {
  color: var(--white);
  font-weight: 600;
  font-size: clamp(20px, 3.5vw, 27px);
  text-align: left;
  max-width: 280px;
}

.service-list-set .services-slider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 50px 0 100px 0;
}

.p-gap .services-section h2 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.1;
  font-weight: 600;
  font-family: var(--font-one);
  text-align: center;
  color: var(--black);
}
.hero-eyebrow p {
  font-size: clamp(22px, 3vw, 30px);
  margin: 20px 0 0 0;
}
.service-detail-dsc h3 {
  max-width: 100%;
  font-size: clamp(23px, 3.5vw, 43px);
}
.service-detail-dsc strong {
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 20px);
  margin: 20px 0 0 0;
  display: block;
}
.detail-approach .approach-top {
  justify-content: center;
}




.ad_all-step-cards__intro h3 span {
  color: var(--brand);
}

.ad_all-step-cards__intro h3 {
  margin: 0 0 30px 0;
}
/* =========================================================
   CAREERS SECTION
========================================================= */

.careers-section {
    width: 100%;

    padding: 100px 0 0 0;


}


/* =========================================================
   CONTAINER
========================================================= */

.careers-container {
    width: min(
        calc(100% - 80px),
        1200px
    );

    margin: 0 auto;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.careers-heading {
    margin-bottom: 35px;
}

.careers-heading h2 {
    margin: 0;

    color: #18284b;

    font-size: clamp(
        28px,
        3vw,
        38px
    );

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -0.03em;
}


/* =========================================================
   BENEFITS
========================================================= */

.careers-benefits {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-bottom: 70px;
}


/* =========================================================
   BENEFIT
========================================================= */

.careers-benefit {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 10px 0;
}


/* =========================================================
   BENEFIT ICON
========================================================= */

.careers-benefit-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    color: #7d9c1a;

    font-size: 22px;

    line-height: 1;
}

.careers-benefit-icon span {
    display: block;
}


/* =========================================================
   BENEFIT CONTENT
========================================================= */

.careers-benefit-content h3 {
    margin: 3px 0 0;

    color: #18284b;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   OPEN POSITIONS + CTA
========================================================= */

.careers-content {
    display: grid;

    grid-template-columns:
       1fr;

    gap: 35px;

    align-items: start;
}


/* =========================================================
   JOBS HEADING
========================================================= */

.careers-jobs > h2 {
    margin: 0 0 18px;
    color: var(--black);

}


/* =========================================================
   JOB LIST
========================================================= */

.careers-job-list {
    overflow: hidden;
}


/* =========================================================
   JOB ITEM
========================================================= */

.careers-job {
    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        190px
        110px;

    align-items: center;

    min-height: 55px;

    padding: 10px 0;

    border-bottom: 1px solid #eeeeee;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.careers-job:last-child {
    border-bottom: 0;
}

.careers-job:hover {
    background: #fafafa;
}


/* =========================================================
   JOB TITLE
========================================================= */

.careers-job-title {
    color: var(--black);
    font-weight: 600;
    line-height: 1.4;
}


/* =========================================================
   JOB META
========================================================= */

.careers-job-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color:  var(--black);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
}


/* =========================================================
   JOB BUTTON
========================================================= */

.careers-job-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    color: #000!important;
    font-size: 12px;
    font-weight: 600;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.careers-job-button:hover {
    background: #18284b;

    border-color: #18284b;

    color: #ffffff!important;
}


/* =========================================================
   CTA CARD
========================================================= */

.careers-cta {
    min-height: 100%;
    padding: 50px;
    background: #f6f6f3;
    border-radius: 7px;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.careers-cta-content {
    max-width: 400px;
    
}

.careers-cta h3 {
    margin: 0 0 14px;
    color:  var(--black);
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1.25;
}

.careers-cta p {
    margin: 0 0 22px;
    color: var(--black);
    font-size: 1.3em;
    line-height: 1.3;
    max-width: 350px;
}



.height-md {
  height: 70vh;
  min-height: 500px;
}
/* =========================================================
   MARKETING CONTACT
========================================================= */

.marketing-contact {
    width: 100%;
    padding: 80px 0;
}


/* =========================================================
   CONTAINER
========================================================= */

.marketing-contact-container {


    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    gap: 30px;

    align-items: stretch;
}


/* =========================================================
   LEFT CONTACT PANEL
========================================================= */

.marketing-contact-info {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding: 55px 48px;
    background: var(--black);
    border-radius: 10px;
    color: #ffffff;
}


/* =========================================================
   LEFT DECORATION
========================================================= */

.marketing-contact-info::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -120px;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.marketing-contact-info::before {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -70px;

    width: 200px;
    height: 200px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.marketing-contact-info-inner {
    position: relative;

    z-index: 1;
}


/* =========================================================
   LABEL
========================================================= */

.marketing-contact-label {
    display: block;

    margin-bottom: 18px;

    color:  var(--brand);

    font-size: 11px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.15em;
}


/* =========================================================
   LEFT HEADING
========================================================= */

.marketing-contact-info h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(
        32px,
        4vw,
        52px
    );
    font-weight: 600;
    line-height: 1.05;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.marketing-contact-intro {
    max-width: 470px;

    margin: 0 0 42px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.marketing-contact-details {
    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-bottom: 42px;
}


/* =========================================================
   CONTACT ITEM
========================================================= */

.marketing-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.marketing-contact-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 7px;

    color: #ffffff;

    font-size: 15px;
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.marketing-contact-item > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.marketing-contact-item-label {
    color: rgba(255, 255, 255, 0.5);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.marketing-contact-item address {
    margin: 0;

    max-width: 280px;

    color: #ffffff;

    font-size: 14px;

    font-style: normal;

    line-height: 1.6;
}

.marketing-contact-item a {
    color: #ffffff;

    font-size: 14px;

    line-height: 1.5;

    transition: color 0.3s ease;
}

.marketing-contact-item a:hover {
    color: #a8bd38;
}


/* =========================================================
   SERVICES
========================================================= */

.marketing-contact-services {
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.marketing-contact-services > span {
    display: block;

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.marketing-service-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.marketing-service-list a {
    padding: 7px 11px;

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 50px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 10px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.marketing-service-list a:hover {
    background: #a8bd38;

    border-color: #a8bd38;

    color: #182b49;
}


/* =========================================================
   RIGHT FORM PANEL
========================================================= */

.marketing-contact-form {
    padding: 55px 48px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 10px;
}


/* =========================================================
   FORM INNER
========================================================= */

.marketing-contact-form-inner {
    width: 100%;
}


/* =========================================================
   FORM LABEL
========================================================= */

.marketing-form-label {
    display: block;

    margin-bottom: 15px;

    color: #8ba51c;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.15em;
}


/* =========================================================
   FORM HEADING
========================================================= */

.marketing-contact-form h2 {
    max-width: 650px;
    margin: 0 0 15px;
    color:  var(--black);
    font-size: clamp(
        30px,
        3.5vw,
        46px
    );
    font-weight: 600;
    line-height: 1.08;
}


/* =========================================================
   FORM DESCRIPTION
========================================================= */

.marketing-form-description {
    max-width: 620px;

    margin: 0 0 32px;

    color: #777777;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   FORM
========================================================= */

.marketing-form {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   FORM FIELD
========================================================= */

.marketing-form-field {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.marketing-form-field:nth-last-child(2),
.marketing-form-field:last-of-type {
    grid-column: 1 / -1;
}


/* =========================================================
   LABEL
========================================================= */

.marketing-form-field label {
    color: var(--black);
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
========================================================= */

.marketing-form-field input,
.marketing-form-field select,
.marketing-form-field textarea {
    width: 100%;

    padding: 13px 14px;

    background: #ffffff;

    border: 1px solid #dcdcdc;

    border-radius: 6px;

    outline: none;

    color: #182b49;

    font-family: inherit;

    font-size: 13px;

    line-height: 1.5;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.marketing-form-field input::placeholder,
.marketing-form-field textarea::placeholder {
    color: #9a9a9a;
}


/* =========================================================
   FOCUS
========================================================= */

.marketing-form-field input:focus,
.marketing-form-field select:focus,
.marketing-form-field textarea:focus {
    border-color: var(--brand);

    box-shadow:
        0 0 0 3px rgba(
            139,
            165,
            28,
            0.08
        );
}


/* =========================================================
   TEXTAREA
========================================================= */

.marketing-form-field textarea {
    min-height: 130px;

    resize: vertical;
}


/* =========================================================
   SELECT
========================================================= */

.marketing-form-field select {
    cursor: pointer;

    appearance: auto;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.marketing-form-submit {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    width: 100%;

    min-height: 52px;

    margin-top: 5px;

    padding: 0 24px;

    background: #111827;

    border: 0;

    border-radius: 6px;

    color: #ffffff;

    cursor: pointer;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.marketing-form-submit span {
    font-size: 18px;

    line-height: 1;

    transition: transform 0.3s ease;
}

.marketing-form-submit:hover {
    background:  var(--brand);

    color: #ffffff;

    transform: translateY(-2px);
}

.marketing-form-submit:hover span {
    transform: translateX(4px);
}



.reveal-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.reveal-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(15% 15% 15% 15%);
}

.reveal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

/* =========================================================
   VISION & MISSION SECTION
========================================================= */

.vision-mission {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   ROW
========================================================= */

.vm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
    min-height: 620px;

    background: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.vm-content {
    padding: clamp(50px, 7vw, 110px);
    background: var(--black);

}


/* =========================================================
   ICON
========================================================= */

.vm-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border: 1px solid var(--white);

    border-radius: 50%;

}

.vm-icon svg {
    width: 30px;
    height: 30px;

    fill: none;

    stroke: var(--white);
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   LABEL
========================================================= */

.vm-label {
    position: relative;

    display: flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 20px;

    font-size: 13px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 2px;

    color:  var(--white);
}



/* =========================================================
   HEADING
========================================================= */

.vm-content h2 {
    max-width: 620px;

    margin: 0 0 25px;

    font-size: clamp(42px, 4.2vw, 68px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -2.5px;

    color: var(--white);
}

.vm-content h2 em {
    font-style: normal;

    color: var(--white);
}

.vm-content h2 strong {
    font-weight: 700;

    color: #b2bf00;
}
a.cycle-btn.white-btn {
    border: 1px solid var(--white);
}

/* =========================================================
   DESCRIPTION
========================================================= */

.vm-content p {
    max-width: 500px;

    margin: 0 0 32px;

    font-size: 18px;

    line-height: 1.8;

    font-weight: 400;

    color:  var(--white);
}



.vm-btn strong {
    margin-left: 25px;

    color: #b2bf00;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    transition:
        transform .3s ease,
        color .3s ease;
}





/* =========================================================
   IMAGE
========================================================= */

.vm-image {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 620px;

    overflow: hidden;

    background: #f5f5f5;
}

.vm-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform .8s cubic-bezier(.2, .6, .2, 1);
}

.vm-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   VISION / MISSION DIVIDER
========================================================= */

.vm-mission {
    border-top: 1px solid #eeeeee;
}


/* =========================================================
   DESKTOP IMAGE POSITIONING
========================================================= */

.vm-vision .vm-image img {
    object-position: center;
}

.vm-mission .vm-image img {
    object-position: center;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {

    .vm-content {
        padding-left: 9vw;
        padding-right: 9vw;
    }

    .vm-row {
        min-height: 680px;
    }

    .vm-image {
        min-height: 680px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .vm-row {
        min-height: 500px;
    }

    .vm-content {
        padding: 55px;
    }

    .vm-image {
        min-height: 500px;
    }

    .vm-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 24px;
    }

    .vm-icon svg {
        width: 26px;
        height: 26px;
    }

    .vm-content h2 {
        font-size: clamp(38px, 5vw, 52px);

        letter-spacing: -1.8px;
    }

    .vm-content p {
        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vision-mission {
        width: 100%;
    }


    /* -------------------------
       ROW
    ------------------------- */

    .vm-row {
        display: flex;
        flex-direction: column;

        min-height: auto;
    }


    /* -------------------------
       CONTENT
    ------------------------- */

    .vm-content {
        width: 100%;

        padding: 55px 25px;

        order: 1;
    }


    /* -------------------------
       IMAGE
    ------------------------- */

    .vm-image {
        width: 100%;

        height: 400px;

        min-height: 400px;

        order: 2;
    }


    /* -------------------------
       MISSION ORDER
    ------------------------- */

    .vm-mission .vm-image {
        order: 2;
    }

    .vm-mission .vm-content {
        order: 1;
    }


    /* -------------------------
       ICON
    ------------------------- */

    .vm-icon {
        width: 55px;
        height: 55px;

        margin-bottom: 25px;
    }

    .vm-icon svg {
        width: 25px;
        height: 25px;
    }


    /* -------------------------
       LABEL
    ------------------------- */

    .vm-label {
        margin-bottom: 18px;

        font-size: 11px;

        letter-spacing: 1.8px;
    }

    .vm-label::after {
        width: 28px;

        margin-left: 12px;
    }


    /* -------------------------
       HEADING
    ------------------------- */

    .vm-content h2 {
        max-width: 100%;

        margin-bottom: 22px;

        font-size: clamp(38px, 11vw, 52px);

        line-height: 1;

        letter-spacing: -1.8px;
    }


    /* -------------------------
       TEXT
    ------------------------- */

    .vm-content p {
        max-width: 100%;

        margin-bottom: 28px;

        font-size: 15px;

        line-height: 1.7;
    }


    /* -------------------------
       BUTTON
    ------------------------- */

    .vm-btn {
        padding: 13px 16px;

        font-size: 12px;
    }

    .vm-btn strong {
        margin-left: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vm-content {
        padding: 45px 35px;
    }

    .vm-image {
        height: 330px;
        min-height: 330px;
    }

    .vm-content h2 {
        font-size: 38px;
    }

}



@media (prefers-reduced-motion: reduce) {
  .mouse::before {
    animation: none;
  }
}

.insight-set {
  overflow: hidden;
}

.insight-set img {
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-set:hover img {
  transform: scale(1.06);
}

.footer-heading h3 {
  margin: 0 0 40px 0;
}

.footer-address strong,
.footer-address span {
  font-size: clamp(10px, 1.5vw, 15px);
  color: var(--white);
  opacity: 0.7;
  font-family: var(--font-one);
  font-weight: 400;
}
.mobile-logo {
  display: none;
}
.mobile-ico {
  display: none;
}
.vm-row {
    border: 0;
}

.vm-mission {
    border-top: 0;
}

.vm-content,
.vm-image {
    border: 0;
}

@media screen and (min-width: 200px) and (max-width: 683px) {
  .mobile-logo {
    display: block;
        position: relative;
        z-index: 2;
  }
    .mobile-logo .logo img {
      max-width: 70px;
      display: block;
    }
  .header-inner {
    min-height: 74px;
  }
nav.nav-wrap {
  display: block;
}
  .logo {
    width: 90px;
    height: 74px;
    font-size: 22px;
  }

  .menu-btn {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: 0.35s ease;
    padding: 100px 30px;
  }
.header-middle {
  display: none;
}
  .nav-wrap.active {
    transform: translateX(0);
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }



  .nav > li > a {
    padding: 18px 0;
    justify-content: flex-start;
    color: var(--white);
    gap: 15px;
  }
.arrow {
  border-right: 1px solid  var(--white);
    border-bottom: 1px solid var(--white);
   position: absolute;
   right: 0;

}
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    display: none;
   padding: 0 0 0 15px;
        border-left: 1px solid var(--brand);
        margin: 0 0 0 20px;
        overflow: inherit;
  }
.dropdown li::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--brand);
    top: 17px;
    border-radius: 100%;
    left: -20px;
    z-index: 999;
}


  .dropdown .dropdown {
    margin-left: 0;
  }

  .dropdown a {
    padding: 12px 0;
    font-size: 14px;
  }

  .nav li.active > a .arrow {
    transform: rotate(225deg);
  }

  .marquee-section {
    padding: 30px 0;
    overflow: inherit;
	  display:none;
  }


  .marquee-item {
    font-size: clamp(20px, 5vw, 70px);
    padding-right: 5px;
    white-space: normal;
    text-align: left;
    align-items: flex-start;
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .marquee-item span {
    display: none;
  }
.marquee-item a {
  background-color:var(--white); 
  color: var(--black);
	border 1px solid var(--black);;
  padding: 10px;
  margin: 10px 0;
  display: block;
  width: 100%;
  text-align: center;
}

  .zoom-wrapper {
    height: inherit;
  }

  .zoom-section {
    width: 88%;
    height: 70%;

    transform: scale(0.9);
  }

  .zoom-content h2 {
    font-size: clamp(40px, 12vw, 70px);
  }

  .hero-inner {
    width: 90vw;
  }

  .sub-stack {
    margin-left: 10px;
  }

  .services-section {
    height: auto;

    min-height: inherit;

    padding: 15px;

    overflow: visible;
  }

  .services-slider {
    height: auto;

    display: flex;

    flex-direction: column;

    gap: 8px;

    overflow: visible;
  }

  /*
                Mobile initial state
            */

  .service-card {
    flex: none !important;

    width: 100%;

    height: 210px;

    min-height: 210px;
  }

  /*
                Mobile hover
            */

  .service-card:hover {
    flex: none !important;

    height: 420px;
  }

  /*
                Don't darken other cards on mobile
            */

  .services-slider:hover .service-card:not(:hover) .service-image {
    filter: brightness(1);
  }

  .service-category {
    top: 18px;
    right: 18px;

    padding: 10px 15px;

    font-size: 11px;
  }

  .service-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .service-content h2 {
    font-size: 32px;

    margin-bottom: 12px;
  }

  .service-content p {
    font-size: 14px;

    margin-bottom: 18px;
  }

  .service-number {
    left: 15px;
    bottom: 15px;
  }

  .cards-wrapper {
    left: 50%;

    top: 58%;

    width: calc(100% - 40px);

    max-width: 420px;

    height: 58vh;

    min-height: 400px;
  }

  .feature-card {
    padding: 22px;
  }

  .footer-container {
    width: calc(100% - 30px);
  }

  .footer-top {
    min-height: 205px;
    padding-top: 42px;
  }

  .footer-logo {
    width: 42px;
    height: 62px;
  }

  .footer-heading h2 {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1;
    letter-spacing: -0.8px;
  }

  .footer-heading h2 br {
    display: none;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
    padding: 17px 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 22px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
  }

  .footer-social {
    min-width: 0;
  }

  .footer-copyright {
    min-height: 40px;
  }
  .journal-detail {
    padding: 10px 0 70px;
  }

  .journal-detail-container {
    width: calc(100% - 30px);
  }

  /* Featured image */

  .journal-detail-featured {
    margin-bottom: 18px;
  }

  .journal-detail-featured img {
    aspect-ratio: 16 / 9;

    border-radius: 10px;
  }

  /* Article */

  .journal-detail-article {
    max-width: 100%;
  }

  /* Date */

  .journal-detail-date {
    margin-bottom: 12px;

    font-size: 12px;
  }

  /* H1 */

  .journal-detail-title {
    margin-bottom: 20px;

    font-size: clamp(32px, 9vw, 42px);

    line-height: 1.08;
  }

  /* Paragraph */

  .journal-detail-article p {
    font-size: 15px;

    line-height: 1.6;
  }

  /* Intro */

  .journal-detail-intro {
    font-size: 16px !important;

    line-height: 1.6 !important;
  }

  /* H2 */

  .journal-detail-article h2 {
    margin-top: 42px;

    margin-bottom: 16px;

    font-size: 27px;

    line-height: 1.15;
  }

  /* H3 */

  .journal-detail-article h3 {
    margin-top: 32px;

    font-size: 22px;
  }

  /* H4 */

  .journal-detail-article h4 {
    margin-top: 25px;

    font-size: 19px;
  }

  /* H5 */

  .journal-detail-article h5 {
    margin-top: 22px;

    font-size: 17px;
  }

  /* List */

  .journal-detail-article ul,
  .journal-detail-article ol {
    padding-left: 20px;
  }

  .journal-detail-article li {
    font-size: 15px;

    line-height: 1.6;
  }

  /* Images */

  .journal-detail-image {
    margin: 30px 0;
  }

  .journal-detail-image img {
    aspect-ratio: 16 / 10;

    border-radius: 9px;
  }

  /* Quote */

  .journal-detail-quote {
    margin: 35px 0;

    padding: 20px 22px;
  }

  .journal-detail-quote p {
    font-size: 17px;

    line-height: 1.55;
  }
     .marketing-contact {
        padding: 50px 0;
    }

    .marketing-contact-container {
        width: 100%;
grid-template-columns: 1fr;
        gap: 18px;
    }

    .marketing-contact-info {
        padding: 40px 28px;

        border-radius: 8px;
    }

    .marketing-contact-info h2 {
        font-size: 36px;
    }

    .marketing-contact-intro {
        margin-bottom: 32px;

        font-size: 13px;
    }

    .marketing-contact-details {
        gap: 18px;

        margin-bottom: 32px;
    }

    .marketing-contact-form {
        padding: 40px 25px;

        border-radius: 8px;
    }

    .marketing-contact-form h2 {
        font-size: 32px;
    }

    .marketing-form {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .marketing-form-field:nth-last-child(2),
    .marketing-form-field:last-of-type {
        grid-column: auto;
    }

    .marketing-form-submit {
        grid-column: auto;
    }
 .ad_all-step-cards {
    overflow: hidden;
  }

  .ad_all-step-cards__inner {
    width: min(100% - 40px, 760px);
    min-height: auto;
    height: auto;
    padding: 70px 0;
    display: block;
  }

  .ad_all-step-cards__stage {
    width: 100%;
    height: auto;
    min-height: inherit;
    margin-top: 50px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
.ad_all-step-card__icon {
  align-items: flex-start;
}
  .ad_all-step-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: inherit;
    height: auto;
     flex-direction: row;
      gap: 10px;
  }

  .ad_all-step-card:not(:first-child) {
    margin-top: 30px;
  }
  .ad_all-step-cards__inner {
    width: calc(100% - 32px);

    min-height: auto;

    padding: 20px 0 100px;

    gap: 45px;
  }

  .ad_all-step-cards__intro h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .ad_all-step-cards__stage {
    width: 100%;
    height: inherit;
    flex-wrap: wrap;
  }

  .ad_all-step-card {
    padding: 30px;
  }

  .ad_all-step-card__icon {
    width: 110px;
    height: 110px;
    margin: 0 0 0 0;
  }

  .ad_all-step-card__content h3 {
    font-size: 20px;
  }

  .ad_all-step-card__content p {
    font-size: 13px;
  }

  .ad_all-step-cards__progress {
    position: relative;

    left: auto;
    bottom: auto;

    width: 100%;

    justify-content: center;

    transform: none;
  }

  .ad_all-step-cards__progress-line {
    width: 110px;
  }
  .hero {
    height: 50vh;
    min-height: 500px;
  }
.zoom-content {
        align-items: center;
        justify-content: flex-end;
        padding: 0 0 50px 0;
    }
.stat-label {
  text-align: left;
}
.company-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.zoom-sticky {
  height: inherit;
}
#zoomSection {
  height: 80vh;
}
.zoom-content-expert {
    background: #0f1423;
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
}
.zoom-section img, .zoom-section video {
 position: inherit;
        height: auto;
}
.shape-logo {
  margin: 20px 0 0 20px;
}
.reveal-section.reveal-home-page {
  height: 60vh;
  margin: 0 0 0 0;
}
.zoom-content p {
    color: var(--white);
    width: 100%;
    text-align: left;
}
.reveal-home-page::after {
  height: 85%;
}
.about-ad-all .pin-section  {
  display: none;
}
.shape-logo img {
    max-width: 30px;
    width: inherit;
    height: inherit;
    position: absolute;
    left: 20px;
    top: 30px;
    z-index: 2;
    margin: 0 0 20px 0;
}
.filler {
  height: inherit;
  padding: 50px 0;
}
.services-slider {
  gap: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
}
h4  {
  font-size: 1.3em;
}
.ad_all-step-card__content {
  margin-top: 0;
}
.approach-steps {
  grid-template-columns: 1fr;
}
.approach-symbol {
  opacity: 1;
}
.approach-pin {
  height: inherit;
}
.approach-heading h3 {
    max-width: 550px;
    opacity: 1;
    transform: translateY(0);
    color: var(--white);
    clip-path: inherit
}
.approach-pin {
  height: inherit;
  padding: 50px 0;
  min-height: inherit;
  margin-bottom: 50px;
}
.approach-top {
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.approach-heading {
  margin: 30px 0 0 0;
}
.approach-eyebrow {
  opacity: 1;
}
.approach-dot {
  transform: none;
  background-color: var(--brand);
}
.approach-step {
  opacity: 1;
}
.approach-step p {
  opacity: 1;
  transform: none;
}
.insight-set img {
  height: 150px;
}
.insight-content {
  padding: 30px;
}
.hero-button-wrap {
  flex-wrap: wrap;
}
.insights {
  padding: 50px 0;
}
.hero-container {
  padding: 50px 0 0 0;
}
.cycle-btn {
  width: 70%;
    justify-content: space-between;
}
.ad_all-step-card__icon svg {
  height: auto;
}
.approach-symbol img {
    max-width: 100px;
}


.service-page li {
  line-height: 0.9;
}
.p-gap .services-section {
  padding: 120px 0 0 0;
}
.service-list-set .services-slider {
grid-template-columns: 1fr 1fr;
}
.service-list-set .services-slider {
  margin: 50px 0;
}
.inner .hero {
  height: 40vh;
  min-height: 400px;
}
.reveal-section {
  height: 25vh;
}
.careers-content {
  grid-template-columns: 1fr;
}
.careers-job {
  grid-template-columns: 1fr 1fr;
}
.careers-job-button {
  margin: 30px 0 10px 0;
}
.careers-jobs > h2 {
  font-size: 2em;
}
.careers-cta {
  padding: 30px;
}
.careers-section {
  padding: 50px 0;
}
.mobile-ico {
  display: block;
}
.mobile-ico svg {
 width: 20px;
}
.insight-list-page .insight-list {
  grid-template-columns: 1fr;
}
.insight-list {
  grid-template-columns: 1fr;
}
.about-think {
  width: 100%;
  padding: 50px 0;
}
.zoom-wrapper-about p {
  line-height: 1.8;
}
.ad_all-step-cards__counter {
  display: none;
}
.reveal-image {
  clip-path: none;
}
}

/* =========================================================
           TABLET
        ========================================================= */

@media screen and (min-width: 684px) and (max-width: 1024px)  {
  .services-section {
    padding: 25px 12px;
  }

  .services-slider {
    gap: 16px;
  }

  .services-slider:hover .service-card {
    flex-grow: 0.55;
  }

  .services-slider .service-card:hover {
    flex-grow: 5;
  }

  .service-content {
    left: 25px;
    right: 25px;
    bottom: 30px;
  }

  .service-content h2 {
    font-size: 36px;
  }

  .service-content p {
    font-size: 14px;
  }

  .service-category {
    top: 22px;
    right: 22px;

    padding: 11px 16px;
  }

  .footer-container {
    width: min(100% - 30px, 650px);
  }

  .footer-top {
    min-height: 190px;
    padding-top: 45px;
  }

  .footer-heading h2 {
    font-size: clamp(27px, 5vw, 36px);
  }

  .footer-contact {
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 15px 0;
  }

  .footer-links {
    grid-template-columns: 90px 1fr;
    gap: 25px;
  }

  .service-grid {
    gap: 20px;
  }
      .marketing-contact-container {
        width: min(
            calc(100% - 40px),
            900px
        );

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .marketing-contact-info {
        min-height: auto;
    }

    .marketing-contact-form {
        padding: 45px 40px;
    }
    .ad_all-step-cards__inner {
    width: min(100% - 50px, 700px);

    grid-template-columns: 1fr;

    gap: 60px;

    padding: 0 0 120px;
  }

  .ad_all-step-cards__intro {
    text-align: center;
  }

  .ad_all-step-cards__intro h2 {
    margin: 0 auto;
  }

  .ad_all-step-cards__eyebrow {
    justify-content: center;
  }

  .ad_all-step-cards__stage {
    justify-self: center;
    flex-direction: column;
    width: min(440px, 100%);
  }

  .ad_all-step-cards__progress {
    left: 50%;
    transform: translateX(-50%);
    display: none;
  }
    .mobile-logo {
    display: block;
        position: relative;
        z-index: 2;
  }
    .mobile-logo .logo img {
      max-width: 70px;
      display: block;
    }
  .header-inner {
    min-height: 74px;
  }
nav.nav-wrap {
  display: block;
}
  .logo {
    width: 90px;
    height: 74px;
    font-size: 22px;
  }

  .menu-btn {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: 0.35s ease;
    padding: 100px 30px;
  }
.header-middle {
  display: none;
}
  .nav-wrap.active {
    transform: translateX(0);
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }



  .nav > li > a {
   padding: 18px 0;
    justify-content: flex-start;
    color: var(--white);
    gap: 15px;
  }
.arrow {
  border-right: 1px solid  var(--white);
    border-bottom: 1px solid var(--white);
    position: absolute;
        right: 0;
}
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    display: none;
   padding: 0 0 0 15px;
        border-left: 1px solid var(--brand);
        margin: 0 0 0 20px;
        overflow: inherit;
  }
.dropdown li::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--brand);
    top: 17px;
    border-radius: 100%;
    left: -20px;
    z-index: 999;
}

  .dropdown .dropdown {
    margin-left: 0;
  }

  .dropdown a {
    padding: 12px 0;
    font-size: 14px;
  }

  .nav li.active > a .arrow {
    transform: rotate(225deg);
  }
  .zoom-wrapper {
    height: inherit;
  }

  .zoom-section {
    width: 88%;
    height: 70%;

    transform: scale(0.9);
  }

  .zoom-content h2 {
    font-size: clamp(40px, 12vw, 70px);
  }

  .hero-inner {
    width: 90vw;
  }

  .sub-stack {
    margin-left: 10px;
  }

  .services-section {
    height: auto;

    min-height: inherit;

    padding: 15px;

    overflow: visible;
  }

  .services-slider {
    height: auto;

    display: flex;

    flex-direction: column;

    gap: 8px;

    overflow: visible;
  }

  /*
                Mobile initial state
            */

  .service-card {
    flex: none !important;

    width: 100%;

    height: 210px;

    min-height: 210px;
  }

  /*
                Mobile hover
            */

  .service-card:hover {
    flex: none !important;

    height: 420px;
  }

  /*
                Don't darken other cards on mobile
            */

  .services-slider:hover .service-card:not(:hover) .service-image {
    filter: brightness(1);
  }

  .service-category {
    top: 18px;
    right: 18px;

    padding: 10px 15px;

    font-size: 11px;
  }

  .service-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .service-content h2 {
    font-size: 32px;

    margin-bottom: 12px;
  }

  .service-content p {
    font-size: 14px;

    margin-bottom: 18px;
  }

  .service-number {
    left: 15px;
    bottom: 15px;
  }

  .cards-wrapper {
    left: 50%;

    top: 58%;

    width: calc(100% - 40px);

    max-width: 420px;

    height: 58vh;

    min-height: 400px;
  }

  .feature-card {
    padding: 22px;
  }

  .footer-container {
    width: calc(100% - 30px);
  }

  .footer-top {
    min-height: 205px;
    padding-top: 42px;
  }

  .footer-logo {
    width: 42px;
    height: 62px;
  }

  .footer-heading h2 {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1;
    letter-spacing: -0.8px;
  }

  .footer-heading h2 br {
    display: none;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
    padding: 17px 0;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 22px 0;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .footer-bottom {
  
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
  }

  .footer-social {
    min-width: 0;
  }

  .footer-copyright {
    min-height: 40px;
  }
  .journal-detail {
    padding: 10px 0 70px;
  }

  .journal-detail-container {
    width: calc(100% - 30px);
  }

  /* Featured image */

  .journal-detail-featured {
    margin-bottom: 18px;
  }

  .journal-detail-featured img {
    aspect-ratio: 16 / 9;

    border-radius: 10px;
  }

  /* Article */

  .journal-detail-article {
    max-width: 100%;
  }

  /* Date */

  .journal-detail-date {
    margin-bottom: 12px;

    font-size: 12px;
  }

  /* H1 */

  .journal-detail-title {
    margin-bottom: 20px;

    font-size: clamp(32px, 9vw, 42px);

    line-height: 1.08;
  }

  /* Paragraph */

  .journal-detail-article p {
    font-size: 15px;

    line-height: 1.6;
  }

  /* Intro */

  .journal-detail-intro {
    font-size: 16px !important;

    line-height: 1.6 !important;
  }

  /* H2 */

  .journal-detail-article h2 {
    margin-top: 42px;

    margin-bottom: 16px;

    font-size: 27px;

    line-height: 1.15;
  }

  /* H3 */

  .journal-detail-article h3 {
    margin-top: 32px;

    font-size: 22px;
  }

  /* H4 */

  .journal-detail-article h4 {
    margin-top: 25px;

    font-size: 19px;
  }

  /* H5 */

  .journal-detail-article h5 {
    margin-top: 22px;

    font-size: 17px;
  }

  /* List */

  .journal-detail-article ul,
  .journal-detail-article ol {
    padding-left: 20px;
  }

  .journal-detail-article li {
    font-size: 15px;

    line-height: 1.6;
  }

  /* Images */

  .journal-detail-image {
    margin: 30px 0;
  }

  .journal-detail-image img {
    aspect-ratio: 16 / 10;

    border-radius: 9px;
  }

  /* Quote */

  .journal-detail-quote {
    margin: 35px 0;

    padding: 20px 22px;
  }

  .journal-detail-quote p {
    font-size: 17px;

    line-height: 1.55;
  }
     .marketing-contact {
        padding: 50px 0;
    }

    .marketing-contact-container {
        width: 100%;

        gap: 18px;
    }

    .marketing-contact-info {
        padding: 40px 28px;

        border-radius: 8px;
    }

    .marketing-contact-info h2 {
        font-size: 36px;
    }

    .marketing-contact-intro {
        margin-bottom: 32px;

        font-size: 13px;
    }

    .marketing-contact-details {
        gap: 18px;

        margin-bottom: 32px;
    }

    .marketing-contact-form {
        padding: 40px 25px;

        border-radius: 8px;
    }

    .marketing-contact-form h2 {
        font-size: 32px;
    }

    .marketing-form {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .marketing-form-field:nth-last-child(2),
    .marketing-form-field:last-of-type {
        grid-column: auto;
    }

    .marketing-form-submit {
        grid-column: auto;
    }
 .ad_all-step-cards {
    overflow: hidden;
  }

  .ad_all-step-cards__inner {
    width: min(100% - 40px, 760px);
    min-height: auto;
    height: auto;
    padding: 70px 0;
    display: block;
  }

  .ad_all-step-cards__stage {
    width: 100%;
    height: auto;
    min-height: inherit;
    margin-top: 50px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
.ad_all-step-card__icon {
  align-items: flex-start;
}
  .ad_all-step-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: inherit;
    height: auto;
     flex-direction: row;
      gap: 10px;
  }

  .ad_all-step-card:not(:first-child) {
    margin-top: 30px;
  }
  .ad_all-step-cards__inner {
    width: calc(100% - 32px);

    min-height: auto;

    padding: 0 0 100px;

    gap: 45px;
  }

  .ad_all-step-cards__intro h2 {
    font-size: clamp(44px, 13vw, 62px);
  }
.zoom-content-expert {
  max-width: 400px;
  top: 10%;
}
  .ad_all-step-cards__stage {
    width: 100%;
    height: inherit;
  }

  .ad_all-step-card {
    padding: 30px;
  }

  .ad_all-step-card__icon {
    width: 110px;
    height: 110px;
    margin: 0 0 0 0;
  }

  .ad_all-step-card__content h3 {
    font-size: 20px;
  }

  .ad_all-step-card__content p {
    font-size: 13px;
  }

  .ad_all-step-cards__progress {
    position: relative;

    left: auto;
    bottom: auto;

    width: 100%;

    justify-content: center;

    transform: none;
  }

  .ad_all-step-cards__progress-line {
    width: 110px;
  }
  .hero {
    height: 60vh;
    min-height: 500px;
  }
.zoom-content {
        align-items: center;
        justify-content: flex-end;
        padding: 0 0 50px 0;
    }
.stat-label {
  text-align: left;
}
.company-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.zoom-sticky {
  height: inherit;
}
#zoomSection {
  height: 60vh;
}
.about-ad-all .pin-section  {
  display: none;
}
.filler {
  height: inherit;
  padding: 50px 0;
}
.services-slider {
  gap: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
}
h4  {
  font-size: 1.3em;
}
.ad_all-step-card__content {
  margin-top: 0;
}
.approach-steps {
  grid-template-columns: 1fr 1fr;
}
.approach-symbol {
  opacity: 1;
}
.approach-pin {
  height: inherit;
}
.approach-heading h3 {
    max-width: 550px;
    opacity: 1;
    transform: translateY(0);
    color: var(--white);
    clip-path: inherit
}
.approach-pin {
  height: inherit;
  padding: 50px 0;
  min-height: inherit;
  margin-bottom: 50px;
}
.approach-top {
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.approach-heading {
  margin: 30px 0 0 0;
}
.approach-eyebrow {
  opacity: 1;
}
.approach-dot {
  transform: none;
  background-color: var(--brand);
}
.approach-step {
  opacity: 1;
}
.approach-step p {
  opacity: 1;
  transform: none;
}
.insight-set img {
  height: 150px;
}
.insight-content {
  padding: 30px;
}
.hero-button-wrap {
  flex-wrap: wrap;
}
.insights {
  padding: 0 0 100px 0;
}
.hero-container {
  padding: 50px 0 0 0;
}

.ad_all-step-card__icon svg {
  height: auto;
}
.approach-symbol img {
    max-width: 100px;
}
.inner .hero {
  height: 40vh;
  min-height: 400px;
}
.reveal-section {
  height: 40vh;
}
.careers-content {
  grid-template-columns: 1fr;
}

.careers-job-button {
  margin: 30px 0 10px 0;
}
.careers-jobs > h2 {
  font-size: 2em;
}
.careers-cta {
  padding: 30px;
}
.careers-section {
  padding: 50px 0;
}
.mobile-ico {
  display: block;
}
.mobile-ico svg {
 width: 20px;
}
.insight-list-page .insight-list {
  grid-template-columns: 1fr 1fr;
}
}


/* =========================================================
   SMOOTH SCROLL / ANIMATION STABILITY
   Prevent CSS transitions from fighting GSAP/Lenis transforms.
========================================================= */

html {
  scroll-behavior: auto;
  overscroll-behavior-y: none;
}

body {
  overscroll-behavior-y: none;
}

.hero-content,
.hero-video,
.hero-image,
.zoom-section,
.pin-stage,
.word,
.approach-pin,
.approach-symbol,
.service-image,
.feature-card,
.marquee,
.ad_all-step-cards__inner,
.ad_all-step-card {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* GSAP controls transform/opacity on these elements. */
.hero-content,
.hero-video,
.hero-image,
.zoom-section,
.word,
.approach-symbol,
.feature-card,
.ad_all-step-card {
  will-change: transform, opacity;
}


/* Avoid expensive paint effects while a card is being animated. */
.service-image {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Don't animate layout-affecting properties during scroll. */
.header {
  will-change: background-color, transform;
}

.header img {
  will-change: max-width;
}

/* Respect accessibility and avoid animation work when requested. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.single-services .hero h1 {
	max-width: 780px;
}
