/* ============================================================
   TAHA GROUP — Corporate Design System
   Clean, institutional, Koç-Holding-calibre aesthetic.
   ============================================================ */

:root {
  /* Color tokens — derived from the Taha Group logo (red / black / white) */
  --ink: #121317;          /* charcoal black */
  --ink-2: #1b1c22;        /* raised charcoal */
  --ink-3: #26272f;        /* hover charcoal */
  --paper: #f6f5f3;        /* warm off-white */
  --white: #ffffff;
  --red: #e30613;          /* Taha logo red */
  --red-2: #b70510;        /* red hover */
  --red-soft: #fceaeb;     /* red tint */
  --muted: #5d6570;        /* secondary text */
  --line: rgba(18, 19, 23, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 2px;

  --shadow-1: 0 10px 30px rgba(12, 22, 34, 0.08);
  --shadow-2: 0 24px 60px rgba(12, 22, 34, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

::selection { background: var(--red); color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.display-xl { font-size: clamp(2.2rem, 5.4vw, 4rem); }
.display-lg { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.display-md { font-size: clamp(1.5rem, 3vw, 2.15rem); }
.display-sm { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 56ch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--red);
}

.on-dark { color: var(--white); }
.on-dark .lead { color: rgba(255, 255, 255, 0.78); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 10vw, 128px); }
.section--tight { padding-block: clamp(52px, 7vw, 88px); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--white); }

.section-head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head .lead { margin-top: 18px; }

.section-head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head--row > div { max-width: 680px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--solid { background: var(--red); color: var(--white); }
.btn--solid:hover { background: var(--red-2); }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--ink-3); }

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.btn--ghost-dark {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--ghost-dark:hover { border-color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.3s var(--ease);
}
.text-link:hover { gap: 16px; }
.text-link svg { width: 15px; height: 15px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 40px;
}
.topbar a { transition: color 0.2s; white-space: nowrap; }
.topbar a:hover { color: var(--white); }
.topbar-meta { display: flex; gap: 28px; align-items: center; }
.topbar-lang { display: flex; gap: 14px; }
.topbar-lang .is-active { color: var(--red); font-weight: 700; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(12, 22, 34, 0.09); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand-mark {
  width: 34px; height: 34px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  position: relative;
  flex: none;
}
.brand-mark::after {
  content: "";
  position: absolute;
  right: -5px; bottom: -5px;
  width: 12px; height: 12px;
  background: var(--red);
}
.brand-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.16em;
  color: var(--ink);
}
.brand-name span { font-weight: 300; }

.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav > a {
  padding: 10px 15px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}
.primary-nav > a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.primary-nav > a:hover::after,
.primary-nav > a.is-current::after { transform: scaleX(1); }
.primary-nav > a.is-current { color: var(--ink); }

.nav-cta { margin-left: 14px; padding: 12px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 118px var(--gutter) 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6.4vw, 2.4rem);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.2s;
}
.mobile-menu nav a:hover,
.mobile-menu nav a.is-current { color: var(--red); }
.mobile-menu.is-open nav a { transform: translateY(0); opacity: 1; }
.mobile-menu nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu nav a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu nav a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu nav a:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu nav a:nth-child(8) { transition-delay: 0.4s; }
.mobile-menu-foot {
  margin-top: 42px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu-foot a:hover { color: var(--white); }

body.menu-locked { overflow: hidden; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: min(84vh, 760px);
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(12, 22, 34, 0.92) 0%, rgba(12, 22, 34, 0.72) 45%, rgba(12, 22, 34, 0.28) 100%);
}
.hero .container { padding-block: clamp(96px, 13vh, 150px) clamp(120px, 15vh, 170px); }
.hero h1 { max-width: 15ch; }
.hero .lead { color: rgba(255, 255, 255, 0.82); margin-top: 26px; }
.hero-actions { display: flex; gap: 16px; margin-top: 42px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 118px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.4; }
}

