:root {
  --primary: #2f392f;
  --secondary: #465346;
  --accent: #dcc8b8;
  --neutral: #f7f4ee;
  --neutral-strong: #ece5d8;
  --text: #2e372e;
  --text-soft: #72786f;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(47, 57, 47, 0.12);
  --shadow-soft: 0 12px 30px rgba(47, 57, 47, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfbf7 0%, var(--neutral) 100%);
}

body.is-locked {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
}

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

.section {
  padding: 110px 0;
  position: relative;
}

.section--light {
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.86), rgba(255, 255, 255, 0.98));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(47, 57, 47, 0.95);
  border-bottom: 1px solid rgba(220, 200, 184, 0.22);
}

.topbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__mark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  padding: 0;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-3px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  width: auto;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(220, 200, 184, 0.08);
  border: 1px solid rgba(220, 200, 184, 0.16);
  --shine-duration: 8.8s;
  --shine-delay: 1.7s;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(220, 200, 184, 0.12);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.hero {
  min-height: clamp(360px, 52vh, 520px);
  overflow: hidden;
  background: #000;
  padding: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.eyebrow--blue {
  color: var(--secondary);
}

.hero__copy h1,
.section-heading h2,
.split-layout__content h2,
.cta-band__panel h2,
.region-layout__content h2,
.contact__panel h2 {
  margin: 0;
  font-family: "Cairo", sans-serif;
  font-size: clamp(2.05rem, 4.2vw, 3.55rem);
  line-height: 1.14;
  font-weight: 800;
}

.hero__copy p,
.split-layout__content p,
.cta-band__panel p,
.section-heading p,
.region-layout__content p,
.contact__panel p {
  font-size: 1rem;
  line-height: 1.95;
  color: inherit;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --shine-duration: 7.6s;
  --shine-delay: 0s;
  --shine-offset: 0s;
  --press-scale: 0.985;
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow)::before {
  content: "";
  position: absolute;
  inset: -35% auto;
  left: -42%;
  width: 34%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 18%,
    rgba(255, 255, 255, 0.38) 50%,
    rgba(255, 255, 255, 0.06) 82%,
    transparent 100%
  );
  transform: translate3d(0, 0, 0) rotate(18deg);
  opacity: 0;
  pointer-events: none;
  animation: button-shine var(--shine-duration) ease-in-out infinite;
  animation-delay: calc(var(--shine-delay) + var(--shine-offset));
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow)::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 24% 50%, rgba(236, 229, 216, 0.34), transparent 30%),
    radial-gradient(circle at 72% 46%, rgba(126, 141, 102, 0.28), transparent 34%),
    radial-gradient(circle at 52% 68%, rgba(220, 200, 184, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(94, 108, 77, 0.18))
  );
  border-radius: inherit;
  transform: scale(0.94) translate3d(0, 0, 0);
  opacity: 0;
  pointer-events: none;
  filter: blur(12px) saturate(118%);
  mix-blend-mode: screen;
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):hover,
:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):focus-visible {
  box-shadow: 0 18px 32px rgba(47, 57, 47, 0.16);
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):hover::before,
:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):focus-visible::before {
  opacity: 0.9;
  animation: button-hover-sheen 1.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):hover::after,
:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):focus-visible::after {
  opacity: 0.9;
  animation: button-hover-glow 3.2s ease-in-out infinite alternate;
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):hover,
:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):focus-visible {
  box-shadow:
    0 18px 32px rgba(47, 57, 47, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 24px rgba(126, 141, 102, 0.16);
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):active {
  transform: translateY(1px) scale(var(--press-scale));
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):nth-child(2n) {
  --shine-offset: 1.2s;
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):nth-child(3n) {
  --shine-offset: 2.35s;
}

:is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow):nth-child(4n) {
  --shine-offset: 3.1s;
}

@keyframes button-shine {
  0%,
  10% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(18deg);
  }

  14% {
    opacity: 0.95;
  }

  22% {
    opacity: 0.18;
    transform: translate3d(460%, 0, 0) rotate(18deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(460%, 0, 0) rotate(18deg);
  }
}

@keyframes button-hover-sheen {
  0% {
    opacity: 0;
    transform: translate3d(-18%, 0, 0) rotate(18deg) scaleX(0.94);
  }

  18% {
    opacity: 0.9;
  }

  52% {
    opacity: 0.42;
  }

  100% {
    opacity: 0;
    transform: translate3d(380%, 0, 0) rotate(18deg) scaleX(1.03);
  }
}

@keyframes button-hover-glow {
  0% {
    opacity: 0.42;
    transform: scale(0.94) translate3d(-3%, 0, 0);
    filter: blur(12px) saturate(115%);
  }

  50% {
    opacity: 0.88;
    transform: scale(1.01) translate3d(2%, -2%, 0);
    filter: blur(15px) saturate(125%);
  }

  100% {
    opacity: 0.58;
    transform: scale(0.97) translate3d(4%, 2%, 0);
    filter: blur(13px) saturate(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow)::before,
  :is(.btn, .nav-cta, .filter-tab, .about-tab, .slider-arrow)::after {
    animation: none;
    opacity: 0;
  }
}

.btn--primary {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  box-shadow: 0 18px 32px rgba(47, 57, 47, 0.24);
  --shine-duration: 7.2s;
  --shine-delay: 0.4s;
}

.btn--secondary {
  color: var(--white);
  border: 1px solid rgba(220, 200, 184, 0.34);
  background: rgba(220, 200, 184, 0.12);
  --shine-duration: 8.4s;
  --shine-delay: 1.3s;
}

.btn--light {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 18px 32px rgba(47, 57, 47, 0.14);
  --shine-duration: 6.8s;
  --shine-delay: 2.1s;
}

.hero__tags span,
.feature-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-card {
  padding: 24px 28px;
  border-radius: 24px;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(3, 17, 32, 0.18);
}

.stat-card strong {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  color: var(--text);
}

.section-heading--dark h2,
.section-heading--dark .eyebrow {
  color: var(--white);
}

.about-showcase {
  padding: 34px 38px 16px;
  background: transparent;
}

.about-showcase__top {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) auto minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
  direction: ltr;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
  padding-inline-start: 12px;
  direction: rtl;
}

.about-metric {
  text-align: center;
}

.about-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--primary);
  font-weight: 700;
}

.about-metric span {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.about-showcase__divider {
  width: 1px;
  min-height: 170px;
  background: linear-gradient(180deg, transparent 0%, rgba(47, 57, 47, 0.18) 20%, rgba(47, 57, 47, 0.18) 80%, transparent 100%);
}

.about-showcase__copy {
  max-width: 520px;
  direction: rtl;
}

.about-showcase__copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 18px;
  font-weight: 700;
}

.about-showcase__copy p {
  color: var(--text);
  opacity: 0.9;
  margin: 0 0 24px;
}

.btn--about {
  background: var(--primary);
  color: var(--white);
  min-width: 156px;
  box-shadow: 0 18px 30px rgba(47, 57, 47, 0.18);
  --shine-duration: 7.9s;
  --shine-delay: 0.9s;
}

.about-showcase__bottom {
  padding-top: 28px;
}

