@font-face {
  font-family: "Thmanyah Sans";
  src: url("../fonts/thmanyahsans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("../fonts/thmanyahsans-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("../fonts/thmanyahsans-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Sans";
  src: url("../fonts/thmanyahsans-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Display";
  src: url("../fonts/thmanyahserifdisplay-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Display";
  src: url("../fonts/thmanyahserifdisplay-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Thmanyah Display";
  src: url("../fonts/thmanyahserifdisplay-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --bg: #06131e;
  --panel: #0a1d2a;
  --panel-2: #102635;
  --text: #f7fbff;
  --muted: #aab9c5;
  --line: rgba(157, 190, 210, 0.22);
  --glass: rgba(6, 20, 31, 0.72);
  --glass-soft: rgba(12, 29, 41, 0.5);
  --orange: #ff7a1a;
  --orange-2: #ff9b43;
  --blue: #48b9eb;
  --green: #25d366;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --container: min(1400px, calc(100% - 64px));
  --header-offset: 104px;
  --section-space: 108px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: transparent;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: "Thmanyah Sans", Tahoma, Arial, sans-serif;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: "Thmanyah Display", "Thmanyah Sans", Tahoma, sans-serif;
}

::selection {
  color: #fff;
  background: rgba(255, 122, 26, 0.4);
}

:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 4px;
  box-shadow: 0 0 0 5px rgba(255, 122, 26, 0.14);
}

.top-anchor {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: max(10px, env(safe-area-inset-top, 0px));
  left: 16px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: #06131e;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}

html[dir="rtl"] .skip-link {
  right: 16px;
  left: auto;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  min-width: 0;
  margin-inline: auto;
}

main {
  overflow: clip;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
  isolation: isolate;
}

.section[id] {
  scroll-margin-top: max(0px, calc(var(--header-offset) - var(--section-space) + 16px));
}

.clients[id] {
  scroll-margin-top: calc(var(--header-offset) + env(safe-area-inset-top, 0px));
}

.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 18, 28, 0.26),
    rgba(7, 21, 31, 0.5),
    rgba(5, 18, 28, 0.24)
  );
  backdrop-filter: blur(1px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-2);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

html[dir="rtl"] .eyebrow {
  font-family: "Thmanyah Sans", Tahoma, sans-serif;
  font-weight: 700;
  text-transform: none;
}

.section-heading {
  min-width: 0;
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading > *,
.section-heading.split > * {
  min-width: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 850;
  line-height: 1.04;
  text-wrap: balance;
}

html[dir="rtl"] .section-heading h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.12;
}

.section-note {
  max-width: 540px;
  margin: 0;
  color: #c5d0d8;
  font-size: 13px;
  line-height: 1.75;
}

.centered-note {
  margin-inline: auto;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: translateY(20px);
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
}

.js .reveal {
  opacity: 0;
}

.reveal.in-view,
.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

/* Fixed media backdrop */

.site-video-background {
  position: fixed;
  z-index: -5;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  background: #06131e;
}

.site-video-background video,
.site-video-fallback,
.site-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-video-background video {
  z-index: 1;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.98) contrast(1.04) brightness(0.94);
  transition: opacity 0.8s ease;
}

.site-video-background.is-playing video {
  opacity: 1;
}

.site-video-background.is-unavailable video {
  opacity: 0;
}

.site-video-fallback {
  z-index: 0;
  background: #06131e url("../img/projects/01.webp") center / cover no-repeat;
}

.site-video-shade {
  z-index: 2;
  background:
    radial-gradient(circle at 28% 22%, rgba(51, 105, 134, 0.13), transparent 36%),
    linear-gradient(90deg, rgba(2, 10, 17, 0.43), rgba(2, 11, 18, 0.2) 48%, rgba(2, 11, 18, 0.3)),
    linear-gradient(180deg, rgba(2, 10, 17, 0.1), rgba(2, 10, 17, 0.44));
}

.cursor-glow {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(117, 205, 255, 0.1) 32%,
    rgba(70, 164, 215, 0.04) 52%,
    transparent 72%
  );
  mix-blend-mode: screen;
  filter: blur(2px);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.24s ease;
}

.cursor-glow.is-active {
  opacity: 0.82;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 60;
  top: max(14px, env(safe-area-inset-top, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  left: max(16px, env(safe-area-inset-left, 0px));
  display: grid;
  grid-template-columns: minmax(205px, 1fr) auto minmax(205px, 1fr);
  align-items: center;
  min-height: 68px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(160, 194, 215, 0.23);
  border-radius: 28px;
  background: rgba(3, 17, 27, 0.86);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(130%);
}

html[dir="rtl"] .site-header {
  padding: 8px 12px 8px 10px;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  max-width: 100%;
  gap: 11px;
}

.brand-mark {
  display: grid;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(139, 184, 208, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 85, 108, 0.24), rgba(2, 14, 23, 0.86));
}

.brand-mark img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  opacity: 0.9;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.08;
}

.brand-copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html[dir="rtl"] .brand-copy strong {
  font-family: "Thmanyah Sans", Tahoma, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.nav-links a {
  position: relative;
  min-height: 44px;
  padding: 14px 0;
  color: #d4dee5;
  font-size: 12px;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 7px;
  left: 50%;
  height: 1px;
  background: var(--orange);
  transition:
    right 0.22s ease,
    left 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
  left: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 8px;
}

.lang-toggle,
.mini-cta,
.menu-toggle {
  min-height: 44px;
  border: 1px solid rgba(170, 200, 220, 0.24);
  border-radius: 999px;
  cursor: pointer;
}

.lang-toggle {
  min-width: 64px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--orange), #e95f08);
  box-shadow: 0 10px 30px rgba(255, 122, 26, 0.2);
  font-size: 12px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  position: absolute;
  width: 19px;
  height: 2px;
  border-radius: 4px;
  background: #fff;
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 24px);
  padding-top: 132px;
  padding-bottom: 72px;
}

.hero::before {
  background: linear-gradient(90deg, rgba(2, 10, 17, 0.24), rgba(2, 10, 17, 0.08) 48%, rgba(2, 10, 17, 0.16));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(285px, 0.62fr);
  align-items: center;
  max-width: 1240px;
  gap: 68px;
}

.hero-content {
  position: relative;
  min-width: 0;
  padding: 34px 0;
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -66px -100px -66px -84px;
  background: radial-gradient(ellipse at 42% 50%, rgba(3, 14, 23, 0.75), rgba(3, 14, 23, 0.31) 49%, transparent 74%);
  filter: blur(5px);
}

html[dir="rtl"] .hero-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(285px, 0.62fr);
}

html[dir="rtl"] .hero-content {
  grid-column: 1;
  grid-row: 1;
}

.hero-title {
  max-width: 100%;
  margin: 0 0 20px;
  font-size: 68px;
  font-weight: 850;
  line-height: 0.99;
  text-wrap: balance;
}

html[dir="rtl"] .hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.08;
}