/* Stat strip overlapping hero bottom */
.stat-strip {
  position: relative;
  z-index: 5;
  margin-top: -84px;
}
.stat-strip-inner {
  background: var(--white);
  box-shadow: var(--shadow-2);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 3px solid var(--red);
}
.stat {
  padding: clamp(24px, 3vw, 40px) clamp(18px, 2.4vw, 36px);
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-value .suffix { color: var(--red); font-size: 0.7em; }
.stat-label {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: clamp(320px, 46vh, 460px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(12, 22, 34, 0.9) 0%, rgba(12, 22, 34, 0.45) 55%, rgba(12, 22, 34, 0.55) 100%);
}
.page-hero .container { padding-block: clamp(48px, 7vw, 84px); }
.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.crumbs a:hover { color: var(--white); }
.crumbs .sep { color: var(--red); }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  box-shadow: var(--shadow-2);
}
.split-media::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px;
  width: 45%; height: 55%;
  border: 1px solid var(--red);
  z-index: -1;
}
.split-media--plain::before { display: none; }
.split-content .lead { margin-top: 18px; }
.split-content .btn, .split-content .text-link { margin-top: 34px; }

.check-list { margin-top: 28px; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.98rem;
}
.check-list li::before {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  margin-top: 3px;
  background: var(--red-soft);
  clip-path: none;
  display: inline-block;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Crect width='20' height='20' fill='%23fceaeb'%3E%3C/rect%3E%3Cpath d='M5 10.5l3.2 3L15 7' stroke='%23e30613' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

/* ---------- Card grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 32px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px); }

/* Capability card (numbered, image top) */
.cap-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.cap-card-media { overflow: hidden; aspect-ratio: 16 / 10; }
.cap-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cap-card:hover .cap-card-media img { transform: scale(1.06); }
.cap-card-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.cap-card-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.cap-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.cap-card p { font-size: 0.94rem; color: var(--muted); flex: 1; }
.cap-card .text-link { margin-top: 20px; font-size: 0.76rem; }

/* Company card */
.company-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.company-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.company-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.company-card-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.company-card:hover .company-card-media img { transform: scale(1.06); }
.company-card-est {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(12, 22, 34, 0.82);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.company-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.company-card h3 { font-size: 1.28rem; }
.company-card-sector {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.company-card p { margin-top: 12px; font-size: 0.93rem; color: var(--muted); flex: 1; }
.company-card-meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.company-card-meta svg { width: 14px; height: 14px; color: var(--red); flex: none; }

/* News card */
.news-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.news-card-media { aspect-ratio: 16 / 9; overflow: hidden; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.news-card:hover .news-card-media img { transform: scale(1.06); }
.news-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.news-card-date {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.news-card h3 { font-size: 1.16rem; line-height: 1.35; flex: 1; }
.news-card p { margin-top: 10px; font-size: 0.92rem; color: var(--muted); }
.news-card .text-link { margin-top: 18px; font-size: 0.74rem; }

/* Value / icon card */
.value-card {
  padding: clamp(28px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-1); }
.value-card-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--red-soft);
  color: var(--red);
  margin-bottom: 20px;
}
.value-card-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { font-size: 0.93rem; color: var(--muted); }

.section--ink .value-card,
.section--ink .cap-card {
  background: var(--ink-2);
  border-color: rgba(255, 255, 255, 0.09);
}
.section--ink .value-card h3,
.section--ink .cap-card h3 { color: var(--white); }
.section--ink .value-card p,
.section--ink .cap-card p { color: rgba(255, 255, 255, 0.66); }

/* ---------- Full-bleed CTA band ---------- */
.band {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(12, 22, 34, 0.94), rgba(12, 22, 34, 0.6));
}
.band .container {
  padding-block: clamp(72px, 10vw, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.band h2 { max-width: 22ch; }
.band .lead { margin-top: 16px; }

/* ---------- Timeline (about) ---------- */
.timeline { position: relative; margin-top: 8px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 44px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 15px; height: 15px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  line-height: 1;
}
.timeline-item h3 { font-size: 1.12rem; margin-top: 8px; }
.timeline-item p { margin-top: 6px; font-size: 0.94rem; color: var(--muted); max-width: 52ch; }

/* ---------- Quote / chairman ---------- */
.quote-mark {
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 0.6;
  color: var(--red);
  display: block;
  margin-bottom: 26px;
}
blockquote.pull {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.5;
  max-width: 30ch;
}
.quote-attr { margin-top: 28px; }
.quote-attr strong { display: block; font-size: 1rem; letter-spacing: 0.04em; }
.quote-attr span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Location / footprint ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); }
.loc-cell {
  background: var(--ink);
  padding: clamp(22px, 2.6vw, 36px);
  transition: background 0.3s;
}
.loc-cell:hover { background: var(--ink-2); }
.loc-city { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); }
.loc-country {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
}
.loc-desc { margin-top: 12px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.62); }

