:root {
  --ink: #11130f;
  --paper: #f5f4ef;
  --surface: #ffffff;
  --muted: #70736c;
  --line: #dcdcd4;
  --accent: #e8d500;
  --accent-soft: rgba(232, 213, 0, 0.16);
  --dark: #11130f;
  --max: 1240px;
  --header-h: 84px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(16, 18, 14, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, "Noto Sans Arabic", Arial, sans-serif;
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--accent);
  color: var(--ink);
}
.container {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}
.section {
  padding: 132px 0;
  position: relative;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #777a72;
  font:
    800 12px/1.2 Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}
h2 {
  margin: 0;
  font:
    800 clamp(58px, 6.4vw, 92px)/1.02 Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif;
  letter-spacing: -0.065em;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 380px);
  gap: 80px;
  align-items: end;
  margin-bottom: 66px;
}
.section-head > p,
.about-copy > p:not(.eyebrow),
.reach-copy > p:not(.eyebrow),
.contact > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.section-head h2 span,
.about-copy h2 span,
.reach h2 span,
.contact h2 span {
  color: #a3a59e;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 11, 9, 0.52), transparent);
  transition:
    height 0.3s ease,
    background 0.3s ease,
    backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(17, 19, 15, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font:
    800 16px/1 Manrope,
    Arial,
    sans-serif;
  letter-spacing: -0.03em;
}
.brand > span:last-child > span {
  color: var(--accent);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: -0.05em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}
.nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font:
    700 12px/1.2 Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav a:hover,
.nav a.active {
  color: #fff;
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 9px;
}
.header-cta,
.lang-toggle,
.theme-toggle,
.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 999px;
  font:
    800 12px Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif,
    Arial,
    sans-serif;
  transition: 0.25s ease;
   background: var(--accent);
}
.header-cta:hover {
  background: rgba(255, 255, 255, 0);
  border-color: var(--accent);
  color: white;
  transform: translateY(-1px);
}
.lang-switcher {
  position: relative;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 999px;
  font:
    800 11px Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif,
    Arial,
    sans-serif;
  letter-spacing: 0.06em;
}
.lang-toggle svg {
  width: 10px;
  transition: transform 0.25s ease;
}
.lang-switcher.open .lang-toggle svg {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  inset-block-start: calc(100% + 10px);
  inset-inline-end: 0;
  min-width: 150px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #171914;
  color: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.2s ease;
}
.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #fff;
  text-align: start;
  font:
    700 11px Manrope,
    Arial,
    sans-serif;
}
.lang-option:hover {
  background: rgba(255, 255, 255, 0.07);
}
.lang-option.active {
  color: var(--accent);
}
.lang-check {
  opacity: 0;
}
.lang-option.active .lang-check {
  opacity: 1;
}
.theme-toggle {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  padding: 0;
  border-radius: 50%;
  transition: 0.25s ease;
}
.theme-toggle:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}
.theme-toggle svg {
  width: 16px;
  height: 16px;
}
.theme-toggle .icon-moon {
  display: none;
}
[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}
[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}
.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
}
.menu-toggle i {
  display: block;
  width: 15px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: 0.25s ease;
}
.menu-toggle.open i:first-child {
  transform: translateY(2.5px) rotate(45deg);
}
.menu-toggle.open i:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #171914;
  color: #fff;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background: url("../hero.png") center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 8, 0.92) 0%,
      rgba(8, 10, 8, 0.66) 43%,
      rgba(8, 10, 8, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(8, 10, 8, 0.72), transparent 48%);
}
.hero-content {
  position: relative;
  padding-top: 80px;
}
.hero-content > .eyebrow {
  margin-bottom: 18px;
}
.hero-meta {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font:
    700 9px Manrope,
    Arial,
    sans-serif;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}
.hero h1 {
  max-width: 920px;
  margin: 0;
  font:
    800 clamp(56px, 8vw, 112px)/0.87 Manrope,
    Arial,
    sans-serif;
  letter-spacing: -0.075em;
}
.hero h1 em {
  font-style: normal;
  color: #c9cbc5;
  font-weight: 500;
}
.hero-copy {
  max-width: 610px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.85;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font:
    800 12px Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif,
    Arial,
    sans-serif;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.button-yellow {
  background: var(--accent);
  color: var(--ink);
}
.button-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 213, 0, 0.22);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  transform: translateY(-2px);
}
.hero-bottom {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding-inline: 0 22px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  font:
    700 10px Manrope,
    Arial,
    sans-serif;
}
.hero-bottom a:last-child {
  border-inline-end: 0;
}
.hero-bottom a:hover {
  color: #fff;
}
.hero-bottom b {
  margin-inline-start: auto;
  color: var(--accent);
  font: 700 9px Manrope;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(232, 213, 0, 0.12);
}