.about-showcase__bottom h3 {
  margin: 0 0 30px;
  text-align: center;
  font-family: "Cairo", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  color: var(--secondary);
  font-weight: 500;
}

.logo-marquee--about {
  padding-top: 0;
  direction: ltr;
}

.logo-marquee--about .logo-marquee__track,
.logo-marquee--about .logo-marquee__group {
  direction: ltr;
}

.logo-marquee--about .logo-chip {
  width: 172px;
  min-width: 172px;
  height: 172px;
  min-height: 172px;
  padding: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: none;
  border: 1px solid rgba(47, 57, 47, 0.12);
  flex-shrink: 0;
}

.logo-marquee--about .logo-chip img {
  max-width: 118px;
  height: 92px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.logo-marquee--about .logo-chip:hover img {
  transform: scale(1.06);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 48px;
  align-items: center;
}

.split-layout__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  color: var(--text);
  margin-bottom: 18px;
}

.split-layout__content p {
  color: var(--text-soft);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.feature-list span {
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(47, 57, 47, 0.08);
  box-shadow: var(--shadow-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
}

.text-link::after {
  content: "\2190";
}

.visual-panel {
  min-height: 520px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 25% 20%, rgba(220, 200, 184, 0.24), transparent 22%),
    radial-gradient(circle at 80% 25%, rgba(70, 83, 70, 0.16), transparent 25%),
    linear-gradient(160deg, #f6f1e8 0%, #ebe3d6 100%);
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 57, 47, 0.08);
}

.visual-panel::before,
.service-card__visual::before,
.project-card__media::before,
.news-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.32), transparent 45%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.14) 10px,
      transparent 10px,
      transparent 24px
    );
}

.visual-panel__badge {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(47, 57, 47, 0.08);
  color: var(--primary);
  font-weight: 700;
}

.visual-panel__stack {
  position: absolute;
  inset-inline: 28px;
  bottom: 28px;
  display: grid;
  gap: 14px;
}

.mini-card {
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.48);
}

.mini-card span {
  display: block;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.mini-card strong {
  font-family: "Cairo", sans-serif;
  color: var(--primary);
}

.services-showcase {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
  background:
    radial-gradient(circle at 28% 50%, rgba(47, 57, 47, 0.08), transparent 22%),
    radial-gradient(circle at 72% 38%, rgba(220, 200, 184, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(251, 249, 244, 0.98), rgba(244, 238, 228, 0.94));
}

.services-showcase::before,
.services-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-showcase::before {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(47, 57, 47, 0.035) 0,
      rgba(47, 57, 47, 0.035) 1px,
      transparent 1px,
      transparent 34px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(47, 57, 47, 0.03) 0,
      rgba(47, 57, 47, 0.03) 1px,
      transparent 1px,
      transparent 34px
    ),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.26) 0,
      rgba(255, 255, 255, 0.26) 12px,
      rgba(240, 232, 217, 0.18) 12px,
      rgba(240, 232, 217, 0.18) 26px
    );
  opacity: 0.42;
}

.services-showcase::after {
  background:
    radial-gradient(circle at 32% 54%, rgba(255, 255, 255, 0.62), transparent 18%),
    radial-gradient(circle at 68% 18%, rgba(220, 200, 184, 0.2), transparent 20%);
  filter: blur(14px);
  opacity: 0.95;
}

.services-showcase .container {
  position: relative;
  z-index: 1;
}

.split-layout--services {
  position: relative;
  display: grid;
  direction: ltr;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  grid-template-areas: "visual body";
  gap: clamp(22px, 3.5vw, 44px);
  align-items: center;
}

.services-stage {
  position: relative;
  padding: 0;
}

.services-stage::before,
.services-stage::after,
.services-stage__aura {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services-stage::before {
  display: none;
}

.services-stage::after {
  display: none;
}

.services-stage__aura {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 31%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88), rgba(220, 200, 184, 0.18) 46%, transparent 72%);
  filter: blur(22px);
  opacity: 0.6;
  animation: auraDrift 18s ease-in-out infinite alternate;
}

.services-copy,
.visual-panel--services {
  position: relative;
  z-index: 1;
}

.services-copy {
  direction: rtl;
  text-align: right;
}

.services-copy--body {
  grid-area: body;
  max-width: 470px;
  padding: 18px 20px 20px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow:
    0 16px 30px rgba(47, 57, 47, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
}

.services-copy--body p {
  margin: 0;
  max-width: 100%;
  color: rgba(46, 55, 46, 0.78);
  font-size: 0.98rem;
  line-height: 1.9;
}

.feature-list--services {
  margin: 22px 0 0;
}

.feature-list--services span {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 28px rgba(47, 57, 47, 0.06);
}

.feature-list--services span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.84) 48%, transparent 72%);
  transform: translateX(120%);
  animation: pillSweep 7.5s linear infinite;
  pointer-events: none;
}

.services-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
  margin-top: 24px;
}

.services-actions .btn--about {
  box-shadow: 0 20px 34px rgba(47, 57, 47, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.services-actions .btn--about:hover,
.services-actions .btn--about:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 26px 40px rgba(47, 57, 47, 0.24);
}

.services-actions .text-link {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(47, 57, 47, 0.08);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 30px rgba(47, 57, 47, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.services-actions .text-link:hover,
.services-actions .text-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 36px rgba(47, 57, 47, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.visual-panel--services {
  grid-area: visual;
  align-self: center;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.visual-panel--services::before,
.visual-panel--services::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.visual-panel--services::before {
  inset: 14% 8% 18%;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at center, rgba(47, 57, 47, 0.06), transparent 64%);
  filter: blur(4px);
}

.visual-panel--services::after {
  display: none;
}

.visual-panel--services .visual-panel__badge {
  position: absolute;
  top: 6px;
  right: 18px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 57, 47, 0.08);
  box-shadow: 0 10px 22px rgba(47, 57, 47, 0.08);
}

.services-motion {
  position: relative;
  min-height: clamp(360px, 38vw, 430px);
  height: auto;
  width: min(100%, 760px);
  aspect-ratio: 1.7 / 1;
  margin-inline: auto;
  overflow: clip;
}

.services-motion__grid {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(
      0deg,
      rgba(47, 57, 47, 0.026) 0,
      rgba(47, 57, 47, 0.026) 1px,
      transparent 1px,
      transparent 32px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(47, 57, 47, 0.022) 0,
      rgba(47, 57, 47, 0.022) 1px,
      transparent 1px,
      transparent 32px
    );
  box-shadow: none;
  backdrop-filter: none;
}

.services-motion__beam,
.services-motion__grid::before,
.services-motion__grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services-motion__grid::before {
  inset: 24% 28%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(220, 200, 184, 0.26), transparent 72%);
  filter: blur(12px);
  animation: controlPulse 7s ease-in-out infinite;
}

.services-motion__grid::after {
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 57, 47, 0.18), rgba(255, 255, 255, 0.9), rgba(47, 57, 47, 0.18), transparent);
  transform: translateY(-50%) translateX(50%);
  opacity: 0;
  animation: scanLine 6.5s linear infinite;
}

.services-motion__beam {
  top: 12%;
  bottom: 16%;
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(220, 200, 184, 0.16), rgba(255, 255, 255, 0));
  filter: blur(14px);
  opacity: 0.58;
  animation: beamPulse 6.8s ease-in-out infinite;
}

