@font-face {
  font-family: "PingAR+LT";
  src: url("../fonts/PingAR+LT-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingAR+LT";
  src: url("../fonts/PingAR+LT-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingAR+LT";
  src: url("../fonts/PingAR+LT-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingAR+LT";
  src: url("../fonts/PingAR+LT-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingAR+LT";
  src: url("../fonts/PingAR+LT-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingAR+LT";
  src: url("../fonts/PingAR+LT-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingAR+LT";
  src: url("../fonts/PingAR+LT-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingAR+LT";
  src: url("../fonts/PingAR+LT-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0b0b0b;
  --dark: #111111;
  --mid: #2b2b2b;
  --steel: #3a3a3a;
  --fog: #8f8f8f;
  --mist: #b3b3b3;
  --white: #ffffff;
  --accent: #8a8a8a;
  --glow: rgba(160, 160, 160, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: auto;
}

/* ── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--steel);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--steel) var(--dark);
}

body {
  font-family: "PingAR+LT", "Poppins", sans-serif;
  background: radial-gradient(circle at top, #1a1a1a 0%, #0b0b0b 60%, #000 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.what-card,
.number-card,
.service-card,
.case-card,
.value-card,
.leader-card {
  opacity: 1;
  visibility: visible;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  padding: 0 6vw;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease;
  min-height: 62px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  align-self: center;
}

/* ── Language switcher ────────────────────────────────────────── */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 3px;
  gap: 0;
}

.lang-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s;
  white-space: nowrap;
  user-select: none;
}

.lang-btn:hover {
  color: rgba(255,255,255,0.85);
}

.lang-btn.lang-active {
  color: #fff;
}

.lang-pill {
  position: absolute;
  top: 3px;
  height: 26px;
  width: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

/* Pill position: first lang active → left, second → right */
.lang-switcher:has(.lang-btn:nth-child(2).lang-active) .lang-pill {
  transform: translateX(34px);
}

/* Hover preview — slide pill toward hovered button */
.lang-switcher:has(.lang-btn:nth-child(1):hover) .lang-pill {
  transform: translateX(0);
  background: rgba(255,255,255,0.18);
}

.lang-switcher:has(.lang-btn:nth-child(2):hover) .lang-pill {
  transform: translateX(34px);
  background: rgba(255,255,255,0.18);
}

/* RTL: reverse pill direction */
[dir="rtl"] .lang-switcher:has(.lang-btn:nth-child(2).lang-active) .lang-pill,
[dir="rtl"] .lang-switcher:has(.lang-btn:nth-child(2):hover) .lang-pill {
  transform: translateX(-34px);
}

[dir="rtl"] .lang-switcher:has(.lang-btn:nth-child(1):hover) .lang-pill {
  transform: translateX(0);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}


.site-header.menu-open .nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.logo {
  display: flex;
  align-items: center;
  align-self: center;
}

.logo img {
  height: 30px;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.85);
}

.nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: stretch;
}

.nav a {
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  padding: 0 22px;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.nav a:hover {
  opacity: 1;
}

.nav a.nav-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.canvas-head,
.canvas-sep,
.canvas-social {
  display: none;
}

.cta {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.site-header .cta {
  padding: 8px 16px;
  font-size: 10px;
  position: relative;
  overflow: visible;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: ctaRipplePulse 2.2s ease-out infinite;
}

@keyframes ctaRipplePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  50%  { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15); }
  100% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .cta { animation: none; }
}

@media (min-width: 901px) {
  .logo {
    justify-self: start;
  }

  .nav {
    justify-self: center;
  }

  .header-actions {
    justify-self: end;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 10px 4vw;
    min-height: 56px;
  }

  .logo {
    justify-self: start;
  }

  .logo img {
    height: 24px;
  }

  .header-actions .cta {
    display: none;
  }

  /* shrink lang switcher on mobile so it fits */
  .lang-switcher {
    padding: 2px;
  }

  .lang-btn {
    width: 28px;
    height: 22px;
    font-size: 9px;
  }

  .lang-pill {
    width: 28px;
    height: 22px;
  }

  .lang-switcher:has(.lang-btn:nth-child(2).lang-active) .lang-pill {
    transform: translateX(28px);
  }

  [dir="rtl"] .lang-switcher:has(.lang-btn:nth-child(2).lang-active) .lang-pill {
    transform: translateX(-28px);
  }

  .nav-toggle {
    display: inline-flex;
    width: 38px;
    height: 38px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(82vw, 360px);
    height: 100vh;
    padding: 74px 22px 24px;
    background: rgba(0, 0, 0, 0.97);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateX(-105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 998;
    transform-origin: left center;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  }

  .nav a {
    display: block;
    padding: 12px 0;
    line-height: 1.6;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
  }

  .canvas-head {
    display: block;
    margin-bottom: 8px;
  }

  .canvas-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--fog);
    margin-bottom: 8px;
  }

  .canvas-head h3 {
    font-size: 1rem;
    margin: 0;
    letter-spacing: 0.12em;
    color: var(--white);
  }

  .canvas-sep {
    display: block;
    height: 1px;
    margin: 10px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  }

  .canvas-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .canvas-social a {
    width: 34px;
    height: 34px;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
  }

  .canvas-social svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
  }

  .site-header.menu-open .nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-scrolled:not(.menu-open) .nav {
    transform: translateX(-105%);
    opacity: 0;
    pointer-events: none;
  }

  .site-header.is-scrolled.menu-open .nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  [dir="rtl"] .nav {
    left: auto;
    right: 0;
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateX(105%);
    transform-origin: right center;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }

  [dir="rtl"] .site-header.menu-open .nav,
  [dir="rtl"] .site-header.is-scrolled.menu-open .nav {
    transform: translateX(0);
  }

  [dir="rtl"] .site-header.is-scrolled:not(.menu-open) .nav {
    transform: translateX(105%);
  }

  [dir="rtl"] .nav a,
  [dir="rtl"] .canvas-kicker,
  [dir="rtl"] .canvas-head h3,
  [dir="rtl"] .canvas-cta {
    letter-spacing: 0 !important;
  }

  [dir="rtl"] .nav .canvas-kicker {
    display: none;
  }

  [dir="rtl"] .nav a {
    font-size: 1.05rem;
  }

  [dir="rtl"] .canvas-head h3 {
    font-size: 1.25rem;
  }

  [dir="rtl"] .canvas-cta {
    font-size: 14px;
  }
}

.cta.solid {
  background: var(--white);
  color: var(--black);
}

.cta.solid:hover {
  background: var(--accent);
  color: var(--black);
}

.cta.ghost {
  border-color: var(--fog);
}

main {
  padding-top: 0;
  position: relative;
  z-index: 1;
}

section {
  padding: 80px 6vw;
  scroll-margin-top: 78px;
}

h1,
h2,
h3 {
  font-family: "PingAR+LT", "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

h1 {
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.1;
  margin: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 56px);
  margin-bottom: 16px;
}

.hero {
  padding: 0;
}

.hero-swiper {
  position: relative;
  height: 100vh;
  z-index: 1;
}

.hero-slide video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(255, 255, 255, 0.09) 0.5px, transparent 0.8px) 0 0 / 7px 7px,
    rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 55%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 260px 10vw 0 6vw;
  gap: 0;
  z-index: 2;
  margin-top: 20px;
}

.hero-vertical {
  display: none;
}

.hero-core {
  max-width: 780px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-core h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 0.88;
}

.hero-core h1 .flip-wrap {
  margin-top: -28px;
}

[dir="ltr"] .hero-core h1 .flip-wrap {
  margin-top: 8px;
}

.flip-wrap {
  display: block;
  min-width: unset;
  white-space: nowrap;
}

.hero-360 {
  font-size: clamp(40px, 10vw, 100px);
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  margin: 0 0 -8px 0;
  padding: 0;
}

/* Flip animation styles for the last word in the hero headline */
.flip-wrap {
  display: inline-block;
  perspective: 900px;
  /* prevent word wrapping and reserve enough width for longer service names */
  min-width: 20ch;
  white-space: nowrap;
  vertical-align: middle;
}
.flip-word {
  display: inline-block;
  transform-origin: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  text-transform: none;
  letter-spacing: 0.02em;
  position: relative;
}
.flip-word.hidden-back {
  transform: rotateX(-90deg);
  opacity: 0;
}

/* Emphasize the entire initial 'Dimensions' word */
.flip-word.initial {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
}

.flip-word.marker-mode::after {
  content: "";
  position: absolute;
  left: -3%;
  width: 104%;
  bottom: 0.02em;
  height: 0.14em;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 72% 58% 66% 54% / 62% 48% 64% 50%;
  z-index: -1;
  transform: scaleX(0) rotate(-0.9deg);
  transform-origin: left center;
  opacity: 0.95;
  filter: blur(0.15px);
}

.flip-word.marker-mode.highlight-draw::after {
  animation: markerLineDraw 0.85s ease forwards;
}

@keyframes markerLineDraw {
  0% {
    transform: scaleX(0) rotate(-0.9deg);
  }
  100% {
    transform: scaleX(1) rotate(-0.9deg);
  }
}

@media (max-width: 680px) {
  .flip-wrap {
    min-width: 14ch;
  }
}

.hero-sub {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--mist);
}

.hand-oval {
  position: relative;
  display: inline-block;
  padding: 0.35em 0.5em 0.35em 0;
  overflow: visible;
}

.camel-oval .oval-text {
  position: relative;
  z-index: 1;
}

.camel-oval .oval-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 155%;
  height: 2.1em;
  transform: translate(-50%, -50%) rotate(-6deg);
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.flip-word.camel-oval .oval-svg {
  width: 145%;
  height: 1.9em;
}

.flip-word.marker-mode .oval-svg {
  display: none;
}

.camel-oval .oval-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 0;
}