/* Trust */
.trust {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid #292c27;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
  padding: 30px 0;
}
.trust p {
  margin: 0;
  color: #8c9088;
  font-size: 10px;
  line-height: 1.65;
}
.trust p strong {
  color: #fff;
  font-size: 13px;
}
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #a7aaa2;
  font: 700 9px Manrope;
  letter-spacing: 0.08em;
}
.trust-list span {
  padding-inline-start: 18px;
  border-inline-start: 1px solid #343731;
}
.trust-list span:first-child {
  border: 0;
}

/* About */
.about {
  background: var(--surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 100px;
  align-items: center;
}
.about-copy h2 {
  max-width: 700px;
  margin-bottom: 30px;
}
.about-copy > p:not(.eyebrow) {
  max-width: 690px;
}
.about-copy > p + p {
  margin-top: 16px;
}
.checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
}
.checks > div {
  padding: 18px 14px 0 0;
  border-inline-end: 1px solid var(--line);
}
.checks > div:last-child {
  border-inline-end: 0;
}
.checks span {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  margin-bottom: 15px;
}
.checks strong,
.checks small {
  display: block;
}
.checks strong {
  font: 800 12px Manrope;
}
.checks small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font:
    800 12px Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif;
  transition: gap 0.25s ease;
}
.text-link:hover {
  gap: 15px;
}
.image-frame {
  position: relative;
  overflow: hidden;
  background: #ddd;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-frame.tall {
  height: 610px;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition:
    transform 0.8s ease,
    filter 0.5s ease;
}
.image-frame:hover img {
  transform: scale(1.035);
  filter: saturate(0.95);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.48));
}
.image-tag {
  position: absolute;
  z-index: 2;
  inset-block-start: 20px;
  inset-inline-start: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font: 800 8px/1 Manrope;
  text-align: center;
}
.image-caption {
  position: absolute;
  z-index: 2;
  inset-block-end: 20px;
  inset-inline-start: 20px;
  color: #fff;
  font: 700 9px Manrope;
  letter-spacing: 0.04em;
}

/* Products */
.products {
  background: var(--paper);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.product-card {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -55% -15%;
  height: 80%;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: #b9b9b0;
  box-shadow: 0 24px 55px rgba(16, 18, 14, 0.08);
}
.product-card:hover::before {
  opacity: 1;
}
.product-card:nth-child(1),
.product-card:nth-child(5) {
  grid-column: span 5;
}
.product-card:nth-child(2),
.product-card:nth-child(3),
.product-card:nth-child(4),
.product-card:nth-child(6) {
  grid-column: span 3;
}
.product-card > span {
  position: relative;
  z-index: 1;
  color: #a1a39c;
  font: 700 10px Manrope;
}
.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 120px 0 12px;
  font: 800 clamp(25px, 2.6vw, 38px)/0.98 Manrope;
  letter-spacing: -0.05em;
}
.product-card p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.product-card::after {
  content: "↗";
  position: absolute;
  z-index: 2;
  inset-block-end: 23px;
  inset-inline-end: 24px;
  font: 400 22px Manrope;
  transition: transform 0.3s ease;
}
.product-card:hover::after {
  transform: translate(4px, -4px);
}

/* Services */
.services {
  background: var(--surface);
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 55px 1fr 280px 35px;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.service-row::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  background: #ecebe4;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.service-row > * {
  position: relative;
  z-index: 1;
}
.service-row:hover {
  padding-inline: 20px;
}
.service-row:hover::before {
  transform: scaleY(1);
}
.service-no {
  color: #999;
  font: 700 10px Manrope;
}
.service-title h3 {
  margin: 0;
  font: 800 clamp(25px, 3vw, 42px)/1 Manrope;
  letter-spacing: -0.055em;
}
.service-title p {
  max-width: 510px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.service-image {
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55);
  transition:
    transform 0.7s ease,
    filter 0.4s ease;
}
.service-row:hover .service-image img {
  transform: scale(1.06);
  filter: saturate(0.9);
}
.service-arrow {
  font: 400 25px Manrope;
  text-align: end;
  transition: transform 0.3s ease;
}
.service-row:hover .service-arrow {
  transform: translate(-4px, -4px);
}