.services-motion__spark {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(220, 200, 184, 0.92) 62%, rgba(220, 200, 184, 0) 100%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.65);
}

.services-motion__spark--one {
  top: 15%;
  right: 22%;
  animation: sparkFloat 4.2s ease-in-out infinite;
}

.services-motion__spark--two {
  left: 16%;
  bottom: 34%;
  animation: sparkFloat 5.2s ease-in-out infinite 0.8s;
}

.services-motion__spark--three {
  top: 34%;
  left: 50%;
  animation: sparkFloat 4.8s ease-in-out infinite 1.4s;
}

.services-motion__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(47, 57, 47, 0.16);
  pointer-events: none;
}

.services-motion__orbit--outer {
  width: min(68%, 360px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  animation: orbitSpin 24s linear infinite;
}

.services-motion__orbit--inner {
  width: min(40%, 220px);
  aspect-ratio: 1;
  border-style: solid;
  border-color: rgba(220, 200, 184, 0.72);
  transform: translate(-50%, -50%);
  animation: orbitSpinReverse 18s linear infinite;
}

.services-motion__gear {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  text-align: center;
}

.services-motion__gear::before,
.services-motion__gear::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.services-motion__gear::before {
  inset: -12px;
  background:
    radial-gradient(circle, transparent 58%, rgba(236, 229, 216, 0.92) 59%, rgba(236, 229, 216, 0.92) 76%, transparent 77%),
    repeating-conic-gradient(from 0deg, rgba(47, 57, 47, 0.13) 0deg 9deg, transparent 9deg 22deg);
  animation: gearSpin 20s linear infinite;
}

.services-motion__gear::after {
  inset: 15%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96), rgba(248, 243, 235, 0.92) 44%, rgba(220, 200, 184, 0.84) 45%, rgba(239, 231, 217, 0.95) 66%, rgba(255, 255, 255, 0.82) 100%);
  box-shadow:
    inset 0 2px 12px rgba(255, 255, 255, 0.54),
    0 16px 30px rgba(47, 57, 47, 0.12);
}

.services-motion__gear span {
  position: relative;
  z-index: 1;
  font-size: 1.16rem;
  font-weight: 800;
}

.services-motion__gear--primary {
  width: 182px;
  height: 182px;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-motion__gear--secondary {
  width: 118px;
  height: 118px;
  top: 18%;
  left: 16%;
}

.services-motion__gear--secondary::before {
  animation-direction: reverse;
  animation-duration: 16s;
}

.service-node {
  position: absolute;
  width: min(200px, 34%);
  height: auto;
  padding: 13px 15px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  box-shadow:
    0 22px 42px rgba(47, 57, 47, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}

.service-node:hover {
  box-shadow:
    0 28px 50px rgba(47, 57, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-node::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  top: 20px;
  right: 16px;
  box-shadow: 0 0 0 8px rgba(70, 83, 70, 0.08);
}

.service-node span,
.service-node strong {
  display: block;
  position: relative;
  z-index: 1;
}

.service-node span {
  margin-bottom: 8px;
  padding-right: 24px;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.service-node strong {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary);
}

.visual-panel--services.is-visible .service-node {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: nodeFloat 5.8s ease-in-out infinite;
}

.service-node--ops {
  top: 8%;
  right: 2%;
  transition-delay: 0.08s;
}

.service-node--projects {
  top: 34%;
  left: 0;
  transition-delay: 0.18s;
  animation-delay: 0.4s;
}

.service-node--hospitality {
  right: 0;
  bottom: 24%;
  transition-delay: 0.28s;
  animation-delay: 0.8s;
}

.service-node--commerce {
  left: 8%;
  bottom: 18%;
  transition-delay: 0.38s;
  animation-delay: 1.2s;
}

.services-motion__ticker,
.services-motion__cta {
  position: absolute;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.visual-panel--services.is-visible .services-motion__ticker,
.visual-panel--services.is-visible .services-motion__cta {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.services-motion__ticker {
  right: 18%;
  left: 34%;
  bottom: 2%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-radius: 22px;
  background: rgba(47, 57, 47, 0.92);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 42px rgba(47, 57, 47, 0.2);
  transition-delay: 0.46s;
}

.services-motion__ticker p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.services-motion__bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 4px;
  width: 86px;
  height: 28px;
  flex-shrink: 0;
}

.services-motion__bars span {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(220, 200, 184, 0.68));
  transform-origin: center bottom;
  animation: signalWave 1.8s ease-in-out infinite;
}

.services-motion__bars span:nth-child(1) {
  height: 34%;
  animation-delay: 0s;
}

.services-motion__bars span:nth-child(2) {
  height: 78%;
  animation-delay: 0.12s;
}

.services-motion__bars span:nth-child(3) {
  height: 52%;
  animation-delay: 0.24s;
}

.services-motion__bars span:nth-child(4) {
  height: 100%;
  animation-delay: 0.36s;
}

.services-motion__bars span:nth-child(5) {
  height: 58%;
  animation-delay: 0.48s;
}

.services-motion__bars span:nth-child(6) {
  height: 84%;
  animation-delay: 0.6s;
}

.services-motion__bars span:nth-child(7) {
  height: 40%;
  animation-delay: 0.72s;
}

.services-motion__cta {
  left: 10%;
  bottom: 2%;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary);
  font-weight: 800;
  border: 1px solid rgba(47, 57, 47, 0.08);
  box-shadow: 0 18px 34px rgba(47, 57, 47, 0.14);
  transition-delay: 0.54s;
  animation: ctaGlow 3.8s ease-in-out infinite;
}

.services-motion__cta:hover,
.services-motion__cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
}

.services-strip {
  position: relative;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
}

.services-strip::before,
.services-strip::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(16px);
}

.services-strip::before {
  width: 420px;
  height: 420px;
  top: 40px;
  right: -120px;
  background: radial-gradient(circle, rgba(220, 200, 184, 0.24) 0%, transparent 68%);
  animation: sectionGlow 12s ease-in-out infinite alternate;
}

.services-strip::after {
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(47, 57, 47, 0.1) 0%, transparent 72%);
  animation: sectionGlow 16s ease-in-out infinite alternate-reverse;
}

.services-strip .container {
  position: relative;
  z-index: 1;
}

.services-strip .section-heading {
  position: relative;
}

.services-strip .section-heading::after {
  content: "";
  display: block;
  width: min(180px, 34vw);
  height: 2px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 57, 47, 0), rgba(47, 57, 47, 0.92), rgba(220, 200, 184, 0.95), rgba(47, 57, 47, 0));
  background-size: 220% 100%;
  animation: shimmerLine 7s linear infinite;
}

.services-cards-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  perspective: 1400px;
}

.services-cards-grid::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(220, 200, 184, 0.16), transparent 40%);
  pointer-events: none;
  opacity: 0.85;
}