.camel-oval.highlight-draw .oval-path {
  stroke-dashoffset: 520;
  animation: ovalStroke 3.2s ease forwards;
}

.camel-oval .oval-path.primary {
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 6;
}

.camel-oval .oval-path.secondary {
  stroke: rgba(179, 179, 179, 0.5);
  stroke-width: 3;
  animation-delay: 0.18s;
}

@keyframes ovalStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 768px) {
  .camel-oval.highlight-draw .oval-path {
    animation-duration: 0.6s;
  }
  .hero-core .camel-oval .oval-svg,
  .hero-core h1 .oval-svg {
    display: none !important;
  }
  .hero-core .flip-word.marker-mode::after,
  .hero-core .flip-word.marker-mode.highlight-draw::after {
    display: none !important;
    content: none !important;
    animation: none !important;
  }
  .hero-core h1 {
    font-size: clamp(32px, 8vw, 52px);
    line-height: 0.95;
    gap: 2px;
  }
  [dir="rtl"] .hero-core h1 {
    font-size: clamp(34px, 8.5vw, 54px);
    line-height: 1;
    gap: 2px;
  }
  [dir="rtl"] .hero-core h1 .flip-wrap {
    margin-top: 2px;
  }
  .hero-core h1 .flip-wrap,
  [dir="ltr"] .hero-core h1 .flip-wrap {
    margin-top: 4px;
  }
  .hero-360 {
    margin-bottom: 2px;
  }
}