.hero-kicker {
  max-width: 720px;
  margin-bottom: 15px;
  font-size: 27px;
  font-weight: 850;
  line-height: 1.3;
  text-wrap: balance;
}

html[dir="rtl"] .hero-kicker {
  font-family: "Thmanyah Sans", Tahoma, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.42;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 25px;
  color: #d2dbe1;
  font-size: 14px;
  line-height: 1.8;
}

html[dir="rtl"] .hero-text {
  line-height: 1.95;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid rgba(174, 205, 222, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  backdrop-filter: blur(10px);
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s ease,
    background 0.22s ease;
}

.btn:hover {
  border-color: rgba(255, 255, 255, 0.44);
  transform: translateY(-2px);
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), #ff9a42);
  box-shadow: 0 14px 35px rgba(255, 122, 26, 0.24);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
}

.btn.ghost {
  background: rgba(3, 17, 27, 0.2);
}

.hero-card {
  width: min(100%, 350px);
  justify-self: end;
  padding: 10px;
  border: 1px solid rgba(170, 203, 222, 0.26);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(15, 34, 46, 0.62));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(125%);
  transform: rotate(0.35deg);
}

html[dir="rtl"] .hero-card {
  grid-column: 2;
  grid-row: 1;
  justify-self: start;
  transform: rotate(-0.35deg);
}

.hero-card-img {
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #081721;
}

.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.hero-card-body {
  display: grid;
  gap: 5px;
  padding: 14px 5px 5px;
}

.hero-card-body span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.hero-card-body strong {
  font-size: 17px;
  line-height: 1.22;
}

/* About */

.about::before {
  background: linear-gradient(180deg, rgba(4, 17, 27, 0.46), rgba(7, 23, 34, 0.64), rgba(4, 17, 27, 0.44));
}

.about-cinema {
  --about-image: url("../img/about/who.webp");
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  min-height: 540px;
  overflow: clip;
  isolation: isolate;
  border: 1px solid rgba(157, 194, 216, 0.18);
  border-radius: 30px;
  background: rgba(3, 16, 25, 0.2);
  box-shadow: var(--shadow);
}

.about-cinema::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -54px;
  background: var(--about-image) center / cover no-repeat;
  opacity: 0.74;
  filter: blur(46px) brightness(0.5) saturate(0.94);
  transform: scale(1.08);
  transition: background-image 0.45s var(--ease);
}

.about-media {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.about-backdrop {
  position: absolute;
  inset: 12px 18px 32px;
  background: center / contain no-repeat;
  transform: scale(1.01);
  transition:
    opacity 0.48s var(--ease),
    transform 6.8s linear;
}

.about-cinema.active .about-backdrop {
  transform: scale(1.055);
}

.about-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 22, 0.9) 0%, rgba(2, 13, 22, 0.62) 34%, rgba(2, 13, 22, 0.13) 70%, transparent),
    linear-gradient(180deg, transparent 54%, rgba(2, 13, 22, 0.38));
}

html[dir="rtl"] .about-tint {
  background:
    linear-gradient(270deg, rgba(2, 13, 22, 0.9) 0%, rgba(2, 13, 22, 0.62) 34%, rgba(2, 13, 22, 0.13) 70%, transparent),
    linear-gradient(180deg, transparent 54%, rgba(2, 13, 22, 0.38));
}

.about-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 540px;
  padding: 62px 48px 106px;
  overflow: visible;
  transition:
    opacity 0.32s var(--ease),
    transform 0.32s var(--ease);
}

html[dir="rtl"] .about-copy {
  grid-column: 1;
}

.about-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 24px -58px 62px 12px;
  background: linear-gradient(90deg, rgba(4, 20, 31, 0.78), rgba(4, 20, 31, 0.31) 66%, transparent);
  mask-image: linear-gradient(90deg, #000 54%, transparent 100%);
  backdrop-filter: blur(8px);
}

html[dir="rtl"] .about-copy::before {
  inset: 24px 12px 62px -58px;
  background: linear-gradient(270deg, rgba(4, 20, 31, 0.78), rgba(4, 20, 31, 0.31) 66%, transparent);
  mask-image: linear-gradient(270deg, #000 54%, transparent 100%);
}

.about-number {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.about-copy h3 {
  margin: 0 0 15px;
  font-size: 40px;
  line-height: 1.1;
  text-wrap: balance;
}

html[dir="rtl"] .about-copy h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.16;
}

.about-copy p {
  max-width: 500px;
  margin: 0;
  color: #d6e0e7;
  font-size: 14px;
  line-height: 1.86;
}

.about-controls {
  position: absolute;
  z-index: 4;
  right: 50%;
  bottom: 20px;
  left: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  width: min(780px, calc(100% - 44px));
  gap: 8px;
  transform: translateX(50%);
}

.about-control {
  position: relative;
  min-width: 0;
  min-height: 48px;
  overflow: hidden;
  padding: 12px 16px;
  border: 1px solid rgba(168, 203, 224, 0.18);
  border-radius: 14px;
  background: rgba(4, 20, 31, 0.58);
  color: #c2ced6;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.35;
  text-align: start;
  backdrop-filter: blur(14px);
  transition:
    transform 0.24s var(--ease),
    border-color 0.24s ease,
    background 0.24s ease;
}

.about-control::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity 0.25s ease,
    transform 0.3s var(--ease);
}

html[dir="rtl"] .about-control::after {
  transform-origin: right;
}

.about-control.active {
  border-color: rgba(255, 122, 26, 0.62);
  background: rgba(8, 30, 44, 0.78);
  color: #fff;
  transform: translateY(-2px);
}

.about-control.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.about-control span {
  margin-inline-end: 7px;
  color: var(--orange-2);
  font-size: 10px;
}

.about-timer {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.about-timer span,
.service-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

html[dir="rtl"] .about-timer span,
html[dir="rtl"] .service-progress span {
  margin-inline-start: auto;
  background: linear-gradient(270deg, var(--orange), var(--blue));
}

/* Services */

.services::before {
  background: linear-gradient(180deg, rgba(3, 14, 23, 0.5), rgba(7, 23, 34, 0.67), rgba(3, 14, 23, 0.47));
}

.service-shell {
  min-width: 0;
}

.service-rail-wrap {
  min-width: 0;
  overflow: hidden;
  padding: 8px 8px 14px;
  border: 1px solid rgba(166, 203, 222, 0.11);
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(5, 21, 32, 0.25), rgba(10, 31, 44, 0.45), rgba(5, 21, 32, 0.25));
  backdrop-filter: blur(12px);
}

.service-rail,
.project-filmstrip {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: inline proximity;
  -webkit-overflow-scrolling: touch;
}

.service-rail {
  gap: 8px;
  padding: 1px;
}

.service-rail::-webkit-scrollbar,
.project-filmstrip::-webkit-scrollbar,
.about-controls::-webkit-scrollbar {
  display: none;
}