.service-catalog-card {
  --card-rotate-x: 0deg;
  --card-rotate-y: 0deg;
  --card-hover-y: 0px;
  --card-entry-y: 0px;
  --card-scale: 1;
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  min-height: 208px;
  padding: 26px 24px 24px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(247, 244, 238, 0.94) 55%, rgba(236, 230, 220, 0.82)),
    var(--white);
  border: 1px solid rgba(47, 57, 47, 0.08);
  box-shadow:
    0 20px 38px rgba(47, 57, 47, 0.08),
    0 8px 18px rgba(47, 57, 47, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform-style: preserve-3d;
  transform:
    perspective(1400px)
    rotateX(var(--card-rotate-x))
    rotateY(var(--card-rotate-y))
    translateY(calc(var(--card-entry-y) + var(--card-hover-y)))
    scale(var(--card-scale));
  transition:
    opacity 0.55s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  will-change: transform;
}

.services-cards-grid.is-enhanced .service-catalog-card {
  opacity: 0;
  --card-entry-y: 44px;
  --card-scale: 0.96;
}

.services-cards-grid.is-enhanced .service-catalog-card.is-visible {
  opacity: 1;
  --card-entry-y: 0px;
  --card-scale: 1;
}

.service-catalog-card::before,
.service-catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-catalog-card::before {
  inset: -45%;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.12) 44%, rgba(255, 255, 255, 0.72) 50%, rgba(220, 200, 184, 0.34) 54%, transparent 66%);
  transform: translate3d(-38%, -18%, 0) rotate(10deg);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.4s ease;
}

.service-catalog-card::after {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(220, 200, 184, 0.3), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%);
  opacity: 0.95;
}

.service-catalog-card > * {
  position: relative;
  z-index: 1;
}

.service-catalog-card:hover,
.service-catalog-card:focus-within {
  --card-hover-y: -12px;
  box-shadow:
    0 28px 54px rgba(47, 57, 47, 0.14),
    0 12px 26px rgba(47, 57, 47, 0.08);
  border-color: rgba(220, 200, 184, 0.82);
}

.service-catalog-card:hover::before,
.service-catalog-card:focus-within::before {
  transform: translate3d(30%, 8%, 0) rotate(10deg);
  opacity: 1;
}

.service-catalog-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(47, 57, 47, 0.96), rgba(70, 83, 70, 0.82));
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 14px 26px rgba(47, 57, 47, 0.16);
  transform: translateZ(26px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-catalog-card__icon::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 22px;
  border: 1px solid rgba(220, 200, 184, 0.36);
  opacity: 0.55;
  animation: iconPulse 4s ease-in-out infinite;
}

.service-catalog-card:hover .service-catalog-card__icon,
.service-catalog-card:focus-within .service-catalog-card__icon {
  transform: translateZ(34px) scale(1.06) rotate(-5deg);
  box-shadow: 0 18px 30px rgba(47, 57, 47, 0.2);
}

.service-catalog-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-catalog-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.16rem;
  line-height: 1.65;
  font-weight: 800;
  transform: translateZ(18px);
}

.service-catalog-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.85;
  transform: translateZ(14px);
}

.marquee,
.logo-marquee {
  overflow: hidden;
  padding-top: 8px;
}

.marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.logo-marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.logo-marquee__group {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
  padding-right: 18px;
}

.service-pill,
.logo-chip {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(47, 57, 47, 0.08);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.service-pill:hover,
.logo-chip:hover {
  transform: translateY(-4px);
}

.service-pill__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  color: transparent;
  background: linear-gradient(135deg, rgba(47, 57, 47, 0.08), rgba(220, 200, 184, 0.26));
}

.service-pill__icon::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-pill:nth-child(11n + 1) .service-pill__icon::before {
  content: "OP";
}

.service-pill:nth-child(11n + 2) .service-pill__icon::before {
  content: "BD";
}

.service-pill:nth-child(11n + 3) .service-pill__icon::before {
  content: "PM";
}

.service-pill:nth-child(11n + 4) .service-pill__icon::before {
  content: "GC";
}

.service-pill:nth-child(11n + 5) .service-pill__icon::before {
  content: "FC";
}

.service-pill:nth-child(11n + 6) .service-pill__icon::before {
  content: "MK";
}

.service-pill:nth-child(11n + 7) .service-pill__icon::before {
  content: "CL";
}

.service-pill:nth-child(11n + 8) .service-pill__icon::before {
  content: "HS";
}

.service-pill:nth-child(11n + 9) .service-pill__icon::before {
  content: "RM";
}

.service-pill:nth-child(11n + 10) .service-pill__icon::before {
  content: "EC";
}

.service-pill:nth-child(11n + 11) .service-pill__icon::before {
  content: "AI";
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card--wide {
  grid-column: span 2;
}

.service-card__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-card__visual--ops {
  background: linear-gradient(135deg, #2f392f, #556255);
}

.service-card__visual--growth {
  background: linear-gradient(135deg, #465346, #7a8b78);
}

.service-card__visual--projects {
  background: linear-gradient(135deg, #384338, #6e7d68);
}

.service-card__visual--contracting {
  background: linear-gradient(135deg, #4a5a49, #8d9b87);
}

.service-card__visual--hospitality {
  background: linear-gradient(135deg, #364136, #6f7d6b);
}

.service-card__visual--ai {
  background: linear-gradient(135deg, #2c352c, #5f6e5d);
}

.service-card__overlay {
  position: absolute;
  inset-inline: 22px;
  bottom: 22px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(32, 40, 32, 0.12), rgba(32, 40, 32, 0.74));
  color: var(--white);
  border: 1px solid rgba(220, 200, 184, 0.16);
  backdrop-filter: blur(16px);
}

.service-card__overlay h3,
.project-card__body h3,
.news-card__body h3,
.why-card h3 {
  margin: 0 0 10px;
  font-family: "Cairo", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.service-card__overlay p,
.project-card__body p,
.why-card p,
.news-card__body h3 {
  margin: 0;
  line-height: 1.9;
}

.cta-band__panel {
  padding: 46px 52px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(135deg, #2f392f 0%, #465346 58%, #6b7a69 100%);
  box-shadow: 0 24px 55px rgba(47, 57, 47, 0.2);
}

.cta-band__panel--motion {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(26px, 4vw, 54px);
  padding: clamp(34px, 4vw, 52px);
  min-height: 430px;
}

.cta-band__panel--motion::before,
.cta-band__panel--motion::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.cta-band__panel--motion::before {
  width: 320px;
  height: 320px;
  top: -140px;
  left: -110px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 72%);
  filter: blur(8px);
  animation: ctaHaloPulse 9s ease-in-out infinite alternate;
}

.cta-band__panel--motion::after {
  width: 260px;
  height: 260px;
  right: 12%;
  bottom: -120px;
  background: radial-gradient(circle, rgba(220, 200, 184, 0.18), transparent 72%);
  filter: blur(10px);
  animation: ctaHaloPulse 11s ease-in-out infinite alternate-reverse;
}

.cta-band__copy,
.cta-band__visual {
  position: relative;
  z-index: 1;
}

.cta-band__copy {
  max-width: 580px;
}

.cta-band__copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band__copy .btn--light {
  margin-top: 8px;
  min-width: 220px;
  box-shadow: 0 18px 34px rgba(20, 26, 21, 0.16);
}

.cta-band__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 24px;
}

.cta-band__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-band__visual {
  display: flex;
  justify-content: center;
}

.cta-graphic {
  position: relative;
  width: min(100%, 520px);
  min-height: 340px;
}

.cta-graphic__halo {
  position: absolute;
  inset: 15% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(220, 200, 184, 0.08) 42%, transparent 72%);
  filter: blur(14px);
  animation: ctaHaloPulse 8s ease-in-out infinite;
}

.cta-graphic__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
}

.cta-graphic__ring--outer {
  width: min(76%, 360px);
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  animation: ctaOrbitSpin 26s linear infinite;
}

.cta-graphic__ring--inner {
  width: min(46%, 214px);
  aspect-ratio: 1;
  border: 1px solid rgba(220, 200, 184, 0.48);
  transform: translate(-50%, -50%);
  animation: ctaOrbitSpinReverse 18s linear infinite;
}

.cta-graphic__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98), rgba(243, 236, 226, 0.94) 48%, rgba(220, 200, 184, 0.86) 49%, rgba(255, 255, 255, 0.94) 100%);
  color: var(--primary);
  box-shadow:
    inset 0 2px 14px rgba(255, 255, 255, 0.62),
    0 24px 42px rgba(20, 26, 21, 0.18);
}

.cta-graphic__core span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cta-graphic__core strong {
  font-size: 1.4rem;
  line-height: 1;
}

.cta-node {
  position: absolute;
  width: min(188px, 38%);
  padding: 14px 16px 16px;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 22px 38px rgba(20, 26, 21, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(14px);
  animation: ctaNodeFloat 5.8s ease-in-out infinite;
}

.cta-node__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(47, 57, 47, 0.08), rgba(220, 200, 184, 0.2));
  color: var(--primary);
}