.hero-actions {
  display: none;
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  right: 6vw;
  z-index: 3;
}

.hero-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.hero-dots .swiper-pagination-bullet-active {
  background: #ffffff;
  border-color: #ffffff;
}

.industry-marquee {
  background: var(--black);
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  margin-top: 40px;
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  white-space: nowrap;
  font-size: 14px;
}

.scroll-video {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.scroll-pin {
  position: relative;
  height: 70vh;
  width: 90%;
  max-width: 1100px;
  border-radius: 64px;
  overflow: hidden;
  border: 1px solid var(--steel);
  transform-origin: center center;
}

.scroll-pin video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 100% 0 0);
}

.scroll-vimeo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.scroll-vimeo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.scroll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.scroll-copy {
  position: absolute;
  bottom: 36px;
  left: 36px;
  z-index: 2;
  max-width: 420px;
}

.scroll-copy h2 {
  line-height: 1.05;
}

.scroll-copy p {
  line-height: 1.4;
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
  position: relative;
}

.section-header p {
  color: var(--mist);
  white-space: nowrap;
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: var(--fog);
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
}

.section-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
  transform: translateY(-50%);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 24px 0 40px;
}

.what {
  padding-bottom: 20px;
}

.what-card {
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--steel);
  padding: 32px 28px;
  min-height: 240px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.what-card::before {
  content: attr(data-icon);
  position: absolute;
  right: -140px;
  top: 18px;
  font-size: 320px;
  color: transparent;
  font-weight: 700;
  pointer-events: none;
  transform: skew(-12deg, 0deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.28) 55%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.65;
  animation: iconFloat 14s ease-in-out infinite alternate;
}

