:root {
  --black: #ffffff;
  --dark: #f5f5f7;
  --dark-soft: #fafafa;
  --surface: #f0f0f2;
  --red: #dc2626;
  --red-light: #dc2626;
  --red-dark: #b91c1c;
  --silver: #374151;
  --muted: #6b7280;
  --text: #111827;
  --line: rgba(0, 0, 0, 0.09);
  --line-red: rgba(220, 38, 38, 0.35);
  --wrap: min(1180px, calc(100% - 2.5rem));
  --header-h: 76px;
  --utility-h: 40px;
  --sidebar-w: min(320px, 88vw);
  --font-ar: "IBM Plex Sans Arabic", "Cairo", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --overlay: rgba(255, 255, 255, 0.92);
  --overlay-soft: rgba(255, 255, 255, 0.75);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ar);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: var(--wrap); margin-inline: auto; }

/* Utility bar */
.utility-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}
.utility-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 0.55rem 0;
  color: var(--muted);
}
.utility-inner a { color: var(--silver); transition: color 0.2s; }
.utility-inner a:hover { color: var(--red-light); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  transition: background 0.35s, box-shadow 0.35s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand__logo {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 8px rgba(220, 38, 38, 0.3));
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__ar { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.brand__en { font-size: 0.62rem; letter-spacing: 0.14em; color: var(--red-light); text-transform: uppercase; }
.brand__tag { font-size: 0.58rem; color: var(--muted); }

/* Desktop nav — pill style */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.desktop-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}
.desktop-nav a:hover { color: var(--text); background: rgba(0, 0, 0, 0.05); }
.desktop-nav a.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
}

.nav-actions { display: flex; align-items: center; gap: 0.65rem; }

.lang-switch {
  display: flex;
  padding: 0.2rem;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.lang-switch__btn {
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-switch__btn.is-active {
  color: #ffffff;
  background: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn--red {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red-dark) 100%);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(220, 38, 38, 0.25);
}
.btn--red:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(220, 38, 38, 0.45); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--red-light); color: var(--red-light); }
.btn--outline-red {
  background: transparent;
  color: var(--red-light);
  border-color: var(--line-red);
}
.btn--outline-red:hover { background: rgba(220, 38, 38, 0.1); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--dark-soft);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Sidebar mobile */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.sidebar-overlay.is-visible { opacity: 1; visibility: visible; }

.sidebar {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  z-index: 310;
  width: var(--sidebar-w);
  height: 100dvh;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  box-shadow: 8px 0 48px rgba(0, 0, 0, 0.12);
  border-inline-start: 1px solid var(--line-red);
}
.sidebar.is-open { transform: translateX(0); }
[dir="ltr"] .sidebar { transform: translateX(-100%); }
[dir="ltr"] .sidebar.is-open { transform: translateX(0); }

.sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.sidebar__brand { display: flex; align-items: center; gap: 0.65rem; }
.sidebar__brand img { width: 40px; height: 40px; }
.sidebar__brand span { font-weight: 700; font-size: 0.9rem; }
.sidebar__close {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}
.sidebar__nav { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  color: var(--text);
  border-radius: 12px;
  transition: background 0.25s, transform 0.25s;
}
.sidebar__nav a:hover { background: rgba(220, 38, 38, 0.12); transform: translateX(-4px); }
[dir="ltr"] .sidebar__nav a:hover { transform: translateX(4px); }
.sidebar__nav a.is-active { background: rgba(220, 38, 38, 0.2); color: var(--red-light); }
.sidebar__nav-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.15);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--red-light);
}
.sidebar__foot {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.sidebar__foot a { display: block; color: var(--red-light); margin-top: 0.25rem; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 55%, rgba(255, 255, 255, 0.88) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  border: 1px solid var(--line-red);
  border-radius: 100px;
  background: rgba(220, 38, 38, 0.1);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--red-light); }
.hero__lead {
  max-width: 32rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }

/* Sections */
.section { padding: clamp(4rem, 8vw, 6rem) 0; }
.section--dark { background: var(--dark); }
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 640px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.section-head p { color: var(--muted); margin: 0; line-height: 1.8; }