/* ---------- Contact ---------- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.4vw, 44px);
}
.contact-row {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 4px; }
.contact-row strong { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-row a:hover { color: var(--red); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  filter: grayscale(0.5);
}

/* ---------- Table ---------- */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.data-table th {
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
}
.data-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.data-table tr:hover td { background: var(--paper); }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--red); }
.accordion-trigger .acc-icon {
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.accordion-item.is-open .acc-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.accordion-panel-inner { padding: 0 4px 28px; color: var(--muted); max-width: 72ch; }

/* ---------- Marquee logo strip ---------- */
.logo-strip {
  border-block: 1px solid var(--line);
  padding-block: 26px;
  overflow: hidden;
}
.logo-strip-inner {
  display: flex;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0.75;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.68); }
.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta .container {
  padding-block: clamp(48px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta h2 { color: var(--white); max-width: 24ch; }
.footer-main .container {
  padding-block: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(32px, 4vw, 64px);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-mark { background: var(--white); color: var(--ink); }
.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  max-width: 34ch;
  line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 10px; font-size: 0.9rem; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-col address { font-style: normal; font-size: 0.9rem; line-height: 1.9; }
.footer-col address a { display: block; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  padding-block: 14px;
}
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .band { background-attachment: scroll; }
}

/* ---------- Brand logo (mark + wordmark lockup) ---------- */
.brand-logo { height: 44px; width: auto; display: block; }
.site-header .container { min-height: 84px; }
.brand .brand-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  color: var(--red);
  white-space: nowrap;
}
.brand .brand-name span { font-weight: 400; color: var(--ink); }
.footer-brand .brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-brand .brand-logo { height: 58px; }
.footer-brand .brand-name span { color: var(--white); }
.assistant-head .brand-name { font-size: 1rem; letter-spacing: 0.12em; }
.assistant-head .brand-name span { color: var(--white); }
@media (max-width: 560px) {
  .brand-logo { height: 38px; }
  .brand .brand-name { font-size: 1.15rem; }
}

/* ---------- Utility modifiers ---------- */
.band--stack .container { display: block; }
.timeline--narrow { max-width: 720px; margin-inline: auto; }
.section-head--footnote { margin-top: clamp(40px, 6vw, 72px); margin-bottom: 0; }
.section--flush-top { padding-top: 0; }
.grid-2--start { align-items: start; }

/* ---------- Company logo chip on cards ---------- */
.company-card-logo {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  margin: -19px 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  padding: 8px 14px;
  max-width: calc(100% - 28px);
}
[dir="rtl"] .company-card-logo { align-self: flex-start; }
.company-card-logo img { height: 22px; width: auto; flex: none; }
.company-card-logo span {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--red);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.company-card-logo span b { color: var(--ink); font-weight: 700; }
.company-card-actions {
  margin-top: 14px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.company-card-actions .text-link { font-size: 0.72rem; }

/* ---------- Language switcher (flags) ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-switch a:hover { color: var(--white); background: rgba(255, 255, 255, 0.07); }
.lang-switch a.is-active {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}
.lang-switch .flag {
  width: 20px; height: 14px;
  border-radius: 2px;
  overflow: hidden;
  flex: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.lang-switch .flag svg { width: 100%; height: 100%; display: block; }

/* ---------- Assistant widget ---------- */
.assistant-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 200;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(227, 6, 19, 0.35);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.assistant-fab::before,
.assistant-fab::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
}
.assistant-fab::after { animation-delay: 1.2s; }
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.assistant-fab:hover { transform: translateY(-3px) scale(1.05); }
.assistant-fab .fab-logo {
  width: 34px; height: 34px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.assistant-fab:hover .fab-logo { transform: rotate(12deg) scale(1.08); }
.assistant-fab svg { width: 24px; height: 24px; }
.assistant-fab .close-ic { display: none; }
.assistant-open .assistant-fab { background: var(--red); color: var(--white); }
.assistant-open .assistant-fab::before,
.assistant-open .assistant-fab::after { animation: none; opacity: 0; }
.assistant-open .assistant-fab .fab-logo { display: none; }
.assistant-open .assistant-fab .close-ic { display: block; }
.fab-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  animation: badgePop 0.5s var(--ease) 1.2s backwards;
}
@keyframes badgePop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.assistant-open .fab-badge { display: none; }

/* Greeting bubble next to the FAB */
.assistant-hello {
  position: fixed;
  right: 100px; bottom: 32px;
  z-index: 199;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 14px;
  border-end-end-radius: 3px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  animation: helloIn 0.6s var(--ease) 1.6s forwards;
}
@keyframes helloIn {
  to { opacity: 1; transform: none; }
}
.assistant-hello.is-hidden, .assistant-open .assistant-hello { display: none; }
[dir="rtl"] .assistant-hello {
  right: auto; left: 100px;
  border-end-end-radius: 14px;
  border-end-start-radius: 3px;
}
@media (max-width: 560px) {
  .assistant-hello { right: 84px; bottom: 26px; font-size: 0.8rem; }
  [dir="rtl"] .assistant-hello { right: auto; left: 84px; }
}

.assistant-panel {
  position: fixed;
  right: 22px; bottom: 96px;
  z-index: 200;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 130px));
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.assistant-open .assistant-panel { opacity: 1; visibility: visible; transform: none; }