@keyframes iconFloat {
  0% {
    transform: translate3d(0, 0, 0) skew(-12deg, 0deg);
  }
  100% {
    transform: translate3d(-12px, -10px, 0) skew(-12deg, 0deg);
  }
}

.what-card h3 {
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.what-card p {
  letter-spacing: 0.03em;
  width: 75%;
  color: var(--mist);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.number-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--steel);
  padding: 32px 28px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  text-align: left;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}

.number-card::before {
  content: attr(data-icon);
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  pointer-events: none;
}

.number-value {
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.number-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 10px;
  color: var(--mist);
  font-weight: 600;
  margin-bottom: 4px;
}

.number-card small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.domains-layout {
  display: block;
  width: 100%;
}

.services {
  background: #000000;
  padding-top: 34px;
  padding-bottom: 12px;
}

.services .section-header {
  margin-bottom: 0;
}

.services .domains-layout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
}

.domains-canvas-wrap {
  position: relative;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 0;
  border-right: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 56%),
    radial-gradient(circle at 18% 14%, rgba(176, 138, 46, 0.1), transparent 42%),
    #000000;
  min-height: clamp(560px, 68vh, 720px);
  padding: 6px 4px 8px;
  overflow: hidden;
}

.domains-canvas-wrap::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  opacity: 0.5;
  animation: domainsGlowSpin 28s linear infinite;
}

.domains-canvas-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

@keyframes domainsGlowSpin {
  to {
    transform: rotate(360deg);
  }
}

.domains-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(532px, calc(68vh - 10px), 692px);
  display: block;
  z-index: 2;
}

.domain-branch {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  transition: stroke 0.3s ease, stroke-width 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
  opacity: 0.72;
}

.domain-branch.is-active {
  stroke-width: 3.6;
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(176, 138, 46, 0.45));
}

.dimension-wave {
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2.4;
}

.domain-node text,
.domain-node path,
.domain-node rect,
.domain-node circle.icon-stroke,
.domain-node polyline,
.domain-node line {
  fill: rgba(255, 255, 255, 0.86);
  stroke: rgba(255, 255, 255, 0.92);
}

.domain-node text {
  pointer-events: none;
  stroke: none;
}

.domain-node .icon-mini {
  fill: none;
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.domain-node .node-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  fill: rgba(255, 255, 255, 0.72);
}

.domain-node .icon-shell {
  transition: transform 0.24s ease;
}

.domain-node .node-focus-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 1;
  opacity: 0;
  transition: opacity 0.2s ease, stroke 0.2s ease;
  display: none;
}

.domain-node .node-hit {
  fill: transparent;
  stroke: none;
}

.domain-node {
  cursor: pointer;
}

.domain-node.is-hover .node-focus-ring {
  opacity: 1;
}


.dimensions-center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(120px, 13vw, 170px);
  transform: translate(-50%, -50%);
  opacity: 0.88;
  z-index: 3;
  pointer-events: none;
}

.dimensions-center-logo img {
  width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.dimensions-hover-card {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 460px;
  max-width: 620px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(28, 28, 28, 0.78), rgba(52, 52, 52, 0.5) 55%, rgba(14, 14, 14, 0.64) 100%),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.06), transparent 40%);
  backdrop-filter: blur(10px);
  padding: 24px 28px;
  z-index: 4;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.dimensions-hover-card.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: pixelFadeIn 420ms steps(14, end) both;
}