/* Cards grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--dark-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.card:hover {
  border-color: var(--line-red);
  transform: translateY(-4px);
}
.card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.12);
  color: var(--red-light);
  font-size: 1.25rem;
}
.card h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }
.card p { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* Product cards */
.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-soft);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-red);
}
.product-card__img { aspect-ratio: 4/3; overflow: hidden; }
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__body { padding: 1.25rem; }
.product-card__body h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.product-card__body p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* Page hero inner */
.page-hero {
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.5rem;
}
.page-hero p { color: var(--muted); max-width: 36rem; margin: 0; }

/* About milestones */
.milestone {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--dark-soft);
}
.milestone strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-light);
  margin-bottom: 0.35rem;
}
.milestone h4 { margin: 0 0 0.35rem; font-size: 0.95rem; }
.milestone p { margin: 0; font-size: 0.78rem; color: var(--muted); }

.prose { max-width: 52rem; }
.prose p { color: var(--muted); line-height: 1.9; margin-bottom: 1.25rem; }

/* Maintenance highlight */
.maintenance-box {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.03) 100%);
  border: 1px solid var(--line-red);
  margin-top: 2rem;
}
.maintenance-box h3 { margin: 0 0 0.5rem; color: var(--red-light); }
.maintenance-box p { color: var(--muted); margin: 0 0 1rem; }
.maintenance-box a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.maintenance-box .maintenance-name {
  display: block;
  font-size: 0.88rem;
  color: var(--silver);
  margin-bottom: 0.35rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.contact-card {
  padding: 1.5rem;
  background: var(--dark-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 1rem;
}
.contact-card span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-card strong, .contact-card a {
  font-size: 0.95rem;
  color: var(--text);
}
.contact-card a:hover { color: var(--red-light); }
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
  min-height: 280px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* CTA band */
.cta-band {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%);
  border: 1px solid var(--line-red);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2 { font-family: var(--font-display); margin: 0 0 0.35rem; font-size: 1.75rem; color: #ffffff; }
.cta-band p { margin: 0; color: var(--muted); }

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: var(--dark);
  text-align: center;
}
.site-footer p { font-size: 0.75rem; color: var(--muted); margin: 0; }
.footer__credit {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__credit:hover { color: var(--red-light); }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.split__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
}
.split__copy p { color: var(--muted); line-height: 1.9; margin: 0 0 1rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--dark-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}
.step h4 { margin: 0 0 0.4rem; font-size: 0.95rem; }
.step p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-item {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.02);
}
.value-item strong {
  display: block;
  color: var(--red-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.value-item h4 { margin: 0 0 0.35rem; font-size: 0.95rem; }
.value-item p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 720px; }
.faq-item {
  padding: 1.25rem 1.5rem;
  background: var(--dark-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.faq-item h4 { margin: 0 0 0.5rem; font-size: 0.95rem; color: var(--text); }
.faq-item p { margin: 0; font-size: 0.85rem; color: var(--muted); line-height: 1.75; }

/* Banner strip */
.banner-strip {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.banner-strip__bg {
  position: absolute;
  inset: 0;
}
.banner-strip__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.banner-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 100%);
}
.banner-strip__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.banner-strip__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
}
.banner-strip__content p { color: var(--muted); margin: 0 0 1.25rem; line-height: 1.85; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem;
  border-radius: 20px;
  background: var(--dark-soft);
  border: 1px solid var(--line);
}
.stats-row__item { text-align: center; padding: 0.5rem; }
.stats-row__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stats-row__item span { font-size: 0.75rem; color: var(--muted); }

/* Use cases */
.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.use-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--dark-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.3s;
}
.use-card:hover { border-color: var(--line-red); }
.use-card__num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(220, 38, 38, 0.15);
  color: var(--red-light);
  font-weight: 700;
  font-size: 0.85rem;
}
.use-card h4 { margin: 0 0 0.35rem; font-size: 0.95rem; }
.use-card p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* Directions */
.directions-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.directions-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--dark-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}
.directions-list li span:first-child {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.15);
  color: var(--red-light);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── Creative UI components ── */

/* Marquee ticker */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--dark);
  padding: 0.85rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-inline-end: 2.5rem;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red-light);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
