:root {
  --blue: #0a4f9e;
  --navy: #062b52;
  --yellow: #ffd200;
  --yellow-d: #e6bd00;
  --ylt: #fff7d1;
  --ink: #13233b;
  --body: #44515f;
  --paper: #ffffff;
  --soft: #f3f6fb;
  --soft2: #e9eff6;
  --line: #dde3ec;
  --radius: 12px;
  --maxw: 1320px;
  --sans: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--soft);
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
/* framed layout */
.frame {
  width: 90%;
  max-width: 1660px;
  margin: 0 auto;
  background: var(--paper);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  overflow-x: clip;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}
.eyebrow {
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.eyebrow.light {
  color: var(--yellow);
}
.eyebrow.light::before {
  background: var(--yellow);
}
.eyebrow.navy {
  color: var(--navy);
}
.eyebrow.navy::before {
  background: var(--navy);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  transition: 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
}
.btn-yellow:hover {
  background: var(--yellow-d);
}
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}
.btn-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}
.btn-light:hover {
  background: #fff;
  color: var(--blue);
}
.link-arrow {
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
  white-space: nowrap;
}
.link-arrow svg {
  width: 15px;
  height: 15px;
  transition: 0.2s;
}
.link-arrow:hover svg {
  transform: translateX(5px);
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--yellow);
  z-index: 300;
}
/* utility bar */
.util {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}
.util .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}
.util .tag {
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.util .ulinks {
  display: flex;
  align-items: center;
  gap: 22px;
}
.util .ulinks a {
  transition: 0.2s;
  white-space: nowrap;
}
.util .ulinks a:hover {
  color: #fff;
}
.langsw {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 3px;
}
.langsw button {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 999px;
  transition: 0.2s;
}
.langsw button:hover {
  color: #fff;
}
.langsw button.active {
  background: var(--yellow);
  color: var(--navy);
}
/* header */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: 0.25s;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: 0.25s;
}
header.scrolled {
  box-shadow: 0 12px 30px -22px rgba(0, 0, 0, 0.4);
}
header.scrolled .nav {
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--blue);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.brand .mk {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  flex: none;
}
.brand .mk::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: var(--yellow);
}
.brand .logo-img {
  height: 40px;
  width: auto;
  display: block;
}
#hd.small .brand .logo-img {
  height: 34px;
}
.fgrid .brand .logo-img {
  height: 36px;
  filter: brightness(0) invert(1);
}
.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: 0.2s;
  white-space: nowrap;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: 0.25s;
}
.menu a:hover {
  color: var(--blue);
}
.menu a:hover::after {
  width: 100%;
}
.navcta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
}
.burger svg {
  width: 26px;
  height: 26px;
}
/* hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hslide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.14);
  transition: opacity 1.1s ease;
}
.hslide.active {
  opacity: 1;
  animation: kenburns 9s ease forwards;
}
@keyframes kenburns {
  from {
    transform: scale(1.14);
  }
  to {
    transform: scale(1);
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 24, 52, 0.92),
    rgba(6, 24, 52, 0.6) 55%,
    rgba(6, 24, 52, 0.3)
  );
  z-index: 1;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding: 90px 40px 210px;
}
.hero-c {
  max-width: 800px;
  text-align: left;
  margin-right: auto;
}
[dir="rtl"] .hero-c {
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}
[dir="rtl"] .hero .acts {
  justify-content: flex-end;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  color: #fff;
  font-weight: 800;
  margin: 24px 0 0;
}
.hero h1 .hl {
  color: var(--yellow);
}
.hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 610px;
  margin: 26px 0 0;
  line-height: 1.6;
  font-weight: 500;
}
.hero .acts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 62px;
}
.hero-anim {
  opacity: 0;
  transform: translateY(26px);
  animation: heroIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-anim.a1 {
  animation-delay: 0.1s;
}
.hero-anim.a2 {
  animation-delay: 0.25s;
}
.hero-anim.a3 {
  animation-delay: 0.4s;
}
.hero-anim.a4 {
  animation-delay: 0.6s;
}
@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(6, 24, 52, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}
.hero-ribbon .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 40px;
}
.hit {
  position: relative;
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: none;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  text-align: left;
  cursor: pointer;
  color: #fff;
  font-family: inherit;
  transition: background 0.3s;
  overflow: hidden;
}
.hit:last-child {
  border-right: 0;
}
.hit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.hit:hover {
  background: rgba(255, 255, 255, 0.07);
}
.hit.active {
  background: rgba(255, 255, 255, 0.1);
}
.hit.active::before {
  transform: scaleX(1);
}
.hit .n {
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
  white-space: nowrap;
}
.hit .l {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.74);
  margin-top: 6px;
  display: block;
  white-space: nowrap;
  font-weight: 600;
}
.hit .plus {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: 0.3s;
}
.hit .plus svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}
.hit.active .plus {
  opacity: 1;
}
/* sections */
section.blk {
  padding: 112px 0;
}
.shead {
  max-width: 730px;
  margin: 0 auto 64px;
  text-align: center;
}
.shead .eyebrow {
  justify-content: center;
}
.shead h2 {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-top: 18px;
}
.shead p {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--body);
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.split h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 18px 0 0;
}
.split p {
  margin-top: 18px;
}
.split .fimg {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.split .fimg img {
  width: 100%;
  aspect-ratio: 4/3.2;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.split .fimg:hover img {
  transform: scale(1.05);
}
.split .fimg .cap {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  padding: 12px 18px;
  border-top-right-radius: 12px;
}
.split .fimg .cap::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 3px;
  background: var(--yellow);
  margin-right: 8px;
  vertical-align: middle;
}
.flist {
  margin-top: 26px;
  display: grid;
  gap: 0;
}
.flist .row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  transition: transform 0.25s ease;
}
.flist .row:last-child {
  border-bottom: 1px solid var(--line);
}
.flist .row:hover {
  transform: translateX(6px);
}
.flist .k {
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 800;
  min-width: 48px;
}
.flist .t b {
  color: var(--ink);
  font-weight: 800;
}
.band {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: var(--yellow);
  opacity: 0.12;
  border-radius: 50%;
}
.band .wrap {
  padding: 86px 40px;
  position: relative;
  z-index: 1;
}
.statg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 48px;
}
.statg .s {
  border-left: 3px solid var(--yellow);
  padding-left: 22px;
}
.statg .n {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.statg .n .u {
  font-size: 1.3rem;
  color: var(--yellow);
}
.statg .l {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  margin-top: 10px;
  font-weight: 600;
}
.hsec {
  background: var(--soft);
}
.hscroll {
  position: relative;
}
.hsticky {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.htrack {
  display: flex;
  gap: 28px;
  padding: 8px 40px 48px;
  width: max-content;
}
.hpanel {
  position: relative;
  flex: 0 0 min(86%, 1040px);
  height: 72vh;
  min-height: 500px;
  overflow: hidden;
  border-radius: 22px;
  scroll-snap-align: center;
  background: #0b0b0d;
  box-shadow: 0 34px 70px -34px rgba(6, 43, 82, 0.6);
}
.hpanel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s ease;
}
.hpanel:hover img {
  transform: scale(1.12);
}
.hpanel .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      105deg,
      rgba(6, 24, 52, 0.6),
      rgba(6, 24, 52, 0) 48%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(6, 24, 52, 0.92));
}
.hpanel .ct {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px;
  color: #fff;
}
.hpanel .num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--yellow);
}
.hpanel h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  margin: 14px 0 0;
  max-width: 560px;
}
.hpanel .rule {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin: 18px 0;
  border-radius: 2px;
}
.hpanel p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 460px;
  font-size: 1rem;
  font-weight: 500;
}
.hpanel.intro {
  background: #fff;
  display: flex;
  align-items: center;
}
.hpanel.intro .inr {
  padding: 56px;
}
.hpanel.intro h3 {
  color: var(--ink);
}
.hpanel.intro p {
  color: var(--body);
}
.hscroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--body);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  padding: 0 0 6px;
}
.hscroll-hint svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  animation: nudge 1.6s ease-in-out infinite;
}
@keyframes nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}
.hscroll.pin .hsticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  scroll-snap-type: none;
}
.hscroll.pin .htrack {
  will-change: transform;
}
.hscroll.pin .hpanel {
  height: 80vh;
  min-height: 540px;
}
/* activites enhancements */
.hbar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  height: 4px;
  width: min(86%, 1040px);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  z-index: 6;
  overflow: hidden;
}
.hbar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--yellow);
  border-radius: 999px;
}
@media (max-width: 768px) {
  .hbar {
    display: none;
  }
}
/* nos implantations */
.impl {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eaf0f8 100%);
  color: var(--ink);
}
.impl .implbg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.impl .implbg .land {
  fill: #d4dfef;
  stroke: rgba(10, 79, 158, 0.1);
  stroke-width: 0.6;
  stroke-linejoin: round;
}
.impl .arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.impl .arc {
  fill: none;
  stroke: rgba(10, 79, 158, 0.16);
  stroke-width: 1.4;
  stroke-dasharray: 4 8;
  opacity: 0.7;
  transition: stroke 0.35s, opacity 0.35s;
}
.impl .arc.on {
  stroke: var(--yellow-d);
  opacity: 1;
  animation: dash 18s linear infinite;
}
@keyframes dash {
  to {
    stroke-dashoffset: -240;
  }
}
.impl .pts {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.node .dot {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #9db4d2;
  box-shadow: 0 0 0 5px rgba(157, 180, 210, 0.22);
  transition: 0.2s;
}
.node--hub .dot {
  width: 16px;
  height: 16px;
}
.node:hover .dot {
  transform: scale(1.18);
}
.node.active .dot {
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 210, 0, 0.28);
}
.node .dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.node.active .dot::after {
  border: 2px solid var(--yellow);
  opacity: 0.7;
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
.node .lbl {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--blue);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}
.node.active .lbl,
.node:hover .lbl {
  opacity: 1;
}
.impl .wrap {
  position: relative;
  z-index: 3;
  padding: 106px 40px;
  text-align: center;
}
.impl .ihead {
  max-width: 900px;
  margin: 0 auto;
}
.impl h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin: 14px 0 0;
}
.impl .itext {
  max-width: 900px;
  margin: 22px auto 0;
}
.impl .itext p {
  color: var(--body);
  margin-top: 14px;
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.74;
}
.implpills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 34px auto 0;
}
.implpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: 0.2s;
}
.implpill:hover {
  border-color: var(--blue);
}
.implpill .pdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4d0e2;
  transition: 0.2s;
}
.implpill.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.implpill.active .pdot {
  background: var(--yellow);
}
.impl-card {
  max-width: 560px;
  margin: 26px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: 14px;
  padding: 18px 24px;
  min-height: 84px;
  text-align: left;
  box-shadow: 0 22px 44px -30px rgba(6, 43, 82, 0.4);
}
[dir="rtl"] .impl-card {
  text-align: right;
  border-left: 1px solid var(--line);
  border-right: 3px solid var(--yellow);
}
.impl-card h4 {
  color: var(--blue);
  font-size: 1.08rem;
}
.impl-card p {
  color: var(--body);
  margin-top: 6px;
  font-weight: 500;
  font-size: 0.96rem;
}
.impl-card.flash {
  animation: cardflash 0.5s ease;
}
@keyframes cardflash {
  0% {
    opacity: 0.15;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.impl .iactions {
  margin-top: 30px;
}
@media (max-width: 880px) {
  .impl .wrap {
    padding: 74px 22px;
  }
  .impl .pts,
  .impl .arcs {
    display: none;
  }
}
.values {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.values::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 40px solid rgba(10, 79, 158, 0.12);
  border-radius: 50%;
}
.values .wrap {
  padding: 106px 40px;
  position: relative;
  z-index: 1;
}
.values .vhead {
  max-width: 680px;
  margin-bottom: 54px;
}
.values h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-top: 18px;
}
.values .vsub {
  color: #2c3f57;
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 560px;
  font-weight: 600;
}
.vgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.vcard {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  border-bottom: 4px solid var(--blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -28px rgba(6, 43, 82, 0.5);
}
.vico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ylt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  transition: 0.3s;
}
.vcard:hover .vico {
  background: var(--blue);
  color: #fff;
}
.vico svg {
  width: 28px;
  height: 28px;
}
.vcard h4 {
  color: var(--navy);
  font-size: 1.28rem;
}
.vcard p {
  font-size: 0.93rem;
  margin-top: 8px;
}
.marquee {
  background: var(--blue);
  overflow: hidden;
  white-space: nowrap;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}
.mtrack {
  display: inline-flex;
  align-items: center;
  padding: 20px 0;
  animation: scrollx 32s linear infinite;
}
.marquee:hover .mtrack {
  animation-play-state: paused;
}
.mtrack span.w {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  padding: 0 26px;
  white-space: nowrap;
}
.mtrack .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
}
@keyframes scrollx {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.brand-c {
  position: relative;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
  background: #fff;
  overflow: hidden;
}
.brand-c:nth-child(3n) {
  border-right: 0;
}
.brand-c:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.brand-c::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.brand-c:hover {
  background: var(--soft);
}
.brand-c:hover::before {
  transform: scaleY(1);
}
.brand-ic {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: 0.3s;
}
.brand-c:hover .brand-ic {
  background: var(--blue);
  color: #fff;
}
.brand-ic svg {
  width: 30px;
  height: 30px;
}
.brand-c .br {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 20px;
}
.brand-c h4 {
  font-size: 1.3rem;
  margin: 6px 0 8px;
}
.brand-c p {
  font-size: 0.92rem;
}
.csr {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.csr-bg {
  position: absolute;
  inset: 0;
}
.csr-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.csr::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 24, 52, 0.95),
    rgba(6, 24, 52, 0.78)
  );
}
.csr .wrap {
  position: relative;
  z-index: 2;
  padding: 106px 40px;
}
.csr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.csr h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-top: 18px;
}
.csr p {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 18px;
  font-weight: 500;
}
.csr .cgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
}
.csr .ci {
  background: var(--blue);
  padding: 30px;
  transition: 0.3s;
}
.csr .ci:hover {
  background: var(--navy);
}
.csr .ci .n {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
}
.csr .ci .l {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
  font-weight: 600;
}
.news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ncard {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ncard:hover {
  box-shadow: 0 22px 46px -26px rgba(6, 43, 82, 0.4);
  transform: translateY(-5px);
}
.ncard .ph {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.ncard .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.ncard:hover .ph img {
  transform: scale(1.06);
}
.ncard .ph::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--yellow);
  transition: 0.4s;
}
.ncard:hover .ph::after {
  width: 100%;
}
.ncard .bd {
  padding: 26px;
}
.ncard .meta {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 800;
}
.ncard h4 {
  font-size: 1.2rem;
  margin: 10px 0 0;
  line-height: 1.3;
}
.ncard p {
  font-size: 0.92rem;
  margin-top: 10px;
}
.careers {
  background: var(--soft2);
}
.careers .wrap {
  padding: 86px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.careers h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  max-width: 560px;
}
.careers p {
  margin-top: 14px;
  max-width: 520px;
}
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.62);
}
footer .wrap {
  padding: 74px 40px 32px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.fgrid .brand {
  color: #fff;
  font-size: 1.5rem;
}
.fgrid .brand .mk {
  background: #fff;
  color: var(--blue);
}
.fabout {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
  margin-top: 16px;
  font-weight: 500;
}
.fsoc {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.fsoc a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s;
}
.fsoc a:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.fsoc svg {
  width: 17px;
  height: 17px;
}
.fgrid h5 {
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 800;
}
.fgrid a.fl {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: 0.2s;
  font-weight: 500;
}
.fgrid a.fl:hover {
  color: var(--yellow);
}
.fbot {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.fbot .legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.fbot .legal a:hover {
  color: #fff;
}
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}
.js .reveal.d1 {
  transition-delay: 0.1s;
}
.js .reveal.d2 {
  transition-delay: 0.2s;
}
.js .reveal.d3 {
  transition-delay: 0.3s;
}
.js .reveal.scale {
  transform: translateY(26px) scale(0.97);
}
.js .reveal.scale.in {
  transform: none;
}
/* arabic / rtl */
html[lang="ar"] * {
  font-family: "Cairo", var(--sans) !important;
}
[dir="rtl"] .eyebrow::before {
  margin: 0;
}
[dir="rtl"] .statg .s {
  border-left: 0;
  border-right: 3px solid var(--yellow);
  padding-left: 0;
  padding-right: 22px;
}
[dir="rtl"] .brand-c::before {
  left: auto;
  right: 0;
}
[dir="rtl"] .split .fimg .cap {
  left: auto;
  right: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 12px;
}
[dir="rtl"] .split .fimg .cap::before {
  margin-right: 0;
  margin-left: 8px;
}
[dir="rtl"] .hit {
  text-align: right;
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
[dir="rtl"] .hit:last-child {
  border-left: 0;
}
[dir="rtl"] .hit .plus {
  right: auto;
  left: 14px;
}
[dir="rtl"] .flist .row:hover {
  transform: translateX(-6px);
}
[dir="rtl"] .link-arrow svg,
[dir="rtl"] .btn svg {
  transform: scaleX(-1);
}
[dir="rtl"] .link-arrow:hover svg {
  transform: scaleX(-1) translateX(5px);
}
@media (max-width: 980px) {
  .split,
  .csr-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .statg {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .brands {
    grid-template-columns: 1fr 1fr;
  }
  .brand-c:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .brand-c:nth-child(2n) {
    border-right: 0;
  }
  .brand-c:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
  .brand-c:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .news {
    grid-template-columns: 1fr;
  }
  .fgrid {
    grid-template-columns: 1fr 1fr;
  }
  .vgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .frame {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .wrap {
    padding: 0 22px;
  }
  .util .ulinks a:not(.langsw):not(.langsw *) {
    display: none;
  }
  .util .tag {
    display: none;
  }
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 82%;
    max-width: 330px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #fff;
    padding: 96px 32px;
    transform: translateX(100%);
    transition: 0.3s;
    box-shadow: -20px 0 60px -30px rgba(0, 0, 0, 0.5);
    z-index: 190;
  }
  .menu.open {
    transform: none;
  }
  .menu a {
    font-size: 1.05rem;
    padding: 10px 0;
  }
  .burger {
    display: inline-flex;
    z-index: 195;
  }
  .hero .wrap {
    padding: 70px 22px 200px;
  }
  .hero-ribbon .wrap {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .hit:nth-child(2n) {
    border-right: 0;
  }
  .hit {
    padding: 18px 16px;
  }
  .brands,
  .vgrid {
    grid-template-columns: 1fr;
  }
  .brand-c {
    border-right: 0 !important;
  }
  .statg {
    grid-template-columns: 1fr 1fr;
  }
  .fgrid {
    grid-template-columns: 1fr 1fr;
  }
  section.blk {
    padding: 74px 0;
  }
  .hpanel {
    flex-basis: 86vw;
    height: 62vh;
    min-height: 400px;
  }
  .navcta .btn {
    display: none;
  }
  .mtrack span.w {
    font-size: 1.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
  .hslide.active {
    animation: none;
  }
}