/* Reach */
.reach {
  background: var(--surface);
}
.reach-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
  align-items: center;
}
.reach-visual {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}
.reach-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.reach-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 9, 7, 0.04) 35%,
    rgba(7, 9, 7, 0.72) 100%
  );
  pointer-events: none;
}
.reach-visual-badge {
  position: absolute;
  inset-block-start: 22px;
  inset-inline-end: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(10, 12, 10, 0.72);
  backdrop-filter: blur(12px);
  color: #fff;
  font:
    700 12px/1.2 "Noto Sans Arabic",
    Manrope,
    Arial,
    sans-serif;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(232, 213, 0, 0.12);
}
.reach-visual-caption {
  position: absolute;
  inset-inline-start: 24px;
  inset-inline-end: 24px;
  inset-block-end: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 20px;
  border-inline-start: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: rgba(10, 12, 10, 0.76);
  backdrop-filter: blur(12px);
  color: #fff;
}
.reach-visual-caption strong {
  font:
    800 17px/1.35 "Noto Sans Arabic",
    Manrope,
    Arial,
    sans-serif;
}
.reach-visual-caption span {
  font:
    500 12px/1.7 "Noto Sans Arabic",
    Manrope,
    Arial,
    sans-serif;
  color: rgba(255, 255, 255, 0.72);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.stats div {
  padding: 18px 10px 0;
  border-inline-end: 1px solid var(--line);
}
.stats div:last-child {
  border: 0;
}
.stats strong {
  display: block;
  font: 800 34px Manrope;
  letter-spacing: -0.05em;
}
.stats strong span {
  color: #aaa;
}
.stats small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

/* Cinematic sections */
.cinema,
.final-cta {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.cinema-bg,
.final-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
}
.cinema-bg {
  background-image: url("https://images.unsplash.com/photo-1565610222536-ef125c59da2e?auto=format&fit=crop&w=2200&q=90");
}
.final-bg {
  background-image: url("https://images.unsplash.com/photo-1473973266408-ed4e27abdd47?auto=format&fit=crop&w=2200&q=90");
}
.cinema-overlay,
.final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 9, 7, 0.94),
    rgba(7, 9, 7, 0.57) 55%,
    rgba(7, 9, 7, 0.18)
  );
}
.cinema-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 100px;
  align-items: center;
}
.cinema h2,
.final-cta h2 {
  font: 800 clamp(54px, 7vw, 98px)/0.88 Manrope;
  letter-spacing: -0.075em;
}
.cinema h2 em,
.final-cta h2 em {
  font-style: normal;
  font-weight: 500;
  color: #c8cbc5;
}
.cinema-content > div:first-child > p:not(.eyebrow) {
  max-width: 600px;
  margin: 28px 0 34px;
  color: #d5d8d2;
  font-size: 16px;
  line-height: 1.9;
}
.vertical-points {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.24);
}
.vertical-points div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}
.vertical-points b {
  font:
    700 11px Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif;
  color: var(--accent);
}

/* Why */
.why {
  background: #ebeae4;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ccc;
}
.why-grid > div {
  min-height: 250px;
  padding: 24px 22px;
  border-inline-end: 1px solid #ccc;
}
.why-grid > div:last-child {
  border: 0;
}
.why-grid strong {
  font: 800 42px Manrope;
  color: #a2a49d;
  letter-spacing: -0.05em;
}
.why-grid h3 {
  margin: 50px 0 10px;
  font: 800 21px Manrope;
  letter-spacing: -0.03em;
}
.why-grid p {
  max-width: 250px;
  margin: 0;
  color: #777a74;
  font-size: 14px;
  line-height: 1.8;
}