[dir="ltr"] .marquee__track { animation-name: marquee-ltr; }
@keyframes marquee-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 1rem;
}
.bento__cell {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--dark-soft);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.bento__cell:hover { border-color: var(--line-red); transform: translateY(-3px); }
.bento__cell--span6 { grid-column: span 6; }
.bento__cell--span3 { grid-column: span 3; }
.bento__cell--span4 { grid-column: span 4; }
.bento__cell--span8 { grid-column: span 8; }
.bento__cell--span5 { grid-column: span 5; }
.bento__cell--span7 { grid-column: span 7; }
.bento__cell--tall { grid-row: span 2; }
.bento__cell--accent {
  background: linear-gradient(145deg, rgba(220,38,38,0.08) 0%, var(--dark-soft) 70%);
  border-color: var(--line-red);
}
.bento__cell--img {
  padding: 0;
  min-height: 220px;
}
.bento__cell--img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.bento__cell--img .bento__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.bento__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(220,38,38,0.15);
  position: absolute;
  top: 0.5rem;
  inset-inline-end: 1rem;
  pointer-events: none;
}
.bento__cell h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.bento__cell p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.bento__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  background: rgba(220,38,38,0.12);
  color: var(--red-light);
  font-size: 1.35rem;
}

/* Horizontal showcase scroll */
.showcase-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dark) transparent;
}
.showcase-scroll::-webkit-scrollbar { height: 4px; }
.showcase-scroll::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 4px; }
.showcase-item {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--dark-soft);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.showcase-item:hover { transform: scale(1.02); border-color: var(--line-red); }
.showcase-item__img { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.showcase-item__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.showcase-item:hover .showcase-item__img img { transform: scale(1.08); }
.showcase-item__tag {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-red);
  border-radius: 100px;
  color: var(--red-light);
}
.showcase-item__body { padding: 1.25rem; }
.showcase-item__body h3 { margin: 0 0 0.35rem; font-family: var(--font-display); font-size: 1.25rem; }
.showcase-item__body p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* Process rail — horizontal connected */
.process-rail {
  display: flex;
  gap: 0;
  position: relative;
  padding: 2rem 0;
}
.process-rail::before {
  content: "";
  position: absolute;
  top: 2.65rem;
  inset-inline: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-dark), var(--red-light), var(--red-dark), transparent);
  opacity: 0.5;
}
.process-rail__node {
  flex: 1;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}
.process-rail__dot {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--red);
  box-shadow: 0 0 24px rgba(220,38,38,0.25);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red-light);
  position: relative;
  z-index: 1;
}
.process-rail__node h4 { margin: 0 0 0.35rem; font-size: 0.9rem; }
.process-rail__node p { margin: 0; font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* Vertical timeline */
.timeline-v {
  position: relative;
  padding-inline-start: 2.5rem;
  max-width: 640px;
}
.timeline-v::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.65rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red), var(--red-dark), transparent);
}
.timeline-v__item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-v__item:last-child { padding-bottom: 0; }
.timeline-v__item::before {
  content: "";
  position: absolute;
  inset-inline-start: -2.05rem;
  top: 0.35rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px var(--red-light);
}
.timeline-v__year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.timeline-v__item h4 { margin: 0 0 0.35rem; }
.timeline-v__item p { margin: 0; font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* Spotlight panel */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(220,38,38,0.06) 0%, var(--dark-soft) 50%, var(--black) 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.spotlight::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.12) 0%, transparent 70%);
  top: -200px;
  inset-inline-end: -100px;
  pointer-events: none;
}
.spotlight__label {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
  color: rgba(220,38,38,0.2);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  justify-self: center;
}
[dir="ltr"] .spotlight__label { writing-mode: vertical-lr; }
.spotlight__body { position: relative; z-index: 1; }
.spotlight__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
}
.spotlight__body p { color: var(--muted); line-height: 1.9; margin: 0 0 1rem; }

/* Stat orbs */
.stat-orbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.stat-orb {
  width: clamp(140px, 18vw, 180px);
  height: clamp(140px, 18vw, 180px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line-red);
  background: radial-gradient(circle at 30% 30%, rgba(220,38,38,0.08), var(--dark-soft));
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.stat-orb:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.12);
}
.stat-orb strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-orb span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; max-width: 10ch; }