.assistant-head {
  background: var(--ink);
  color: var(--white);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.assistant-head .a-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}
.assistant-head .a-logo img { width: 26px; height: 26px; object-fit: contain; }
.assistant-head-title { font-weight: 800; font-size: 0.95rem; letter-spacing: 0.04em; }
.assistant-head-sub { font-size: 0.74rem; color: rgba(255, 255, 255, 0.65); display: flex; align-items: center; gap: 6px; }
.assistant-head-sub::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2ecc71;
}

.assistant-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
}
.a-msg {
  max-width: 85%;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.6;
  white-space: pre-line;
  overflow-wrap: break-word;
}
.a-msg a { color: var(--red); font-weight: 700; text-decoration: underline; }
.a-msg--bot {
  background: var(--white);
  border: 1px solid var(--line);
  border-start-start-radius: 3px;
  align-self: flex-start;
}
.a-msg--user {
  background: var(--red);
  color: var(--white);
  border-end-end-radius: 3px;
  align-self: flex-end;
}
.a-typing { display: inline-flex; gap: 4px; align-items: center; padding: 14px 15px; }
.a-typing i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: aBlink 1.2s infinite;
}
.a-typing i:nth-child(2) { animation-delay: 0.2s; }
.a-typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes aBlink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }

.assistant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 12px;
  background: var(--paper);
  flex: none;
}
.assistant-chips button {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.assistant-chips button:hover { border-color: var(--red); color: var(--red); background: var(--red-soft); }

.assistant-input {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
  flex: none;
}
.assistant-input input {
  flex: 1;
  font: inherit;
  font-size: 0.9rem;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.assistant-input input:focus { outline: none; border-color: var(--red); background: var(--white); }
.assistant-input button {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  flex: none;
  transition: background 0.2s;
}
.assistant-input button:hover { background: var(--red-2); }
.assistant-input button svg { width: 18px; height: 18px; }

@media (max-width: 560px) {
  .assistant-fab { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .assistant-panel { right: 14px; bottom: 80px; }
}

/* ---------- Sector filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.filter-bar button {
  padding: 11px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--muted);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.filter-bar button:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.filter-bar button.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.company-card.is-hidden { display: none; }
.company-card { animation: cardIn 0.5s var(--ease) backwards; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* Red accent line on card hover */
.company-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  z-index: 2;
}
.company-card:hover::before { transform: scaleX(1); }
[dir="rtl"] .company-card::before { transform-origin: right; }

/* ---------- Value-chain flow ---------- */
.chain-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(14px, 1.8vw, 24px);
  align-items: stretch;
}
.chain-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: clamp(26px, 3vw, 38px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.chain-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-1); }
.chain-step-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.chain-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.chain-step p { font-size: 0.93rem; color: var(--muted); }
.chain-arrow {
  align-self: center;
  color: var(--red);
  display: grid;
  place-items: center;
}
.chain-arrow svg { width: 30px; height: 30px; }
[dir="rtl"] .chain-arrow svg { transform: scaleX(-1); }
@media (max-width: 860px) {
  .chain-flow { grid-template-columns: 1fr; }
  .chain-arrow svg { transform: rotate(90deg); }
  [dir="rtl"] .chain-arrow svg { transform: rotate(90deg); }
}