@keyframes pixelFadeIn {
  0% {
    opacity: 0;
    filter: blur(2px) contrast(0.75);
    clip-path: inset(0 100% 0 0);
  }
  65% {
    opacity: 1;
    filter: blur(0.8px) contrast(1.1);
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    filter: blur(0) contrast(1);
    clip-path: inset(0 0 0 0);
  }
}

.dimensions-hover-kicker {
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f3f3f3;
  margin-bottom: 8px;
  font-family: "PingAR+LT", "Poppins", sans-serif;
}

.dimensions-hover-kicker.pixel-collect {
  animation: pixelCollect 520ms steps(14, end) both;
}

@keyframes pixelCollect {
  0% {
    opacity: 0;
    filter: blur(2px) contrast(0.8);
    clip-path: inset(0 100% 0 0);
  }
  60% {
    opacity: 1;
    filter: blur(0.8px) contrast(1.1);
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    filter: blur(0) contrast(1);
    clip-path: inset(0 0 0 0);
  }
}
.dimensions-hover-desc {
  color: var(--mist);
  font-size: 15px;
  line-height: 1.64;
  font-family: "PingAR+LT", "Poppins", sans-serif;
}

/* ===== Scroll-Story Services ===== */
.services {
  background: #000;
  padding-top: 34px;
  padding-bottom: 0;
  overflow: hidden;
}

.services .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.services .section-kicker::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92));
}

.services .reveal-title {
  color: #ffffff;
}

.svc-track {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1), transform 0.9s cubic-bezier(.22,1,.36,1);
}

.svc-scene.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Alternate canvas left / copy right */
.svc-scene:nth-child(even) .svc-canvas { order: 2; }
.svc-scene:nth-child(even) .svc-copy   { order: 1; }

.svc-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  background: #000;
  overflow: hidden;
}