/* Accordion FAQ */
.accordion { display: flex; flex-direction: column; gap: 0.5rem; max-width: 760px; }
.accordion__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--dark-soft);
  overflow: hidden;
  transition: border-color 0.3s;
}
.accordion__item.is-open { border-color: var(--line-red); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
.accordion__trigger:hover { color: var(--red-light); }
.accordion__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(220,38,38,0.12);
  color: var(--red-light);
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease);
}
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.accordion__panel-inner {
  padding: 0 1.35rem 1.15rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Zigzag rows */
.zigzag { display: flex; flex-direction: column; gap: 0; }
.zigzag__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}
.zigzag__row:last-child { border-bottom: none; }
.zigzag__row--flip .zigzag__media { order: 2; }
.zigzag__row--flip .zigzag__copy { order: 1; }
.zigzag__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
}
.zigzag__media img { width: 100%; height: 100%; object-fit: cover; }
.zigzag__copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0 0 0.65rem;
}
.zigzag__copy p { margin: 0 0 0.75rem; font-size: 0.88rem; color: var(--muted); line-height: 1.8; }
.zigzag__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
  border: 1px solid var(--line-red);
  border-radius: 100px;
}

/* Quote frame */
.quote-frame {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--dark-soft);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.quote-frame::before,
.quote-frame::after {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(220,38,38,0.2);
  position: absolute;
}
.quote-frame::before { top: 0.5rem; inset-inline-start: 1.5rem; }
.quote-frame::after { content: "\201D"; bottom: -1rem; inset-inline-end: 1.5rem; }
.quote-frame blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.6;
  color: var(--text);
}
.quote-frame cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
}

/* Contact tiles — mosaic */
.contact-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.contact-tile {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--dark-soft);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.contact-tile:hover { border-color: var(--line-red); transform: translateY(-3px); }
.contact-tile--wide { grid-column: span 2; }
.contact-tile--accent {
  background: linear-gradient(135deg, rgba(220,38,38,0.12), var(--dark-soft));
  border-color: var(--line-red);
}
.contact-tile__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: rgba(220,38,38,0.12);
  font-size: 1.25rem;
}
.contact-tile span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-tile strong, .contact-tile a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-tile a:hover { color: var(--red-light); }

/* Pill tags row */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.pill-tag {
  padding: 0.55rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--silver);
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(0,0,0,0.03);
  transition: all 0.25s;
}
.pill-tag:hover {
  border-color: var(--line-red);
  color: var(--red-light);
  background: rgba(220,38,38,0.08);
}

/* CTA spotlight — full bleed */
.cta-spotlight {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line-red);
}
.cta-spotlight__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(220, 38, 38, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}
.cta-spotlight__content { position: relative; z-index: 1; max-width: 520px; margin-inline: auto; }
.cta-spotlight h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}
.cta-spotlight p { color: var(--muted); margin: 0 0 1.5rem; line-height: 1.85; }
.cta-spotlight__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Values orbit list */
.orbit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.orbit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0,0,0,0.02), transparent);
  transition: border-color 0.3s;
}
.orbit-item:hover { border-color: var(--line-red); }
.orbit-item__ring {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--red-dark);
  background: radial-gradient(circle, rgba(220,38,38,0.15), transparent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red-light);
}
.orbit-item h4 { margin: 0 0 0.3rem; font-size: 0.95rem; }
.orbit-item p { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 960px) {
  .desktop-nav,
  .nav-actions .lang-switch { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .split, .steps, .values-grid, .stats-row { grid-template-columns: 1fr 1fr; }
  .bento__cell--span3, .bento__cell--span4, .bento__cell--span5, .bento__cell--span6,
  .bento__cell--span7, .bento__cell--span8 { grid-column: span 6; }
  .bento__cell--tall { grid-row: span 1; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__label { writing-mode: horizontal-tb; font-size: 2.5rem; }
  .process-rail { flex-direction: column; gap: 1.5rem; padding: 0; }
  .process-rail::before { display: none; }
  .zigzag__row, .zigzag__row--flip { grid-template-columns: 1fr; }
  .zigzag__row--flip .zigzag__media, .zigzag__row--flip .zigzag__copy { order: unset; }
  .contact-mosaic { grid-template-columns: 1fr; }
  .contact-tile--wide { grid-column: span 1; }
  .orbit-list { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .utility-inner { gap: 0.75rem 1.25rem; font-size: 0.72rem; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .split, .steps, .values-grid, .stats-row, .use-grid { grid-template-columns: 1fr; }
}