.cta-node__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-node small,
.cta-node strong {
  display: block;
}

.cta-node small {
  margin-bottom: 6px;
  color: rgba(46, 55, 46, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
}

.cta-node strong {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.45;
}

.cta-node--consult {
  top: 0;
  right: 4%;
}

.cta-node--plan {
  top: 28%;
  left: 0;
  animation-delay: 0.7s;
}

.cta-node--build {
  right: 0;
  bottom: 18%;
  animation-delay: 1.1s;
}

.cta-node--launch {
  left: 8%;
  bottom: 0;
  animation-delay: 1.6s;
}

.cta-band__ticker {
  position: absolute;
  right: 21%;
  left: 28%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(34, 42, 34, 0.9);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 34px rgba(20, 26, 21, 0.16);
}

.cta-band__ticker p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.cta-band__ticker-dot {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(220, 200, 184, 0.88));
  box-shadow: 0 0 0 8px rgba(220, 200, 184, 0.12);
  animation: ctaTickerPulse 2.6s ease-in-out infinite;
}

.cta-band__panel h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  margin-bottom: 10px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.filter-tab {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--text-soft);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  --shine-duration: 9.2s;
  --shine-delay: 0.8s;
}

.filter-tab.is-active {
  background: var(--primary);
  color: var(--accent);
}

.project-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card,
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(47, 57, 47, 0.08);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.project-card.is-hidden {
  display: none;
}

.project-card:hover,
.news-card:hover {
  transform: translateY(-6px);
}

.project-card__media,
.news-card__media {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.project-card__media--one,
.news-card__media--one {
  background: linear-gradient(135deg, #163d69, #2f76ac);
}

.project-card__media--two,
.news-card__media--two {
  background: linear-gradient(135deg, #4a5a49, #a68e78);
}

.project-card__media--three,
.news-card__media--three {
  background: linear-gradient(135deg, #17385e, #4a89bf);
}

.project-card__media--four {
  background: linear-gradient(135deg, #0e375d, #33ade6);
}

.project-card__media--five {
  background: linear-gradient(135deg, #172e49, #2f6ea3);
}

.project-card__media--six {
  background: linear-gradient(135deg, #23415f, #00b4eb);
}

.project-card__body,
.news-card__body {
  padding: 24px;
}

.project-card__body span,
.news-card__body span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 57, 47, 0.07);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.project-card__body p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.project-card__body a,
.news-card__body a {
  color: var(--primary);
  font-weight: 700;
}

.region-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.map-card {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(220, 200, 184, 0.18), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f3eee5 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 57, 47, 0.08);
}

.map-svg {
  position: absolute;
  inset: 34px;
  opacity: 0.98;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 0;
  cursor: pointer;
  background: transparent;
  padding: 0;
}

.map-pin::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 8px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(220, 200, 184, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-pin span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  white-space: nowrap;
}

.map-pin:hover::before,
.map-pin.is-active::before {
  transform: scale(1.18);
  box-shadow: 0 0 0 12px rgba(220, 200, 184, 0.24);
}

.map-tooltip {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
}

.map-tooltip strong {
  font-family: "Cairo", sans-serif;
  font-size: 1.2rem;
}

.map-tooltip span,
.map-tooltip small,
.region-layout__content p,
.news-card__body small {
  color: var(--text-soft);
}

.region-layout__content h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.75rem);
  color: var(--text);
  margin-bottom: 18px;
}

.region-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.region-stats article,
.why-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(47, 57, 47, 0.08);
}

.region-stats strong,
.why-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cairo", sans-serif;
  font-size: 1.72rem;
  color: var(--primary);
  font-weight: 900;
}

.why-fyz {
  background:
    radial-gradient(circle at 20% 20%, rgba(220, 200, 184, 0.14), transparent 15%),
    linear-gradient(180deg, #263026 0%, #394639 100%);
}

.why-fyz__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.why-card strong,
.why-card h3 {
  color: var(--white);
}

.why-card p {
  color: rgba(255, 255, 255, 0.72);
}

.logo-marquee__track {
  animation-duration: 34s;
}

.logo-chip {
  min-width: 210px;
  justify-content: center;
  min-height: 100px;
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.9);
}

.logo-chip img {
  width: 100%;
  max-width: 150px;
  height: 56px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.logo-chip:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

.testimonials__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.testimonial-slider {
  position: relative;
  padding: 44px 34px 30px;
  min-height: 360px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(47, 57, 47, 0.08);
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
}

.testimonial-slide p {
  margin: 0 0 26px;
  font-family: "Cairo", sans-serif;
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  line-height: 1.6;
  color: var(--text);
}

.testimonial-slide strong {
  color: var(--text-soft);
}

.slider-arrow {
  position: absolute;
  top: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(47, 57, 47, 0.08);
  color: var(--primary);
  cursor: pointer;
  --shine-duration: 6.6s;
  --shine-delay: 1.1s;
}

.slider-arrow--prev {
  right: 88px;
}

.slider-arrow--next {
  right: 28px;
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(47, 57, 47, 0.18);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--accent);
}

.contact {
  padding-top: 40px;
}

.contact__panel {
  padding: 44px 48px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(47, 57, 47, 0.98), rgba(70, 83, 70, 0.96)),
    var(--primary);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.contact__panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  margin-bottom: 12px;
}

.site-footer {
  background: #2f392f;
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px 32px;
  align-items: start;
}

.site-footer__brand,
.site-footer__column {
  min-width: 0;
}

.site-footer__logo {
  width: 110px;
  display: inline-flex;
  margin-bottom: 22px;
}

.site-footer__brand p,
.site-footer__note,
.site-footer__contact-list a,
.site-footer__bottom p,
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__brand p,
.site-footer__note {
  margin: 0;
  font-size: 1rem;
  line-height: 1.95;
}