.svc-canvas-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* glow overlay per scene */
.svc-scene[data-service="branding"]   .svc-canvas { background: radial-gradient(ellipse at 60% 50%, rgba(176,138,46,0.18) 0%, rgba(120,80,10,0.06) 50%, #000 75%); }
.svc-scene[data-service="events"]     .svc-canvas { background: radial-gradient(ellipse at 40% 50%, rgba(120, 164, 255, 0.14) 0%, rgba(93, 48, 182, 0.08) 32%, #000 68%); }
.svc-scene[data-service="production"] .svc-canvas { background: radial-gradient(ellipse at 55% 50%, rgba(220,60,40,0.14) 0%, rgba(180,30,20,0.06) 45%, #000 72%); }
.svc-scene[data-service="social"]     .svc-canvas { background: radial-gradient(ellipse at 50% 50%, rgba(29,161,242,0.10) 0%, #000 65%); }
.svc-scene[data-service="web"]        .svc-canvas { background: radial-gradient(ellipse at 45% 55%, rgba(52,199,89,0.10) 0%, #000 65%); }
.svc-scene[data-service="media"]      .svc-canvas { background: radial-gradient(ellipse at 55% 45%, rgba(255,69,58,0.10)  0%, #000 65%); }

.svc-copy {
  padding: 72px clamp(32px,5vw,80px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-num {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
  font-family: "PingAR+LT", "Poppins", sans-serif;
  display: block;
}

/* The leading "0" is dimmed, the main digit is accent-colored */
.svc-num em {
  font-style: normal;
  font-size: 0.55em;
  color: rgba(160,160,160,0.35);
  vertical-align: 0.18em;
  letter-spacing: 0;
}

.svc-title {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}

.svc-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.68;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin: 0;
}

.svc-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-pills li {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 14px;
  transition: color 0.25s, border-color 0.25s;
}

.svc-scene.is-visible .svc-pills li {
  color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.22);
}

/* Stagger children inside copy */
.svc-copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.svc-scene.is-visible .svc-copy > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.10s; }
.svc-scene.is-visible .svc-copy > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.20s; }
.svc-scene.is-visible .svc-copy > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.32s; }
.svc-scene.is-visible .svc-copy > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.44s; }

/* Mobile */
@media (max-width: 768px) {
  .svc-scene {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .svc-scene:nth-child(even) .svc-canvas,
  .svc-scene:nth-child(even) .svc-copy { order: unset; }
  .svc-canvas { min-height: 340px; }
  .svc-copy { padding: 36px 6vw 48px; }
}

/* ===== end Scroll-Story ===== */

.case-card {
  border-radius: 22px;
  border: 1px solid var(--steel);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.case-swiper {
  position: relative;
  padding-bottom: 0;
  overflow: visible;
}

.case-nav {
  position: absolute;
  right: 6vw;
  top: -56px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.case-nav-prev,
.case-nav-next {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.case-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.case-info {
  padding: 20px;
}

.case-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  opacity: 1;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.case-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.2);
}

.case-pagination {
  display: none;
}

.case-nav-prev:hover,
.case-nav-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.case-nav-prev svg,
.case-nav-next svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.case-studies {
  padding-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  border-radius: 18px;
  border: 1px solid var(--steel);
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  direction: ltr;
}

[dir="rtl"] .leader-grid {
  direction: rtl;
}

.leader-card {
  border-radius: 28px;
  border: 1px solid var(--steel);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.leader-card:hover {
  transform: translateY(-4px);
  border-color: var(--mist);
}

.leader-card img {
  height: 260px;
  width: 70%;
  margin: 22px auto 0;
  object-fit: cover;
  filter: none;
  border-radius: 22px;
}

.leader-card::after {
  content: "▣";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%) skew(1.5deg);
  font-size: 70px;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.leader-info {
  padding: 22px 20px 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
  text-align: center;
  width: 100%;
}

.leader-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.leader-info p {
  font-size: 14px;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partner-tile {
  border-radius: 16px;
  border: 1px solid var(--steel);
  padding: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-tile img {
  max-width: 220px;
  width: auto;
  height: 40px;
  object-fit: contain;
}

.partner-pagination {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.partner-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  opacity: 1;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.partner-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.2);
}

.cta-block {
  padding-bottom: 0;
}

.cta-inner {
  border-radius: 24px;
  border: 1px solid var(--steel);
  padding: 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  padding: 70px 6vw 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--mist);
  background: #0f0f0f;
  margin-top: 15px;
}

main {
  padding-bottom: 0;
}

section:last-of-type {
  padding-bottom: 0;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-sub {
  color: var(--mist);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: start;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.footer-newsletter {
  display: grid;
  gap: 12px;
}

.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.65rem;
  color: var(--fog);
}

.footer-input {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
}

.footer-newsletter button {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

/* Hover effects */
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.what-card:hover,
.number-card:hover,
.service-card:hover,
.case-card:hover,
.value-card:hover,
.leader-card:hover,
.partner-tile:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--mist);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.partner-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.case-nav-prev:hover,
.case-nav-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-newsletter input:focus {
  border-color: #111111;
  outline: none;
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-brand {
  max-width: 320px;
}

.footer-sub {
  color: var(--mist);
  margin-bottom: 12px;
}

.footer-block h4 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-block {
  position: relative;
  padding-right: 18px;
}

.footer-block::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -12px;
  width: 1px;
  height: calc(100% - 12px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  opacity: 0.7;
}

.footer-block:last-child::after {
  display: none;
}

.footer-block p {
  margin-bottom: 8px;
}

.footer-email-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 2px;
}

.footer-copy {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--fog);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


@keyframes lightSweep {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 980px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-vertical {
    writing-mode: horizontal-tb;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .section-header p {
    white-space: normal;
  }

  .hero-content {
    padding: 0 8vw;
  }

  .hero-360 {
    font-size: clamp(70px, 18vw, 140px);
  }

  .case-nav {
    right: 4vw;
    top: -48px;
  }
}

@media (max-width: 700px) {
  .hero-content {
    transform: translateY(25%);
  }
  .hero-sub {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  section {
    padding: 80px 6vw;
  }

  h1 {
    font-size: clamp(28px, 8vw, 50px);
    line-height: 1.22;
  }

  h2 {
    font-size: clamp(22px, 6vw, 40px);
  }

  .hero-content {
    gap: 20px;
  }

  .hero-vertical {
    display: none;
  }

  .hero-dots {
    right: 4vw;
  }

  .scroll-pin {
    height: 55vh;
    width: 100%;
  }

  .numbers-grid,
  .what-grid,
  .values-grid,
  .leader-grid,
  .client-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .domains-canvas-wrap {
    min-height: clamp(500px, 64vh, 660px);
    padding: 6px 4px 8px;
  }

  .domains-map {
    min-height: clamp(472px, calc(64vh - 10px), 620px);
  }

  .dimensions-hover-card {
    left: 50%;
    top: 54%;
    min-width: 240px;
    max-width: 320px;
    padding: 18px 20px;
  }

  .dimensions-center-logo {
    width: 96px;
  }

  .domain-node .node-label {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .dimensions-hover-desc {
    font-size: 14px;
    line-height: 1.58;
  }

  .case-card img {
    height: 220px;
  }

  .leader-card img {
    height: 240px;
    width: 90%;
  }

  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 10px 4vw;
  }

  .nav {
    font-size: 10px;
    gap: 12px;
  }

  .hero-actions .cta {
    width: 100%;
    text-align: center;
  }

  .dimensions-center-logo {
    width: 104px;
  }

  .number-value {
    font-size: clamp(40px, 12vw, 64px);
  }
}

.partners {
  padding-bottom: 120px;
}

.partners .swiper {
  padding-bottom: 34px;
}

.parallax-camel {
  position: relative;
  min-height: 80vh;
  padding: 120px 8vw 0;
  background: #ffffff;
  color: #121212;
  overflow: hidden;
  border-radius: 0;
  margin: 80px 0 0;
  width: 100%;
  display: grid;
  align-items: start;
}

.camel-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-top: 12vw;
}

.camel-reveal {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}

.camel-content h2 {
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #1b1b1b;
  line-height: 1;
}

[dir="rtl"] .camel-content h2 {
  line-height: 1.4;
}

.camel-content p {
  font-size: 1.05rem;
  color: #3b3b3b;
  max-width: 420px;
}

.camel-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/camel-background.png");
  background-size: cover;
  background-position: 70% 45%;
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.camel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.78) 45%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 900px) {
  .parallax-camel {
    margin: 60px 0 0;
    padding: 90px 6vw 0;
    min-height: 70vh;
  }

  .camel-content {
    max-width: 100%;
  }

  .camel-bg {
    background-position: 60% 100%;
  }
}
.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

/* ── Below-fold paint optimization ────────────────────────────── */
.services,
.case-studies,
.partners,
.numbers,
.parallax-camel,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ── Back to top ───────────────────────────────────────────────── */
/* ══ Sticky Contact Button ══════════════════════════════════════ */
.sticky-contact {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1001;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0;
}

.sticky-contact-trigger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(80,80,80,0.92);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  box-shadow: 0 0 0 0 rgba(150,150,150,0.5);
  animation: ripplePulse 2.2s ease-out infinite;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.sticky-contact-trigger:hover {
  transform: scale(1.08);
  background: rgba(110,110,110,0.95);
  animation: none;
}

@keyframes ripplePulse {
  0%   { box-shadow: 0 0 0 0 rgba(180,180,180,0.45); }
  50%  { box-shadow: 0 0 0 14px rgba(180,180,180,0.12); }
  100% { box-shadow: 0 0 0 24px rgba(180,180,180,0); }
}

.sticky-contact-panel {
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(12px);
}

.sticky-contact.is-open .sticky-contact-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sticky-contact-attr {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sticky-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 12px;
  font-family: inherit;
  transition: color 0.18s;
  white-space: nowrap;
}

.sticky-channel svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.18s;
}

.sticky-channel:hover {
  color: #fff;
}

.sticky-channel:hover svg {
  opacity: 1;
}

[dir="rtl"] .sticky-contact {
  left: 1.5rem;
  right: auto;
  align-items: flex-start;
}

@media (max-width: 900px) {
  body:has(.site-header.menu-open) .sticky-contact {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

@media (max-width: 600px) {
  .sticky-contact {
    bottom: 1rem;
    left: 1rem;
  }
  .sticky-contact-panel {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    margin-bottom: 0;
    min-width: 0;
    width: calc(100vw - 2rem);
    max-width: 320px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 14px;
    gap: 8px;
  }
  .sticky-channel {
    font-size: 13px;
    min-width: 0;
  }
  .sticky-channel span {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

[dir="rtl"] .sticky-contact-panel {
  transform-origin: bottom left;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--steel);
  background: var(--dark);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, border-color 0.3s;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--accent);
  background: var(--mid);
}

/* ══ RTL / Arabic overrides ══════════════════════════════════════ */
[dir="rtl"] .site-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav {
  text-align: right;
  font-size: 17px;
  letter-spacing: 0;
}

[dir="rtl"] .case-nav {
  right: auto;
  left: 6vw;
}

[dir="rtl"] .canvas-head {
  text-align: right;
}

[dir="rtl"] .canvas-social {
  justify-content: flex-end;
}

[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] .hero-vertical {
  left: auto;
  right: 6vw;
}

[dir="rtl"] .hero-actions {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

[dir="rtl"] .section-header {
  text-align: right;
}

/* Kicker line on the right in RTL */
[dir="rtl"] .section-kicker {
  padding-left: 0;
  padding-right: 32px;
  font-size: 18px;
  letter-spacing: 0.12em;
}

[dir="rtl"] .section-kicker::before {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, transparent, var(--accent));
}

/* what-card: icon floats from left in RTL */
[dir="rtl"] .what-card::before {
  right: auto;
  left: -140px;
  transform: skew(12deg, 0deg);
}

[dir="rtl"] .what-grid {
  direction: rtl;
}

[dir="rtl"] .what-card {
  text-align: right;
}

/* Arabic headings: tighter size so they don't run too long */
[dir="rtl"] h1,
[dir="rtl"] .reveal-title,
[dir="rtl"] .svc-title {
  font-size: clamp(22px, 3.2vw, 48px);
  letter-spacing: 0;
  line-height: 1.25;
}

[dir="rtl"] .what-card h3 {
  font-size: 18px;
  letter-spacing: 0;
}

[dir="rtl"] .svc-copy {
  text-align: right;
}

/* Number stays in flow, never clips into canvas */
[dir="rtl"] .svc-num {
  direction: ltr;
  display: block;
  text-align: right;
  font-size: clamp(40px, 5vw, 72px);
  overflow: visible;
}

[dir="rtl"] .leader-info {
  text-align: center;
}

[dir="rtl"] .footer-grid {
  direction: rtl;
}

[dir="rtl"] .footer-block {
  text-align: right;
}

[dir="rtl"] .footer-top {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-copy {
  flex-direction: row-reverse;
}

/* Camel section: text on LEFT, image on RIGHT for Arabic (LTR visual flow) */
[dir="rtl"] .parallax-camel {
  justify-items: start;
}

[dir="rtl"] .camel-content {
  text-align: right;
  justify-self: start;
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .camel-bg::after {
  background: linear-gradient(270deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.78) 55%,
    rgba(255,255,255,0.98) 100%
  );
}

/* Pills: right-aligned in RTL */
[dir="rtl"] .svc-pills {
  justify-content: flex-end;
  direction: ltr;
}

[dir="rtl"] .svc-pills li {
  letter-spacing: 0;
  font-family: "PingAR+LT", sans-serif;
  font-size: 12px;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] .reveal-title,
[dir="rtl"] .section-kicker,
[dir="rtl"] .hero-sub {
  font-family: "PingAR+LT", "Poppins", sans-serif;
  letter-spacing: 0 !important;
}

[dir="rtl"] h2,
[dir="rtl"] .reveal-title {
  font-size: clamp(28px, 4vw, 56px);
}

/* Override hero h1 separately — needs larger size */
[dir="rtl"] .hero-core h1 {
  font-size: clamp(34px, 5.5vw, 76px);
}

[dir="rtl"] .svc-desc {
  max-width: 100%;
  font-size: clamp(13px, 1.2vw, 15px);
}

[dir="rtl"] .what-card p {
  width: 100%;
  font-size: 13px;
}

[dir="rtl"] .hero-360 {
  direction: ltr;
  display: inline-block;
}