.service-chip {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid rgba(183, 214, 230, 0.24);
  border-radius: 999px;
  background: rgba(4, 19, 30, 0.56);
  color: #eef5f8;
  cursor: pointer;
  font-size: 11.5px;
  line-height: 1.25;
  white-space: nowrap;
  scroll-snap-align: center;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.service-chip.active {
  border-color: rgba(255, 122, 26, 0.82);
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.22), rgba(7, 28, 42, 0.68));
  box-shadow: 0 0 24px rgba(255, 122, 26, 0.1);
  color: #fff;
}

.service-cinema {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  min-height: 510px;
  margin-top: 12px;
  overflow: clip;
  isolation: isolate;
  border: 1px solid rgba(155, 195, 217, 0.16);
  border-radius: 30px;
  background: rgba(3, 16, 25, 0.18);
  box-shadow: var(--shadow);
}

.service-media {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.service-stage-media,
.service-stage-blur,
.service-stage-vignette {
  position: absolute;
  inset: 0;
}

.service-stage-blur {
  inset: -50px;
  z-index: -2;
  background-position: center;
  background-size: cover;
  opacity: 0.46;
  filter: blur(45px) brightness(0.55) saturate(0.96);
  transform: scale(1.15);
}

.service-stage-media {
  z-index: -1;
  inset: 10px 16px 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1.008);
  transition:
    opacity 0.48s var(--ease),
    transform 6.8s linear;
}

.service-cinema.is-changing .service-stage-media {
  transform: scale(1.045);
}

.service-stage-vignette {
  background:
    linear-gradient(90deg, rgba(2, 12, 20, 0.91) 0%, rgba(2, 12, 20, 0.65) 35%, rgba(2, 12, 20, 0.12) 72%, transparent),
    linear-gradient(180deg, transparent 62%, rgba(2, 12, 20, 0.3));
}

html[dir="rtl"] .service-stage-vignette {
  background:
    linear-gradient(270deg, rgba(2, 12, 20, 0.91) 0%, rgba(2, 12, 20, 0.65) 35%, rgba(2, 12, 20, 0.12) 72%, transparent),
    linear-gradient(180deg, transparent 62%, rgba(2, 12, 20, 0.3));
}

.service-stage-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 510px;
  padding: 48px 46px 68px;
  overflow: visible;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

html[dir="rtl"] .service-stage-copy {
  grid-column: 1;
}

.service-stage-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -58px 20px 8px;
  background: linear-gradient(90deg, rgba(5, 22, 33, 0.83), rgba(5, 22, 33, 0.34) 65%, transparent);
  mask-image: linear-gradient(90deg, #000 54%, transparent 100%);
  backdrop-filter: blur(8px);
}

html[dir="rtl"] .service-stage-copy::before {
  inset: 18px 8px 20px -58px;
  background: linear-gradient(270deg, rgba(5, 22, 33, 0.83), rgba(5, 22, 33, 0.34) 65%, transparent);
  mask-image: linear-gradient(270deg, #000 54%, transparent 100%);
}

.service-count span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.service-stage-copy h3 {
  max-width: 100%;
  margin: 7px 0 14px;
  font-size: 38px;
  line-height: 1.1;
  text-wrap: balance;
}

.service-stage-copy h3.long-title {
  font-size: 33px;
}

html[dir="rtl"] .service-stage-copy h3 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.17;
}

html[dir="rtl"] .service-stage-copy h3.long-title {
  font-size: 31px;
}

.service-stage-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 16px;
  color: #d3dde4;
  font-size: 13px;
  line-height: 1.76;
}

.service-stage-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-stage-copy li {
  max-width: 100%;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.095);
  color: #edf3f6;
  font-size: 10px;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.service-nav {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 18px;
  display: flex;
  direction: ltr;
  gap: 8px;
}

html[dir="rtl"] .service-nav {
  right: 18px;
  left: auto;
  flex-direction: row-reverse;
}

.service-nav button,
.gallery-arrow,
.execution-arrow,
.lightbox-arrow,
.lightbox-close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid rgba(174, 206, 224, 0.24);
  border-radius: 50%;
  background: rgba(3, 17, 27, 0.8);
  cursor: pointer;
  line-height: 1;
  direction: ltr;
  backdrop-filter: blur(10px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--ease);
}

.service-nav button:hover,
.gallery-arrow:hover,
.execution-arrow:hover {
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-1px);
}

.autoplay-toggle {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(174, 206, 224, 0.24);
  border-radius: 50%;
  background: rgba(3, 17, 27, 0.78);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  direction: ltr;
  backdrop-filter: blur(10px);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.autoplay-toggle:hover,
.autoplay-toggle[aria-pressed="true"] {
  border-color: rgba(255, 122, 26, 0.72);
  background: rgba(255, 122, 26, 0.86);
}

.about-autoplay,
.service-autoplay,
.project-autoplay {
  top: 18px;
  right: 18px;
}

html[dir="rtl"] .about-autoplay,
html[dir="rtl"] .service-autoplay,
html[dir="rtl"] .project-autoplay {
  right: auto;
  left: 18px;
}

.execution-autoplay {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.service-progress {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

/* Projects */

.projects::before {
  background: linear-gradient(180deg, rgba(4, 17, 27, 0.5), rgba(7, 23, 34, 0.68), rgba(4, 17, 27, 0.5));
}

.project-gallery {
  position: relative;
  height: 550px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(160, 198, 219, 0.14);
  border-radius: 30px;
  background: rgba(4, 17, 27, 0.18);
  box-shadow: var(--shadow);
}

.project-backdrop {
  position: absolute;
  z-index: -1;
  inset: -90px;
  background: center / cover no-repeat;
  opacity: 0.72;
  filter: blur(60px) brightness(0.48) saturate(0.94);
  transform: scale(1.1);
  transition:
    background-image 0.4s ease,
    opacity 0.4s ease;
}

.project-main {
  position: absolute;
  z-index: 2;
  inset: 16px 74px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 23px;
  cursor: zoom-in;
}

.project-main img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
  transition:
    opacity 0.36s var(--ease),
    transform 0.36s var(--ease);
}

.gallery-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-arrow:hover {
  transform: translateY(-50%);
}

.gallery-prev {
  left: 17px;
}

.gallery-next {
  right: 17px;
}

html[dir="rtl"] .gallery-prev {
  right: 17px;
  left: auto;
}

html[dir="rtl"] .gallery-next {
  right: auto;
  left: 17px;
}

.project-progress {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 13px;
  left: 30px;
  height: 2px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.project-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transition: width 0.4s var(--ease);
}

html[dir="rtl"] .project-progress span {
  margin-inline-start: auto;
  background: linear-gradient(270deg, var(--orange), var(--blue));
}

.project-filmstrip-shell {
  min-width: 0;
  margin-top: 13px;
  overflow: hidden;
  padding: 7px 0;
  border: 1px solid rgba(160, 198, 219, 0.14);
  border-radius: 16px;
  background: rgba(5, 20, 31, 0.34);
  backdrop-filter: blur(14px);
}

.project-filmstrip {
  gap: 8px;
  padding: 0 9px 3px;
}

.project-thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 64px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.26);
  cursor: pointer;
  opacity: 0.48;
  scroll-snap-align: center;
  transition:
    opacity 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s var(--ease);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: #07131c;
  object-fit: contain;
}