.site-footer__column h3 {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 1.9rem;
  font-weight: 800;
}

.site-footer__links,
.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer__links a,
.site-footer__contact-list a,
.site-footer__legal a,
.site-footer__social a {
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 1.05rem;
}

.site-footer__links a::after {
  content: "‹";
  font-size: 1.2rem;
  line-height: 1;
}

.site-footer__contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 1.05rem;
  line-height: 1.8;
}

.site-footer__contact-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.site-footer__note {
  margin-bottom: 22px;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.76);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.site-footer__social svg {
  width: 20px;
  height: 20px;
}

.site-footer__bottom {
  margin-top: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__contact-list a:hover,
.site-footer__contact-list a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--accent);
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: var(--primary);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.main-nav a.is-current {
  color: var(--accent);
}

.about-page {
  padding-bottom: 110px;
}

.about-page-body {
  background:
    radial-gradient(circle at top, rgba(220, 200, 184, 0.18), transparent 24%),
    linear-gradient(180deg, #fcfbf7 0%, var(--neutral) 100%);
}

.about-hero {
  padding: 0 0 42px;
}

.about-hero__banner {
  position: relative;
  min-height: clamp(320px, 38vw, 420px);
  background:
    linear-gradient(135deg, rgba(47, 57, 47, 0.92), rgba(70, 83, 70, 0.82)),
    radial-gradient(circle at top right, rgba(220, 200, 184, 0.35), transparent 20%);
  overflow: hidden;
}

.about-hero__banner::before,
.about-hero__banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-hero__banner::before {
  width: 360px;
  height: 360px;
  top: -110px;
  left: -70px;
  background: rgba(220, 200, 184, 0.1);
}

.about-hero__banner::after {
  width: 280px;
  height: 280px;
  right: 9%;
  bottom: -120px;
  background: rgba(255, 255, 255, 0.06);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 34px;
  padding-bottom: 44px;
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.about-breadcrumb strong {
  color: var(--white);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.about-hero__copy {
  color: var(--white);
}

.about-hero__copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
}

.about-hero__copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 2;
}

.about-hero__visual {
  display: flex;
  justify-content: flex-end;
}

.about-hero__scene {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-hero__card {
  min-height: 132px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 24px 44px rgba(20, 25, 20, 0.18);
}

.about-hero__card span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.about-hero__card strong {
  font-size: 1.18rem;
  line-height: 1.5;
}

.about-hero__card--large {
  grid-column: span 2;
  min-height: 156px;
  background:
    linear-gradient(135deg, rgba(220, 200, 184, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.about-hero__card--accent {
  background:
    linear-gradient(135deg, rgba(220, 200, 184, 0.26), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
}

.about-tabs-shell {
  position: relative;
  z-index: 2;
  margin-top: -32px;
}

.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 57, 47, 0.08);
  box-shadow: var(--shadow);
}

.about-tab {
  border: 0;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  --shine-duration: 8.6s;
  --shine-delay: 2.2s;
}

.about-tab:hover,
.about-tab:focus-visible {
  transform: translateY(-2px);
  background: rgba(220, 200, 184, 0.22);
}

.about-tab.is-active {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(47, 57, 47, 0.16);
}

.about-tabs-content {
  margin-top: 26px;
}

.about-panel {
  display: none;
  padding: 42px;
}

.about-panel.is-active {
  display: block;
  animation: panelFade 0.32s ease;
}

.about-panel__header {
  margin-bottom: 30px;
}

.about-panel__header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.2;
  color: var(--text);
}

.about-panel__lead {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--text-soft);
  line-height: 1.9;
}

.about-overview__intro,
.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
}

.about-copy-card,
.about-side-card,
.experience-copy-card,
.experience-highlight {
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.7), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(47, 57, 47, 0.08);
}

.about-copy-card h3,
.about-side-card h3,
.experience-highlight h3,
.locations-section__header h3 {
  margin: 0 0 12px;
  font-size: 1.38rem;
  color: var(--secondary);
}

.about-copy-card p,
.about-side-card p,
.experience-copy-card p,
.experience-highlight p,
.locations-section__header p {
  margin: 0;
  line-height: 1.9;
  color: var(--text-soft);
}

.about-copy-card p + p {
  margin-top: 14px;
}

.about-side-stack {
  display: grid;
  gap: 20px;
}

.value-grid,
.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.value-card,
.sustainability-card,
.location-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(47, 57, 47, 0.08);
  box-shadow: var(--shadow-soft);
}

.value-card strong,
.sustainability-card h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 1.12rem;
}

.value-card p,
.sustainability-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.about-stats-band,
.experience-stats {
  margin-top: 30px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(47, 57, 47, 0.98), rgba(70, 83, 70, 0.95)),
    var(--primary);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  color: var(--white);
}

.about-stat,
.experience-stats article {
  padding: 18px 12px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat strong,
.experience-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
}