/* ---------- Facilities gallery ---------- */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.facility-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink-2);
}
.facility-card--wide { grid-column: span 2; }
.facility-card--full { grid-column: 1 / -1; aspect-ratio: 21 / 8; }
.facility-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.facility-card:hover img { transform: scale(1.05); }
.facility-card figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 36px 18px 14px;
  background: linear-gradient(to top, rgba(18, 19, 23, 0.85), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.facility-credit {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--muted);
}
@media (max-width: 860px) {
  .facility-grid { grid-template-columns: 1fr 1fr; }
  .facility-card--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .facility-grid { grid-template-columns: 1fr; }
  .facility-card--wide { grid-column: auto; }
  .facility-card--full { grid-column: auto; aspect-ratio: 16 / 10; }
}

/* ---------- Board of directors ---------- */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.board-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 40px) 24px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.board-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-1); }
.board-avatar {
  width: 96px; height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.board-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.board-card h3 { font-size: 1.14rem; }
.board-role {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 1024px) { .board-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .board-grid { grid-template-columns: 1fr; } }

/* ---------- RTL (Arabic) support ---------- */
html[lang="ar"] body,
html[lang="ar"] .brand-name,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 {
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] .display {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}
html[lang="ar"] .kicker, html[lang="ar"] .btn, html[lang="ar"] .text-link,
html[lang="ar"] .stat-label, html[lang="ar"] .company-card-sector,
html[lang="ar"] .news-card-date, html[lang="ar"] .footer-col h4 {
  letter-spacing: 0;
}
[dir="rtl"] .btn svg, [dir="rtl"] .text-link svg { transform: scaleX(-1); }
[dir="rtl"] .btn:hover svg { transform: scaleX(-1) translateX(4px); }
[dir="rtl"] .primary-nav > a::after { transform-origin: right; }
[dir="rtl"] .split-media::before { left: auto; right: -20px; }
[dir="rtl"] .stat-strip-inner { border-left: 0; border-right: 3px solid var(--red); }
[dir="rtl"] .stat { border-right: 0; border-left: 1px solid var(--line); }
[dir="rtl"] .stat:last-child { border-left: 0; }
[dir="rtl"] .hero::after {
  background: linear-gradient(260deg, rgba(18, 19, 23, 0.92) 0%, rgba(18, 19, 23, 0.72) 45%, rgba(18, 19, 23, 0.28) 100%);
}
[dir="rtl"] .hero-scroll { right: auto; left: var(--gutter); }
[dir="rtl"] .timeline::before { left: auto; right: 7px; }
[dir="rtl"] .timeline-item { padding: 0 44px 40px 0; }
[dir="rtl"] .timeline-item:last-child { padding-bottom: 0; }
[dir="rtl"] .timeline-item::before { left: auto; right: 0; }
[dir="rtl"] .company-card-est { left: auto; right: 14px; }
[dir="rtl"] .assistant-fab { right: auto; left: 22px; }
[dir="rtl"] .assistant-panel { right: auto; left: 22px; }
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] address,
[dir="rtl"] .contact-row a[href^="mailto:"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}
@media (max-width: 560px) {
  [dir="rtl"] .assistant-fab { right: auto; left: 14px; }
  [dir="rtl"] .assistant-panel { right: auto; left: 14px; }
  [dir="rtl"] .stat:nth-child(odd) { border-right: 0 !important; border-left: 1px solid var(--line) !important; }
  [dir="rtl"] .stat:last-child { border-left: 0 !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .band { background-attachment: scroll; }
  .footer-main .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media::before { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-meta span.hide-m { display: none; }
  .hero-scroll { display: none; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stat-strip { margin-top: -60px; }
  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0 !important; border-top: 1px solid var(--line); }
  .stat:nth-child(-n + 2) { border-top: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line) !important; }
  .stat:last-child { border-right: 0 !important; }
  .hero .container { padding-block: 96px 150px; }
  .btn { width: 100%; }
  .hero-actions .btn { width: auto; flex: 1; padding-inline: 18px; }
  .footer-main .container { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  .topbar-meta { display: none; }
}