/* CTA / Contact / Footer */
.final-content {
  position: relative;
}
.final-content h2 {
  max-width: 930px;
  margin-bottom: 34px;
}
.contact {
  background: var(--surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}
.contact h2 {
  margin-bottom: 22px;
}
.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 42px;
  font:
    700 14px Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif;
}
.contact-info a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.inquiry-form label {
  font:
    800 11px Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif;
  letter-spacing: 0.08em;
}
.inquiry-form input,
.inquiry-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid #bfc1bb;
  background: transparent;
  outline: 0;
  color: var(--ink);
  transition: border-color 0.25s ease;
}
.inquiry-form textarea {
  resize: vertical;
  min-height: 115px;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--ink);
}
.inquiry-form .full {
  grid-column: 1/-1;
}
.form-note {
  margin: 0;
  align-self: center;
  color: var(--muted);
  font-size: 12px;
}
.footer {
  background: #11130f;
  color: #fff;
  padding: 80px 0 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 70px;
}
.footer p {
  max-width: 360px;
  margin: 25px 0 0;
  color: #858983;
  font-size: 14px;
  line-height: 1.8;
}
.footer h4 {
  margin: 0 0 20px;
  color: #858983;
  font: 700 9px Manrope;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-top > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 11px;
}
.footer-top a,
.footer-top span {
  font-size: 13px;
  color: #d5d8d2;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 18px;
  border-top: 1px solid #303330;
  color: #666;
  font:
    600 11px Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.whatsapp-fab {
  position: fixed;
  z-index: 150;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  display: flex;
  align-items: center;

  border: 0;
  background: #25d366;
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
  transition: 1s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.38);
}
.whatsapp-fab svg {
  width: 25px;
  height: 25px;
}
.fab-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font:
    800 12px Manrope,
    "Noto Sans Arabic",
    Arial,
    sans-serif;
  transition: max-width 0.3s ease;
}
.whatsapp-fab:hover .fab-label {
  max-width: 150px;
}