.about-stat span,
.experience-stats span {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82);
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.leader-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(47, 57, 47, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.leader-card__portrait {
  position: relative;
  min-height: 260px;
  background:
    radial-gradient(circle at center 28%, rgba(220, 200, 184, 0.6) 0 16%, transparent 17%),
    radial-gradient(circle at center 68%, rgba(220, 200, 184, 0.48) 0 24%, transparent 25%),
    linear-gradient(180deg, #7d897d 0%, #465346 100%);
}

.leader-card__portrait::before {
  content: "";
  position: absolute;
  inset: auto 18% 18px;
  height: 82px;
  border-radius: 999px 999px 24px 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.leader-card__portrait span {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(24, 30, 24, 0.56);
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.leader-card__portrait--ops {
  background:
    radial-gradient(circle at center 28%, rgba(220, 200, 184, 0.6) 0 16%, transparent 17%),
    radial-gradient(circle at center 68%, rgba(220, 200, 184, 0.48) 0 24%, transparent 25%),
    linear-gradient(180deg, #6f7f73 0%, #344134 100%);
}

.leader-card__portrait--growth {
  background:
    radial-gradient(circle at center 28%, rgba(220, 200, 184, 0.6) 0 16%, transparent 17%),
    radial-gradient(circle at center 68%, rgba(220, 200, 184, 0.48) 0 24%, transparent 25%),
    linear-gradient(180deg, #7f756a 0%, #465346 100%);
}

.leader-card__portrait--projects {
  background:
    radial-gradient(circle at center 28%, rgba(220, 200, 184, 0.6) 0 16%, transparent 17%),
    radial-gradient(circle at center 68%, rgba(220, 200, 184, 0.48) 0 24%, transparent 25%),
    linear-gradient(180deg, #78827f 0%, #374237 100%);
}

.leader-card__portrait--marketing {
  background:
    radial-gradient(circle at center 28%, rgba(220, 200, 184, 0.6) 0 16%, transparent 17%),
    radial-gradient(circle at center 68%, rgba(220, 200, 184, 0.48) 0 24%, transparent 25%),
    linear-gradient(180deg, #7d7269 0%, #334033 100%);
}

.leader-card__portrait--tech {
  background:
    radial-gradient(circle at center 28%, rgba(220, 200, 184, 0.6) 0 16%, transparent 17%),
    radial-gradient(circle at center 68%, rgba(220, 200, 184, 0.48) 0 24%, transparent 25%),
    linear-gradient(180deg, #67786f 0%, #2d372d 100%);
}

.leader-card__body {
  padding: 22px 22px 24px;
}

.leader-card__body strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.12rem;
}

.leader-card__body p {
  margin: 0;
  color: var(--text-soft);
}

.timeline {
  position: relative;
  padding: 12px 0;
  direction: ltr;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(220, 200, 184, 0.3), rgba(47, 57, 47, 0.32));
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 34px 34px;
}

.timeline-item:nth-child(odd) {
  margin-left: auto;
}

.timeline-item:nth-child(even) {
  margin-right: auto;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(220, 200, 184, 0.25);
  transform: translateX(-50%);
}

.timeline-item:nth-child(odd)::before {
  left: auto;
  right: 0;
  transform: translateX(50%);
}

.timeline-card {
  padding: 24px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid rgba(47, 57, 47, 0.08);
  box-shadow: var(--shadow-soft);
  direction: rtl;
  text-align: right;
}

.timeline-card__year {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(220, 200, 184, 0.26);
  color: var(--secondary);
  font-weight: 800;
}

.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  color: var(--text);
}

.timeline-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.timeline-card__thumb {
  margin-top: 18px;
  height: 120px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(220, 200, 184, 0.35), rgba(70, 83, 70, 0.18)),
    rgba(247, 244, 238, 0.8);
}

.timeline-card__thumb--growth {
  background:
    linear-gradient(135deg, rgba(220, 200, 184, 0.32), rgba(47, 57, 47, 0.14)),
    rgba(255, 255, 255, 0.94);
}

.timeline-card__thumb--hospitality {
  background:
    linear-gradient(135deg, rgba(47, 57, 47, 0.18), rgba(220, 200, 184, 0.28)),
    rgba(255, 255, 255, 0.96);
}

.timeline-card__thumb--digital {
  background:
    linear-gradient(135deg, rgba(70, 83, 70, 0.25), rgba(220, 200, 184, 0.22)),
    rgba(255, 255, 255, 0.96);
}

.timeline-card__thumb--network {
  background:
    linear-gradient(135deg, rgba(220, 200, 184, 0.24), rgba(47, 57, 47, 0.18)),
    rgba(255, 255, 255, 0.96);
}

.timeline-card__thumb--ai {
  background:
    linear-gradient(135deg, rgba(47, 57, 47, 0.22), rgba(220, 200, 184, 0.24)),
    rgba(255, 255, 255, 0.96);
}

.history-panel.is-active .timeline-item {
  animation: timelineRise 0.5s ease both;
}

.history-panel.is-active .timeline-item:nth-child(2) {
  animation-delay: 0.05s;
}

.history-panel.is-active .timeline-item:nth-child(3) {
  animation-delay: 0.1s;
}

.history-panel.is-active .timeline-item:nth-child(4) {
  animation-delay: 0.15s;
}

.history-panel.is-active .timeline-item:nth-child(5) {
  animation-delay: 0.2s;
}

.history-panel.is-active .timeline-item:nth-child(6) {
  animation-delay: 0.25s;
}

.sustainability-card {
  position: relative;
  overflow: hidden;
}

.sustainability-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(47, 57, 47, 0.92), rgba(70, 83, 70, 0.85));
  color: var(--white);
}

.sustainability-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.experience-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.experience-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(220, 200, 184, 0.18);
  color: var(--secondary);
  font-weight: 700;
}

.locations-section {
  margin-top: 34px;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.72), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(47, 57, 47, 0.08);
}

.locations-section__header {
  margin-bottom: 24px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.location-card {
  text-align: center;
  color: var(--secondary);
  font-weight: 800;
  min-height: 92px;
  display: grid;
  place-items: center;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes timelineRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(-18px, 14px, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

@keyframes pillSweep {
  0% {
    transform: translateX(120%);
  }
  55% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(-120%);
  }
}

@keyframes stageSweep {
  0% {
    background-position: 220% 0, 0 0, 0 0;
  }
  100% {
    background-position: -20% 0, 0 0, 0 0;
  }
}

@keyframes auraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  100% {
    transform: translate3d(36px, 22px, 0) scale(1.08);
  }
}

@keyframes orbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes beamPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-50%) scaleY(0.94);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scaleY(1.05);
  }
}

@keyframes gearSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes sparkFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0.45;
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.18);
    opacity: 1;
  }
}

@keyframes controlPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