.project-thumb.active {
  border-color: var(--orange);
  opacity: 1;
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.12);
  transform: translateY(-2px);
}

.project-more {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  min-height: 92px;
  margin-top: 16px;
  padding: 16px 20px;
  gap: 20px;
  border: 1px solid rgba(158, 197, 219, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(9, 28, 40, 0.65), rgba(255, 122, 26, 0.07));
  backdrop-filter: blur(18px);
  transition:
    border-color 0.22s ease,
    transform 0.22s var(--ease);
}

.project-more:hover {
  border-color: rgba(255, 122, 26, 0.5);
  transform: translateY(-2px);
}

.project-more-copy {
  min-width: 0;
}

.project-more-copy h3 {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1.25;
}

.project-more-copy p {
  margin-bottom: 0;
  color: #c9d5dd;
  font-size: 12px;
  line-height: 1.55;
}

.qr-peek {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d9e2e8;
  font-size: 11px;
  font-weight: 800;
}

.qr-orbit {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 26, 0.46);
  border-radius: 14px;
  opacity: 0.86;
  transition: opacity 0.22s ease;
}

.project-more:hover .qr-orbit {
  opacity: 1;
}

.qr-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Statistics */

.numbers {
  padding: 30px 0;
}

.numbers::before {
  background: rgba(4, 17, 27, 0.5);
}

.numbers-strip {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr repeat(4, minmax(0, 1fr));
  align-items: stretch;
  min-height: 108px;
  overflow: clip;
  border: 1px solid rgba(160, 198, 219, 0.18);
  border-radius: 21px;
  background: linear-gradient(90deg, rgba(6, 23, 34, 0.9), rgba(10, 32, 45, 0.68));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
}

.numbers-caption {
  display: grid;
  align-content: center;
  margin: 0;
  padding: 20px 24px;
  color: var(--orange-2);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

html[dir="rtl"] .numbers-caption {
  text-transform: none;
}

.stat {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 18px 13px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.075);
  text-align: center;
}

.stat strong {
  display: block;
  margin-bottom: 7px;
  font-size: 33px;
  font-weight: 900;
  line-height: 1;
  transition:
    color 0.35s var(--ease),
    transform 0.35s var(--ease),
    text-shadow 0.35s var(--ease);
}

.stat span {
  color: #becbd4;
  font-size: 11px;
  line-height: 1.35;
}

.stat.complete strong {
  color: var(--orange-2);
  text-shadow: 0 0 25px rgba(255, 122, 26, 0.36);
  transform: scale(1.12);
}

.numbers-light {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -180px;
  width: 145px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: translateX(0) skewX(-20deg);
  animation: numbers-sweep 7.2s linear infinite;
}

@keyframes numbers-sweep {
  to {
    transform: translateX(calc(100vw + 360px)) skewX(-20deg);
  }
}

/* Execution methodology */

.execution::before {
  background: linear-gradient(180deg, rgba(4, 17, 27, 0.5), rgba(7, 24, 35, 0.69), rgba(4, 17, 27, 0.47));
}

.execution-cinema {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(390px, 1.7fr) minmax(150px, 0.78fr);
  align-items: center;
  min-height: 370px;
  padding: 34px 66px;
  gap: 20px;
  overflow: clip;
  border: 1px solid rgba(159, 198, 219, 0.2);
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(38, 79, 102, 0.2), rgba(5, 19, 29, 0.72));
  box-shadow: var(--shadow);
}

.execution-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(73, 184, 235, 0.07), transparent 45%);
  pointer-events: none;
}

.execution-side {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-width: 0;
  gap: 7px;
  color: #9db0bc;
  opacity: 0.58;
  transition: opacity 0.28s ease;
}

.execution-side span {
  color: var(--orange-2);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

html[dir="rtl"] .execution-side span {
  text-transform: none;
}

.execution-side strong {
  overflow-wrap: break-word;
  font-size: 18px;
  line-height: 1.35;
}

.execution-prev-card {
  text-align: end;
}

.execution-next-card {
  text-align: start;
}

.execution-focus {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 248px;
  padding: 32px 32px 28px;
  border: 1px solid rgba(163, 202, 222, 0.19);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(8, 27, 40, 0.76), rgba(15, 38, 52, 0.36));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.25);
  text-align: center;
  backdrop-filter: blur(18px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.execution-number {
  color: rgba(255, 255, 255, 0.16);
  font-size: 60px;
  font-weight: 900;
  line-height: 0.9;
}

.execution-focus h3 {
  margin: 10px 0 27px;
  font-size: 37px;
  line-height: 1.12;
  text-wrap: balance;
}

html[dir="rtl"] .execution-focus h3 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.18;
}

.execution-track-scroll {
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.execution-track {
  --track-edge: 4.545%;
  --progress: 0;
  position: relative;
  height: 38px;
  margin: 0 4px;
}

.execution-track-base,
.execution-track-fill {
  position: absolute;
  top: 17px;
  right: var(--track-edge);
  left: var(--track-edge);
  height: 2px;
  border-radius: 2px;
}

.execution-track-base {
  background: rgba(133, 178, 204, 0.31);
}

.execution-track-fill {
  background: linear-gradient(90deg, var(--orange), var(--blue));
  box-shadow: 0 0 13px rgba(72, 185, 235, 0.2);
  transform: scaleX(var(--progress));
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}

html[dir="rtl"] .execution-track-fill {
  background: linear-gradient(270deg, var(--orange), var(--blue));
  transform-origin: right center;
}

.execution-dots {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  align-items: center;
}

.execution-dot {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  justify-self: center;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.execution-dot::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid rgba(133, 178, 204, 0.42);
  border-radius: 50%;
  background: #0c2535;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease);
}

.execution-dot.passed::before {
  border-color: rgba(72, 185, 235, 0.76);
  background: var(--blue);
}

.execution-dot.active::before {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow:
    0 0 0 6px rgba(255, 122, 26, 0.12),
    0 0 18px rgba(255, 122, 26, 0.34);
  transform: scale(1.25);
}

.execution-arrow {
  position: absolute;
  z-index: 5;
  bottom: 16px;
}

.execution-back {
  left: 16px;
}

.execution-forward {
  right: 16px;
}

html[dir="rtl"] .execution-back {
  right: 16px;
  left: auto;
}

html[dir="rtl"] .execution-forward {
  right: auto;
  left: 16px;
}

/* Certifications and award */

.certifications::before {
  background: linear-gradient(180deg, rgba(3, 14, 23, 0.52), rgba(6, 21, 31, 0.7), rgba(3, 14, 23, 0.49));
}

.certification-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  align-items: stretch;
  gap: 15px;
}

.award-side,
.iso-side {
  min-width: 0;
  border: 1px solid rgba(162, 199, 220, 0.18);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(9, 27, 39, 0.72), rgba(16, 38, 51, 0.34));
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(120%);
}