@media (max-width: 1050px) {
  .container {
    width: min(var(--max), calc(100% - 48px));
  }
  .site-header {
    padding: 0 24px;
  }
  .nav {
    gap: 20px;
  }
  .header-cta {
    display: none;
  }
  .section {
    padding: 110px 0;
  }
  .section-head {
    gap: 45px;
  }
  .about-grid,
  .reach-grid {
    gap: 55px;
  }
  .image-frame.tall {
    height: 550px;
  }
  .service-row {
    grid-template-columns: 48px 1fr 240px 30px;
  }
  .cinema-content {
    gap: 55px;
  }
  .contact-grid {
    gap: 60px;
  }
}
@media (max-width: 780px) {
  :root {
    --header-h: 70px;
  }
  .site-header {
    height: 70px;
    padding: 0 18px;
  }
  .site-header.scrolled {
    height: 64px;
  }
  .nav {
    position: fixed;
    inset-block-start: 64px;
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 24px;
    background: rgba(17, 19, 15, 0.98);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav a::after {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .lang-menu {
    inset-inline-end: auto;
    inset-inline-start: 0;
  }
  .hero {
    min-height: 760px;
  }
  .hero-content {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: clamp(50px, 11.5vw, 78px);
  }
  .hero-copy {
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
  }
  .hero-bottom a {
    min-height: 54px;
  }
  .hero-bottom a:not(:first-child) {
    display: none;
  }
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 28px 0;
  }
  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-list span {
    padding: 12px 0;
    border-bottom: 1px solid #343731;
  }
  .trust-list span:nth-child(odd) {
    border-inline-start: 0;
  }
  .section {
    padding: 88px 0;
  }
  .section-head,
  .about-grid,
  .reach-grid,
  .cinema-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .section-head {
    margin-bottom: 48px;
  }
  .section-head h2,
  .about-copy h2,
  .reach h2,
  .contact h2 {
    font-size: clamp(43px, 10vw, 64px);
  }
  .image-frame.tall {
    height: 480px;
  }
  .checks {
    margin-top: 30px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card,
  .product-card:nth-child(n) {
    grid-column: span 1;
    min-height: 240px;
  }
  .product-card:nth-child(1),
  .product-card:nth-child(5) {
    grid-column: span 2;
  }
  .product-card h3 {
    margin-top: 78px;
    font-size: 27px;
  }
  .product-card p {
    font-size: 12px;
  }
  .service-row {
    grid-template-columns: 40px 1fr 30px;
    gap: 12px;
    padding: 20px 0;
  }
  .service-image {
    grid-column: 2/4;
    height: 170px;
  }
  .service-title p {
    font-size: 12px;
  }
  .service-arrow {
    grid-column: 3;
    grid-row: 1;
  }
  .reach-visual {
    height: 380px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats div {
    padding-bottom: 18px;
  }
  .stats div:nth-child(2) {
    border-inline-end: 0;
  }
  .stats div:nth-child(3) {
    border-top: 1px solid var(--line);
  }
  .cinema,
  .final-cta {
    min-height: 690px;
  }
  .cinema-content {
    gap: 45px;
  }
  .vertical-points {
    border-inline-start: 0;
  }
  .vertical-points div {
    padding-inline-start: 0;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid > div {
    min-height: 220px;
  }
  .why-grid > div:nth-child(2) {
    border-inline-end: 0;
  }
  .why-grid > div:nth-child(3) {
    border-top: 1px solid #ccc;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }
  .site-header {
    padding: 0 16px;
  }
  .brand {
    font-size: 13px;
  }
  .brand-mark {
    width: 29px;
    height: 29px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-copy {
    font-size: 14px;
    line-height: 1.75;
  }
  .hero-meta {
    font-size: 11px;
  }
  .section {
    padding: 76px 0;
  }
  .trust-list {
    font-size: 11px;
  }
  .checks {
    grid-template-columns: 1fr;
  }
  .checks > div {
    padding: 14px 0;
    border-inline-end: 0;
    border-top: 1px solid var(--line);
  }
  .checks > div:first-child {
    border-top: 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card,
  .product-card:nth-child(n),
  .product-card:nth-child(1),
  .product-card:nth-child(5) {
    grid-column: 1;
    min-height: 205px;
  }
  .product-card h3 {
    margin-top: 55px;
    font-size: 25px;
  }
  .service-image {
    height: 145px;
  }
  .reach-visual {
    height: 300px;
  }
  .stats strong {
    font-size: 29px;
  }
  .cinema,
  .final-cta {
    min-height: 630px;
  }
  .cinema h2,
  .final-cta h2 {
    font-size: 51px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-grid > div {
    border-inline-end: 0 !important;
    border-bottom: 1px solid #ccc;
    min-height: 190px;
  }
  .why-grid > div:last-child {
    border-bottom: 0;
  }
  .why-grid h3 {
    margin-top: 30px;
  }
  .inquiry-form {
    grid-template-columns: 1fr;
  }
  .inquiry-form .full {
    grid-column: auto;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
  .whatsapp-fab {
    inset-block-end: 16px;
    inset-inline-end: 16px;
    padding: 13px;
  }
  .fab-label {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium multilingual typography */
html[dir="rtl"] body {
  font-family: "Noto Sans Arabic", Manrope, Arial, sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .button,
html[dir="rtl"] .nav a {
  font-family: "Noto Sans Arabic", Manrope, Arial, sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}
html[dir="rtl"] .eyebrow {
  letter-spacing: 0;
  font-weight: 700;
}
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-head > p,
html[dir="rtl"] .about-copy > p:not(.eyebrow),
html[dir="rtl"] .reach-copy > p:not(.eyebrow),
html[dir="rtl"] .contact > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 2;
}
html[dir="rtl"] .product-card h3,
html[dir="rtl"] .service-title h3 {
  letter-spacing: -0.035em;
}
@media (max-width: 780px) {
  html[dir="rtl"] .hero-copy {
    font-size: 14px;
    line-height: 1.9;
  }
  html[dir="rtl"] .section-head > p,
  html[dir="rtl"] .about-copy > p:not(.eyebrow),
  html[dir="rtl"] .reach-copy > p:not(.eyebrow),
  html[dir="rtl"] .contact > p:not(.eyebrow) {
    font-size: 14px;
  }
}

/* Reach visual replacement */
html[dir="rtl"] .reach-visual-badge,
html[dir="rtl"] .reach-visual-caption strong,
html[dir="rtl"] .reach-visual-caption span {
  font-family: "Noto Sans Arabic", Manrope, Arial, sans-serif;
}
@media (max-width: 520px) {
  .reach-visual-caption {
    inset-inline-start: 14px;
    inset-inline-end: 14px;
    inset-block-end: 14px;
    padding: 14px 15px;
  }
  .reach-visual-caption strong {
    font-size: 15px;
  }
  .reach-visual-caption span {
    font-size: 11px;
  }
  .reach-visual-badge {
    inset-block-start: 14px;
    inset-inline-end: 14px;
    padding: 9px 12px;
    font-size: 11px;
  }
}