@keyframes scanLine {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(56%);
  }
  18% {
    opacity: 0.82;
  }
  55% {
    opacity: 0.64;
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(-56%);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes signalWave {
  0%,
  100% {
    transform: scaleY(0.68);
    opacity: 0.76;
  }
  50% {
    transform: scaleY(1.1);
    opacity: 1;
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(47, 57, 47, 0.12);
  }
  50% {
    box-shadow: 0 20px 34px rgba(47, 57, 47, 0.18), 0 0 0 8px rgba(255, 255, 255, 0.18);
  }
}

@keyframes ctaHaloPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes ctaOrbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ctaOrbitSpinReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes ctaNodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ctaTickerPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.76;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes shimmerLine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes sectionGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96);
  }
  100% {
    transform: translate3d(0, 18px, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-band__panel--motion::before,
  .cta-band__panel--motion::after,
  .cta-graphic__halo,
  .cta-graphic__ring,
  .cta-node,
  .cta-band__ticker-dot,
  .services-stage::after,
  .services-stage__aura,
  .feature-list--services span::after,
  .services-motion__beam,
  .services-motion__spark,
  .services-motion__grid::before,
  .services-motion__grid::after,
  .services-motion__orbit,
  .services-motion__gear::before,
  .visual-panel--services.is-visible .service-node,
  .services-motion__bars span,
  .services-motion__cta,
  .services-strip::before,
  .services-strip::after,
  .services-strip .section-heading::after,
  .service-catalog-card,
  .service-catalog-card__icon::before {
    animation: none;
  }

  .services-cards-grid.is-enhanced .service-catalog-card {
    opacity: 1;
    --card-entry-y: 0px;
    --card-scale: 1;
  }

  .service-catalog-card {
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    transform: none;
  }

  .service-node,
  .services-motion__ticker,
  .services-motion__cta {
    transition: opacity 0.25s ease;
    transform: none;
  }

  .visual-panel--services.is-visible .service-node,
  .visual-panel--services.is-visible .services-motion__ticker,
  .visual-panel--services.is-visible .services-motion__cta {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: 82px 24px auto;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .split-layout,
  .region-layout,
  .testimonials__layout,
  .contact__panel,
  .about-hero__grid,
  .about-overview__intro,
  .experience-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .cards-grid,
  .project-grid,
  .news-grid,
  .why-fyz__grid,
  .value-grid,
  .sustainability-grid,
  .management-grid,
  .location-grid,
  .services-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero__visual {
    justify-content: stretch;
  }

  .about-hero__scene {
    width: 100%;
  }

  .cta-band__panel--motion {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
  }

  .cta-band__copy {
    max-width: none;
  }

  .cta-band__copy p {
    max-width: none;
  }

  .cta-band__visual {
    width: 100%;
  }

  .cta-graphic {
    width: min(100%, 560px);
    min-height: 360px;
  }

  .about-tabs {
    gap: 10px;
  }

  .about-panel {
    padding: 34px 28px;
  }

  .about-stats-band,
  .experience-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline::before {
    left: 18px;
    transform: none;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 26px 46px;
  }

  .timeline-item::before,
  .timeline-item:nth-child(odd)::before {
    left: 18px;
    right: auto;
    transform: translateX(-50%);
  }

  .about-showcase {
    padding: 30px 26px 12px;
  }

  .about-showcase__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-showcase__divider {
    width: 100%;
    min-height: 1px;
  }

  .about-showcase__copy {
    max-width: none;
  }

  .services-stage {
    padding: 0;
  }

  .split-layout--services {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "body";
    gap: 20px;
    direction: rtl;
  }

  .services-copy--body {
    max-width: none;
  }

  .services-copy--body {
    padding: 20px;
  }

  .visual-panel--services {
    min-height: auto;
  }

  .services-motion {
    min-height: clamp(340px, 52vw, 420px);
    max-width: 700px;
  }

  .service-node {
    width: min(188px, 34vw);
  }

  .service-node--projects {
    left: 4%;
  }

  .service-node--commerce {
    left: 10%;
  }

  .services-motion__ticker {
    left: 32%;
    right: 15%;
  }

  .services-motion__cta {
    left: 9%;
  }

  .service-card--wide {
    grid-column: span 1;
  }

  .cta-band__panel:not(.cta-band__panel--motion),
  .contact__panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .section {
    padding: 82px 0;
  }

  .services-showcase {
    padding: 72px 0;
  }

  .hero {
    min-height: 320px;
  }

  .cards-grid,
  .project-grid,
  .news-grid,
  .why-fyz__grid,
  .region-stats,
  .about-metrics,
  .value-grid,
  .sustainability-grid,
  .management-grid,
  .location-grid,
  .experience-list,
  .services-cards-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy h1,
  .section-heading h2,
  .split-layout__content h2,
  .cta-band__panel h2,
  .region-layout__content h2,
  .contact__panel h2,
  .about-panel__header h2 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .service-card,
  .map-card,
  .testimonial-slider,
  .visual-panel {
    min-height: auto;
  }

  .visual-panel {
    min-height: 420px;
  }

  .split-layout--services {
    grid-template-areas:
      "visual"
      "body";
    gap: 18px;
  }

  .services-stage {
    padding: 0;
    min-height: auto;
  }

  .services-copy--body {
    padding: 18px 16px 20px;
    border-radius: 20px;
  }

  .cta-band__chips {
    gap: 10px;
    margin: 20px 0 22px;
  }

  .cta-band__chips span {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.88rem;
  }

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

  .cta-band__copy .btn--light {
    width: 100%;
    justify-content: center;
  }

  .visual-panel--services {
    min-height: auto;
  }

  .cta-band__panel--motion {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .cta-graphic {
    min-height: 320px;
  }

  .cta-graphic__ring--outer {
    width: min(78%, 290px);
  }

  .cta-graphic__ring--inner {
    width: min(48%, 176px);
  }

  .cta-graphic__core {
    width: 126px;
    height: 126px;
  }

  .cta-graphic__core strong {
    font-size: 1.18rem;
  }

  .cta-node {
    width: min(150px, 43%);
    padding: 10px 12px 12px;
    border-radius: 18px;
  }

  .cta-node__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .cta-node__icon svg {
    width: 19px;
    height: 19px;
  }

  .cta-node small {
    font-size: 0.68rem;
  }

  .cta-node strong {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .cta-band__ticker {
    right: 8%;
    left: 26%;
    bottom: 4%;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .cta-band__ticker p {
    font-size: 0.74rem;
  }

  .services-motion {
    min-height: 0;
    aspect-ratio: 1.45 / 1;
  }

  .services-motion__grid {
    inset: 0;
  }

  .services-motion__orbit--outer {
    width: min(72%, 280px);
  }

  .services-motion__orbit--inner {
    width: min(42%, 170px);
  }

  .services-motion__gear--primary {
    width: 142px;
    height: 142px;
  }

  .services-motion__gear--secondary {
    width: 88px;
    height: 88px;
    top: 16%;
    left: 10%;
  }

  .service-node {
    width: min(138px, 42vw);
    padding: 9px 11px;
    border-radius: 16px;
  }

  .service-node span {
    font-size: 0.72rem;
  }

  .service-node strong {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .service-node--ops {
    top: 6%;
    right: 0;
  }

  .service-node--projects {
    top: 32%;
    left: 0;
  }

  .service-node--hospitality {
    right: 0;
    bottom: 22%;
  }

  .service-node--commerce {
    left: 4%;
    bottom: 17%;
  }

  .services-motion__ticker {
    right: 6%;
    left: 28%;
    bottom: 1%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .services-motion__ticker p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .services-motion__cta {
    left: 2%;
    bottom: 1%;
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .topbar__inner {
    min-height: 74px;
  }

  .map-pin span {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .testimonial-slider {
    padding-top: 82px;
  }

  .slider-arrow--prev {
    right: 82px;
  }

  .about-showcase {
    padding-inline: 18px;
  }

  .about-showcase__bottom h3 {
    line-height: 1.6;
  }

  .service-catalog-card {
    min-height: 142px;
    padding: 20px 18px;
    border-radius: 22px;
  }

  .service-catalog-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .service-catalog-card__icon svg {
    width: 24px;
    height: 24px;
  }

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

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

  .about-page {
    padding-bottom: 82px;
  }

  .about-hero__content {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .about-breadcrumb {
    margin-bottom: 24px;
    font-size: 0.86rem;
  }

  .about-hero__copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .about-hero__copy p {
    font-size: 0.98rem;
  }

  .about-hero__scene {
    grid-template-columns: 1fr;
  }

  .about-hero__card--large {
    grid-column: span 1;
  }

  .about-tabs-shell {
    margin-top: -22px;
  }

  .about-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px;
    border-radius: 22px;
    scrollbar-width: none;
  }

  .about-tabs::-webkit-scrollbar {
    display: none;
  }

  .about-tab {
    flex: 0 0 auto;
    min-height: 46px;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .about-panel {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .about-copy-card,
  .about-side-card,
  .experience-copy-card,
  .experience-highlight,
  .locations-section {
    padding: 22px 18px;
  }

  .about-stats-band,
  .experience-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    padding-left: 32px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-item::before,
  .timeline-item:nth-child(odd)::before {
    left: 12px;
    width: 12px;
    height: 12px;
  }

  .site-footer {
    padding-top: 34px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .logo-chip {
    min-width: 170px;
    min-height: 82px;
    padding: 16px 20px;
  }

  .logo-chip img {
    max-width: 120px;
    height: 42px;
  }

  .logo-marquee--about .logo-chip {
    width: 136px;
    min-width: 136px;
    height: 136px;
    min-height: 136px;
    padding: 16px;
  }

  .logo-marquee--about .logo-chip img {
    max-width: 92px;
    height: 72px;
  }

  .site-footer__column h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .site-footer__social a {
    width: 42px;
    height: 42px;
  }

  .site-footer__legal {
    gap: 16px;
  }
}