.award-side {
  display: grid;
  grid-template-columns: minmax(225px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  padding: 20px 22px;
}

.award-image {
  display: grid;
  width: 100%;
  max-width: 290px;
  aspect-ratio: 600 / 820;
  margin-inline: auto;
  place-items: center;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 69%);
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.35));
  transition: transform 0.36s var(--ease);
}

.award-side:hover .award-image img {
  transform: translateY(-3px);
}

.award-copy {
  min-width: 0;
  padding: 18px 14px;
}

.award-copy h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 39px;
  line-height: 1.08;
  text-wrap: balance;
}

html[dir="rtl"] .award-copy h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.14;
}

.award-copy p:last-child {
  margin-bottom: 0;
  color: #d0dae1;
  font-size: 13px;
  line-height: 1.78;
}

.iso-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.iso-list {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.iso-list > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(164, 200, 220, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.052);
  transition:
    border-color 0.22s ease,
    transform 0.22s var(--ease);
}

.iso-list > div:hover {
  border-color: rgba(72, 185, 235, 0.36);
  transform: translateX(3px);
}

html[dir="rtl"] .iso-list > div:hover {
  transform: translateX(-3px);
}

.iso-list span {
  font-size: 15px;
  font-weight: 900;
  direction: ltr;
  unicode-bidi: isolate;
}

.iso-list small {
  color: #bdcad3;
  font-size: 12px;
  line-height: 1.45;
}

.safety-note {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.safety-note h3 {
  margin-bottom: 7px;
  font-size: 27px;
}

.safety-note p {
  margin: 0;
  color: #cad5dc;
  font-size: 13px;
  line-height: 1.74;
}

/* Contact */

.contact::before {
  background: linear-gradient(180deg, rgba(3, 14, 23, 0.52), rgba(6, 22, 33, 0.73), rgba(3, 14, 23, 0.62));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  margin-inline: auto;
  gap: 13px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  min-height: 118px;
  overflow: hidden;
  padding: 18px;
  gap: 16px;
  border: 1px solid rgba(159, 198, 219, 0.2);
  border-radius: 20px;
  background: rgba(4, 18, 28, 0.7);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
  transition:
    border-color 0.22s ease,
    transform 0.22s var(--ease);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-3px);
}

.contact-card:hover::before {
  opacity: 0.31;
}

.contact-card > div {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.contact-card span {
  color: var(--blue);
  font-size: 10px;
}

.contact-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.3;
}

.contact-card b {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 23px;
  font-weight: 900;
}

.contact-icon svg {
  width: 29px;
  height: 29px;
}

.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.48);
  background: linear-gradient(135deg, rgba(7, 68, 40, 0.58), rgba(4, 18, 28, 0.74));
}

.whatsapp-card::before {
  background: radial-gradient(circle at 12% 50%, rgba(37, 211, 102, 0.55), transparent 42%);
}

html[dir="rtl"] .whatsapp-card::before {
  background: radial-gradient(circle at 88% 50%, rgba(37, 211, 102, 0.55), transparent 42%);
}

.whatsapp-icon {
  color: var(--green);
  background: rgba(37, 211, 102, 0.15);
}

.email-card {
  border-color: rgba(79, 156, 216, 0.68);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.24), rgba(220, 237, 251, 0.12) 34%, rgba(51, 104, 157, 0.24) 67%, rgba(4, 18, 28, 0.8));
}

.email-card::before {
  background: radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.52), rgba(182, 220, 248, 0.19) 31%, transparent 62%);
}

html[dir="rtl"] .email-card::before {
  background: radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.52), rgba(182, 220, 248, 0.19) 31%, transparent 62%);
}

.zoho-icon {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(82, 156, 213, 0.54);
  background: #fff url("../img/contact/zoho-mail.png") center / 78% 78% no-repeat;
  box-shadow: 0 10px 28px rgba(52, 113, 179, 0.16);
}

.zoho-icon i {
  display: none;
}

.website-card {
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(16, 49, 69, 0.78), rgba(6, 25, 39, 0.8)) padding-box,
    linear-gradient(105deg, rgba(66, 133, 244, 0.67), rgba(52, 168, 83, 0.53), rgba(251, 188, 5, 0.48), rgba(234, 67, 53, 0.48)) border-box;
}

.website-card::before {
  background:
    radial-gradient(circle at 16% 48%, rgba(66, 133, 244, 0.34), transparent 35%),
    radial-gradient(circle at 42% 80%, rgba(52, 168, 83, 0.2), transparent 36%),
    radial-gradient(circle at 76% 20%, rgba(251, 188, 5, 0.15), transparent 34%),
    radial-gradient(circle at 93% 58%, rgba(234, 67, 53, 0.15), transparent 32%);
}

html[dir="rtl"] .website-card::before {
  background:
    radial-gradient(circle at 84% 48%, rgba(66, 133, 244, 0.34), transparent 35%),
    radial-gradient(circle at 58% 80%, rgba(52, 168, 83, 0.2), transparent 36%),
    radial-gradient(circle at 24% 20%, rgba(251, 188, 5, 0.15), transparent 34%),
    radial-gradient(circle at 7% 58%, rgba(234, 67, 53, 0.15), transparent 32%);
}

.web-icon {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #4285f4, #34a853 46%, #fbbc05 73%, #ea4335);
  filter: saturate(0.78) brightness(0.86);
}

.web-icon::before {
  content: "";
  width: 29px;
  height: 29px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(4, 18, 28, 0.8);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.05);
}

.web-icon::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.profile-card {
  grid-template-columns: 70px minmax(0, 1fr) auto;
  border-color: rgba(255, 132, 42, 0.62);
  background-color: rgba(4, 18, 28, 0.72);
  background-image:
    radial-gradient(circle at 13% 22%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 66%, rgba(72, 185, 235, 0.18) 0 1px, transparent 1.5px),
    linear-gradient(135deg, rgba(5, 52, 82, 0.54), rgba(6, 31, 52, 0.7) 58%, rgba(255, 122, 26, 0.08));
  background-size: 24px 24px, 33px 33px, auto;
}

.profile-card::before {
  background: linear-gradient(108deg, rgba(255, 122, 26, 0.23), transparent 42%, rgba(72, 185, 235, 0.18));
}

.profile-icon {
  width: 54px;
  height: 72px;
  overflow: visible;
  padding: 0;
  justify-self: center;
  border: 0;
  border-radius: 7px;
  background: #071b2a;
  box-shadow:
    4px 2px 0 rgba(246, 249, 251, 0.92),
    7px 4px 0 rgba(193, 209, 220, 0.78),
    0 12px 25px rgba(0, 0, 0, 0.28);
  transform: perspective(340px) rotateY(-13deg) rotateZ(-2deg);
}

html[dir="rtl"] .profile-icon {
  box-shadow:
    -4px 2px 0 rgba(246, 249, 251, 0.92),
    -7px 4px 0 rgba(193, 209, 220, 0.78),
    0 12px 25px rgba(0, 0, 0, 0.28);
  transform: perspective(340px) rotateY(13deg) rotateZ(2deg);
}

.profile-icon img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: #071b2a;
  object-fit: contain;
  object-position: top center;
}

/* Clients */

.clients {
  position: relative;
  padding: 34px 0 42px;
  overflow: hidden;
  border-top: 1px solid rgba(160, 198, 219, 0.14);
  background: rgba(3, 14, 23, 0.78);
}

.clients-heading {
  margin-bottom: 19px;
  text-align: center;
}

.clients-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 58s linear infinite;
  will-change: transform;
}

.logo-set {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  padding-inline-end: 14px;
}

.logo-card {
  position: relative;
  display: grid;
  flex: 0 0 180px;
  width: 180px;
  height: 84px;
  overflow: hidden;
  padding: 12px 14px;
  place-items: center;
  border: 1px solid rgba(170, 206, 225, 0.18);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(7, 25, 37, 0.45));
  backdrop-filter: blur(16px) saturate(120%);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s ease;
}

.logo-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

.logo-card img {
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  color: #f4f8fa;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.logo-card.failed img {
  display: none;
}

.logo-card.failed .logo-fallback {
  display: block;
}

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

  to {
    transform: translateX(-33.333333%);
  }
}

html[dir="rtl"] .logo-track {
  animation-name: logo-scroll-rtl;
}

@keyframes logo-scroll-rtl {
  from {
    transform: translateX(-33.333333%);
  }

  to {
    transform: translateX(0);
  }
}

/* Footer and lightbox */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  padding: 22px max(30px, calc((100% - 1400px) / 2));
  padding-bottom: max(22px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(160, 198, 219, 0.14);
  background: #020b12;
}

.footer-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
  color: #aeb8bf;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
}

.footer-brand span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.footer-brand strong {
  font-size: 13px;
}

.footer-brand small {
  font-size: 10px;
}

#backToTop {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: #aeb8bf;
  cursor: pointer;
  font-size: 11px;
}

#backToTop:hover {
  color: #fff;
}

.lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 76px;
  visibility: hidden;
  background: rgba(0, 5, 9, 0.95);
  opacity: 0;
  pointer-events: none;
  transition:
    visibility 0s linear 0.24s,
    opacity 0.24s ease;
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: min(1200px, 84vw);
  max-height: 86vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: max(20px, env(safe-area-inset-top, 0px));
  right: 22px;
  font-size: 27px;
}

html[dir="rtl"] .lightbox-close {
  right: auto;
  left: 22px;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

html[dir="rtl"] .lightbox-prev {
  right: 22px;
  left: auto;
}

html[dir="rtl"] .lightbox-next {
  right: auto;
  left: 22px;
}

/* Navigation breakpoint */

@media (max-width: 1120px) {
  :root {
    --container: min(1100px, calc(100% - 40px));
    --header-offset: 98px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    max-height: calc(100svh - var(--header-offset) - 16px);
    overflow-y: auto;
    padding: 10px;
    visibility: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(3, 17, 27, 0.97);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    backdrop-filter: blur(20px);
    transition:
      visibility 0s linear 0.24s,
      opacity 0.24s ease,
      transform 0.24s var(--ease);
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 12px;
    border-radius: 10px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mini-cta {
    display: none;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-title {
    font-size: 58px;
  }

  html[dir="rtl"] .hero-title {
    font-size: 44px;
  }

  .section-heading h2 {
    font-size: 48px;
  }

  html[dir="rtl"] .section-heading h2 {
    font-size: 45px;
  }

  .service-stage-copy h3 {
    font-size: 35px;
  }

  .service-stage-copy h3.long-title {
    font-size: 31px;
  }

  .certification-stage {
    grid-template-columns: 1fr;
  }

  .award-side {
    grid-template-columns: minmax(230px, 0.68fr) minmax(0, 1.32fr);
  }

  .execution-cinema {
    grid-template-columns: minmax(130px, 0.7fr) minmax(340px, 1.6fr) minmax(130px, 0.7fr);
    padding-inline: 54px;
  }
}

/* Tablet composition */

@media (max-width: 900px) {
  :root {
    --container: calc(100% - 32px);
    --header-offset: 94px;
    --section-space: 82px;
  }

  .section-heading.split {
    display: grid;
    align-items: start;
    gap: 15px;
  }

  .section-heading.split .section-note {
    max-width: 680px;
  }

  .section-heading h2,
  html[dir="rtl"] .section-heading h2 {
    font-size: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 62px;
  }

  .hero-grid,
  html[dir="rtl"] .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content,
  html[dir="rtl"] .hero-content {
    grid-column: 1;
    grid-row: 1;
    padding: 18px 0;
  }

  .hero-title {
    font-size: 52px;
  }

  html[dir="rtl"] .hero-title {
    font-size: 43px;
  }

  .hero-card,
  html[dir="rtl"] .hero-card {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(210px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    width: min(100%, 560px);
    justify-self: start;
    transform: none;
  }

  .hero-card-img {
    aspect-ratio: 1.4 / 1;
  }

  .hero-card-body {
    padding: 16px 18px;
  }

  /* About becomes a true media, copy, tabs flow. */
  .about-cinema {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 25px;
    background: linear-gradient(180deg, rgba(8, 28, 41, 0.5), rgba(5, 20, 31, 0.84));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
  }

  .about-cinema::before {
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    opacity: 0.5;
    filter: blur(38px) brightness(0.48);
  }

  .about-media {
    position: relative;
    z-index: 0;
    grid-column: 1;
    grid-row: 1;
    min-height: clamp(330px, 63vw, 470px);
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    background: rgba(3, 16, 25, 0.38);
  }

  .about-backdrop {
    inset: 10px 12px 0;
    background-size: contain;
  }

  .about-tint,
  html[dir="rtl"] .about-tint {
    background: linear-gradient(180deg, rgba(2, 13, 22, 0.02) 35%, rgba(2, 13, 22, 0.42) 72%, rgba(4, 20, 31, 0.98) 100%);
  }

  .about-copy,
  html[dir="rtl"] .about-copy {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    padding: 30px 32px 26px;
    overflow: visible;
    background: linear-gradient(180deg, rgba(4, 20, 31, 0.98), rgba(6, 24, 36, 0.94));
  }

  .about-copy::before,
  html[dir="rtl"] .about-copy::before {
    display: none;
  }

  .about-copy h3,
  html[dir="rtl"] .about-copy h3 {
    font-size: 36px;
  }

  .about-copy p {
    max-width: 720px;
  }

  .about-controls {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1;
    grid-row: 3;
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 12px 14px;
    gap: 8px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: inline proximity;
    transform: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-control {
    flex: 0 0 min(250px, 72%);
    scroll-snap-align: center;
  }

  .about-timer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1;
    grid-row: 4;
  }

  /* Services also use independent normal-flow media and copy rows. */
  .service-cinema {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 25px;
    background: linear-gradient(180deg, rgba(5, 21, 32, 0.44), rgba(5, 21, 32, 0.92));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
  }

  .service-media {
    position: relative;
    z-index: 0;
    grid-column: 1;
    grid-row: 1;
    min-height: clamp(340px, 64vw, 480px);
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    background: rgba(3, 16, 25, 0.36);
  }

  .service-stage-blur {
    inset: -35px;
    opacity: 0.5;
  }

  .service-stage-media {
    inset: 8px 10px 0;
  }

  .service-stage-vignette,
  html[dir="rtl"] .service-stage-vignette {
    background: linear-gradient(180deg, rgba(2, 12, 20, 0.01) 35%, rgba(2, 12, 20, 0.46) 72%, rgba(5, 22, 33, 0.99) 100%);
  }

  .service-stage-copy,
  html[dir="rtl"] .service-stage-copy {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    padding: 30px 32px 24px;
    overflow: visible;
    background: linear-gradient(180deg, rgba(5, 22, 33, 0.99), rgba(6, 25, 37, 0.95));
  }

  .service-stage-copy::before,
  html[dir="rtl"] .service-stage-copy::before {
    display: none;
  }

  .service-stage-copy h3,
  .service-stage-copy h3.long-title,
  html[dir="rtl"] .service-stage-copy h3,
  html[dir="rtl"] .service-stage-copy h3.long-title {
    font-size: 34px;
  }

  .service-stage-copy > p:not(.eyebrow) {
    max-width: 720px;
    font-size: 13.5px;
  }

  .service-nav,
  html[dir="rtl"] .service-nav {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    margin: 0 20px 18px;
  }

  html[dir="rtl"] .service-nav {
    justify-self: start;
  }

  .service-progress {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1;
    grid-row: 4;
  }

  .project-gallery {
    height: 470px;
  }

  .project-main {
    inset: 12px 56px 17px;
  }

  .numbers-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 9px;
  }

  .numbers-caption {
    grid-column: 1 / -1;
    padding: 9px 10px;
    text-align: center;
  }

  .stat {
    min-height: 84px;
    padding: 12px 8px;
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat:nth-of-type(even) {
    border-inline-start: 1px solid rgba(255, 255, 255, 0.07);
  }

  .execution-cinema {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 0;
    padding: 28px 24px 72px;
    gap: 12px;
  }

  .execution-focus {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 260px;
  }

  .execution-prev-card,
  .execution-next-card {
    min-height: 72px;
    padding: 11px 13px;
    border: 1px solid rgba(163, 202, 222, 0.12);
    border-radius: 13px;
    background: rgba(5, 21, 32, 0.54);
    opacity: 0.76;
  }

  .execution-prev-card {
    grid-column: 1;
    grid-row: 2;
    text-align: start;
  }

  .execution-next-card {
    grid-column: 2;
    grid-row: 2;
    text-align: end;
  }

  .execution-side strong {
    font-size: 15px;
  }

  .execution-arrow {
    bottom: 14px;
  }

  .award-image {
    max-width: 270px;
  }

  .contact-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .contact-card b {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
  }

}

/* Compact mobile composition */

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 24px);
    --header-offset: 88px;
    --section-space: 68px;
  }

  .site-header {
    top: max(8px, env(safe-area-inset-top, 0px));
    right: max(8px, env(safe-area-inset-right, 0px));
    left: max(8px, env(safe-area-inset-left, 0px));
    min-height: 60px;
    padding: 7px 8px;
    border-radius: 23px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    flex-basis: 41px;
    width: 41px;
    height: 41px;
  }

  .brand-mark img {
    width: 27px;
    height: 27px;
  }

  .brand-copy strong,
  html[dir="rtl"] .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 8.5px;
  }

  .header-actions {
    gap: 5px;
  }

  .lang-toggle {
    min-width: 59px;
    min-height: 44px;
    padding-inline: 9px;
    font-size: 11px;
  }

  .section-heading,
  .section-heading.centered {
    margin-bottom: 26px;
  }

  .section-heading h2,
  html[dir="rtl"] .section-heading h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .section-note {
    font-size: 12.5px;
  }

  .hero {
    min-height: calc(100svh - 14px);
    padding-top: 94px;
    padding-bottom: 42px;
  }

  .hero-grid,
  html[dir="rtl"] .hero-grid {
    gap: 16px;
  }

  .hero-content,
  html[dir="rtl"] .hero-content {
    padding: 8px 0;
  }

  .hero-content::before {
    inset: -30px -14px -28px;
  }

  .hero-title {
    margin-bottom: 13px;
    font-size: 42px;
    line-height: 1.03;
  }

  html[dir="rtl"] .hero-title {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-kicker,
  html[dir="rtl"] .hero-kicker {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.35;
  }

  .hero-text,
  html[dir="rtl"] .hero-text {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 8px 11px;
    font-size: 11.5px;
  }

  .hero-card,
  html[dir="rtl"] .hero-card {
    grid-template-columns: 96px minmax(0, 1fr);
    width: 100%;
    min-height: 94px;
    padding: 7px;
    border-radius: 18px;
  }

  .hero-card-img {
    width: 96px;
    height: 80px;
    aspect-ratio: auto;
    border-radius: 13px;
  }

  .hero-card-body {
    padding: 8px 12px;
  }

  .hero-card-body strong {
    font-size: 14px;
  }

  .about-media {
    min-height: clamp(270px, 80vw, 350px);
  }

  .about-copy,
  html[dir="rtl"] .about-copy {
    padding: 25px 22px 22px;
  }

  .about-number {
    font-size: 43px;
  }

  .about-copy h3,
  html[dir="rtl"] .about-copy h3 {
    margin-bottom: 12px;
    font-size: 31px;
  }

  .about-copy p {
    font-size: 13px;
    line-height: 1.78;
  }

  .about-control {
    flex-basis: min(230px, 78%);
    min-height: 46px;
    padding: 11px 13px;
  }

  .service-rail-wrap {
    margin-inline: -2px;
    padding: 7px 7px 12px;
    border-radius: 17px;
  }

  .service-chip {
    min-height: 44px;
    padding: 8px 12px;
    font-size: 10.5px;
  }

  .service-media {
    min-height: clamp(280px, 82vw, 370px);
  }

  .service-stage-copy,
  html[dir="rtl"] .service-stage-copy {
    padding: 25px 22px 22px;
  }

  .service-count span {
    font-size: 34px;
  }

  .service-stage-copy h3,
  .service-stage-copy h3.long-title,
  html[dir="rtl"] .service-stage-copy h3,
  html[dir="rtl"] .service-stage-copy h3.long-title {
    margin: 6px 0 12px;
    font-size: 29px;
  }

  .service-stage-copy > p:not(.eyebrow) {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.72;
  }

  .service-stage-copy li {
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 10px;
  }

  .project-gallery {
    height: 420px;
    border-radius: 23px;
  }

  .project-main {
    inset: 10px 46px 16px;
  }

  .gallery-prev,
  html[dir="rtl"] .gallery-next {
    left: 7px;
  }

  .gallery-next,
  html[dir="rtl"] .gallery-prev {
    right: 7px;
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .about-autoplay,
  .service-autoplay,
  .project-autoplay {
    top: 12px;
    right: 12px;
  }

  html[dir="rtl"] .about-autoplay,
  html[dir="rtl"] .service-autoplay,
  html[dir="rtl"] .project-autoplay {
    right: auto;
    left: 12px;
  }

  .project-progress {
    right: 18px;
    left: 18px;
  }

  .project-thumb {
    flex-basis: 76px;
    width: 76px;
    height: 58px;
  }

  .project-more {
    min-height: 0;
    padding: 14px;
    gap: 12px;
  }

  .project-more-copy h3 {
    font-size: 17px;
  }

  .project-more-copy p {
    font-size: 11px;
  }

  .qr-peek > span {
    display: none;
  }

  .qr-orbit {
    width: 52px;
    height: 52px;
  }

  .numbers {
    padding: 22px 0;
  }

  .numbers-strip {
    border-radius: 18px;
  }

  .stat {
    min-height: 82px;
  }

  .stat strong {
    font-size: 29px;
  }

  .stat span {
    font-size: 10px;
  }

  .execution-cinema {
    padding: 18px 14px 68px;
    border-radius: 23px;
  }

  .execution-focus {
    min-height: 250px;
    padding: 26px 14px 22px;
    border-radius: 20px;
  }

  .execution-number {
    font-size: 50px;
  }

  .execution-focus h3,
  html[dir="rtl"] .execution-focus h3 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .execution-track {
    width: 484px;
    min-width: 484px;
    margin: 0;
  }

  .execution-track-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .execution-track-scroll::-webkit-scrollbar {
    display: none;
  }

  .execution-dot::before {
    width: 11px;
    height: 11px;
  }

  .execution-prev-card,
  .execution-next-card {
    min-height: 68px;
    padding: 10px;
  }

  .execution-side span {
    font-size: 9px;
  }

  .execution-side strong {
    font-size: 13px;
  }

  .award-side {
    grid-template-columns: 1fr;
    padding: 20px 18px 22px;
    text-align: center;
  }

  .award-image {
    width: min(100%, 250px);
  }

  .award-copy {
    padding: 18px 4px 4px;
  }

  .award-copy .eyebrow {
    margin-bottom: 8px;
  }

  .award-copy h3,
  html[dir="rtl"] .award-copy h3 {
    margin-bottom: 13px;
    font-size: 32px;
  }

  .award-copy p:last-child {
    font-size: 13px;
    line-height: 1.78;
  }

  .iso-side {
    padding: 22px 18px;
  }

  .iso-list > div {
    padding: 13px 14px;
  }

  .safety-note h3 {
    font-size: 25px;
  }

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

  .contact-card {
    min-height: 108px;
    padding: 15px;
    gap: 13px;
  }

  .contact-card strong {
    font-size: 14px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .profile-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .profile-icon {
    width: 45px;
    height: 60px;
  }

  .clients {
    padding: 30px 0 36px;
  }

  .clients-heading h2 {
    font-size: 27px;
  }

  .logo-card {
    flex-basis: 152px;
    width: 152px;
    height: 76px;
    padding: 10px 12px;
  }

  .logo-card img {
    max-width: 128px;
    max-height: 52px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
    gap: 12px;
  }

  .footer-brand strong {
    font-size: 11px;
  }

  .lightbox {
    padding: 60px 48px 34px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 78vh;
  }

  .lightbox-close {
    top: max(10px, env(safe-area-inset-top, 0px));
    right: 10px;
  }

  html[dir="rtl"] .lightbox-close {
    right: auto;
    left: 10px;
  }

  .lightbox-prev,
  html[dir="rtl"] .lightbox-next {
    left: 4px;
  }

  .lightbox-next,
  html[dir="rtl"] .lightbox-prev {
    right: 4px;
  }
}

@media (max-width: 380px) {
  :root {
    --container: calc(100% - 20px);
  }

  .site-header {
    padding-inline: 7px;
  }

  .brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .brand-mark img {
    width: 25px;
    height: 25px;
  }

  .brand-copy strong,
  html[dir="rtl"] .brand-copy strong {
    font-size: 10.5px;
  }

  .brand-copy small {
    display: none;
  }

  .lang-toggle {
    min-width: 55px;
    padding-inline: 7px;
    font-size: 10px;
  }

  .menu-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .hero-title {
    font-size: 35px;
  }

  html[dir="rtl"] .hero-title {
    font-size: 33px;
  }

  .hero-kicker,
  html[dir="rtl"] .hero-kicker {
    font-size: 18px;
  }

  .hero-text,
  html[dir="rtl"] .hero-text {
    font-size: 12px;
  }

  .btn {
    min-height: 48px;
    padding-inline: 7px;
    font-size: 10.5px;
  }

  .hero-card,
  html[dir="rtl"] .hero-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .hero-card-img {
    width: 84px;
    height: 76px;
  }

  .hero-card-body {
    padding-inline: 9px;
  }

  .hero-card-body span {
    font-size: 9px;
  }

  .hero-card-body strong {
    font-size: 12px;
  }

  .section-heading h2,
  html[dir="rtl"] .section-heading h2 {
    font-size: 32px;
  }

  .about-copy,
  html[dir="rtl"] .about-copy,
  .service-stage-copy,
  html[dir="rtl"] .service-stage-copy {
    padding-inline: 18px;
  }

  .about-copy h3,
  html[dir="rtl"] .about-copy h3 {
    font-size: 28px;
  }

  .service-stage-copy h3,
  .service-stage-copy h3.long-title,
  html[dir="rtl"] .service-stage-copy h3,
  html[dir="rtl"] .service-stage-copy h3.long-title {
    font-size: 26px;
  }

  .project-gallery {
    height: 380px;
  }

  .project-main {
    inset-inline: 40px;
  }

  .project-more {
    padding: 12px;
  }

  .project-more-copy h3 {
    font-size: 15px;
  }

  .award-copy h3,
  html[dir="rtl"] .award-copy h3 {
    font-size: 29px;
  }
}

@media (max-height: 800px) and (min-width: 901px) {
  .hero {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 58px;
  }

  html[dir="rtl"] .hero-title {
    font-size: 45px;
  }

  .hero-card {
    width: min(100%, 315px);
  }

  .project-gallery {
    height: 480px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    display: block;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .site-video-background video,
  .cursor-glow,
  .numbers-light,
  .autoplay-toggle {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .logo-marquee {
    overflow: visible;
    padding-inline: 12px;
    mask-image: none;
  }

  .logo-track {
    display: block;
    width: 100%;
    animation: none;
  }

  .logo-set {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
    width: 100%;
    padding: 0;
    gap: 10px;
  }

  .logo-set:not(:first-child) {
    display: none;
  }

  .logo-card {
    width: 100%;
    min-width: 0;
  }
}
