/* ============================================================
   styles.css — Eleva · Editorial Luxury Identity
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400;1,9..144,500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== TOKENS ===== */
:root {
  --eleva-deep:    #2D2270;
  --eleva-violet:  #7B3FBF;
  --eleva-violet-2:#9B66D6;
  --eleva-deep-3:  #0F0A30;
  --paper:         #FFFFFF;
  --paper-2:       #F6F4FA;
  --line:          #E2DBF0;
  --ink:           #1B1450;
  --ink-soft:      #4A3D7E;
  --section-gap:   clamp(80px, 10vw, 160px);
  --header-h:      72px;
  --max-w:         1320px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Tajawal', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
[dir="ltr"] body { font-family: 'Fraunces', Georgia, serif; }
[dir="ltr"] body p,
[dir="ltr"] body li,
[dir="ltr"] body label,
[dir="ltr"] body input,
[dir="ltr"] body textarea,
[dir="ltr"] body .service-content h4,
[dir="ltr"] body .service-content p,
[dir="ltr"] body .value-card p,
[dir="ltr"] body .vm-card p,
[dir="ltr"] body .partnership-desc p,
[dir="ltr"] body .partnership-benefits p,
[dir="ltr"] body .about-col p,
[dir="ltr"] body .founder-text p,
[dir="ltr"] body .team-intro,
[dir="ltr"] body .contact-info-item span,
[dir="ltr"] body .footer-brand p,
[dir="ltr"] body .expansion-point {
  font-family: system-ui, -apple-system, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
:focus-visible { outline: 2px solid var(--eleva-violet); outline-offset: 3px; border-radius: 3px; }

/* ===== LAYOUT ===== */
.container {
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
}

/* ===== TYPOGRAPHY ATOMS ===== */
.eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eleva-violet);
  margin-bottom: 14px;
}
.section-head { margin-bottom: clamp(40px, 5vw, 72px); }
.section-head h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.section-head p {
  margin-top: 14px;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 560px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Tajawal', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}
[dir="ltr"] .btn { font-family: system-ui, sans-serif; }
.btn-primary {
  background: var(--eleva-deep);
  color: var(--paper);
  border: 2px solid var(--eleva-deep);
}
.btn-primary:hover {
  background: var(--eleva-violet);
  border-color: var(--eleva-violet);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,63,191,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.header-logo img { height: 42px; width: auto; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; align-items: center; }
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.site-header.scrolled .nav-links li a { color: var(--ink); }
.nav-links li a:hover { color: var(--eleva-violet); }
.btn-contact {
  font-size: 14px;
  font-weight: 600;
  color: var(--paper) !important;
  background: var(--eleva-violet);
  padding: 9px 18px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-contact:hover { background: var(--eleva-deep); transform: translateY(-1px); }
.site-header.scrolled .btn-contact { color: var(--paper) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.site-header.scrolled .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--paper);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 999;
  border-top: 1px solid var(--line);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav ul li a {
  display: block;
  padding: 11px 14px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav ul li a:hover { background: var(--paper-2); color: var(--eleva-violet); }
.mobile-nav .btn-contact { display: block; text-align: center; margin-top: 12px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  direction: ltr;
  background: var(--eleva-deep-3);
  overflow: hidden;
}
.hero-text-col {
  direction: rtl;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + clamp(48px,6vw,80px)) clamp(32px,4vw,72px) clamp(48px,6vw,80px);
  position: relative;
  z-index: 1;
}
[dir="ltr"] .hero-text-col { direction: ltr; }
.hero-image-col {
  position: relative;
  overflow: hidden;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: brightness(0.7);
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eleva-violet-2);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--eleva-violet-2);
  opacity: 0.45;
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 22px;
}
.hero-title .accent {
  display: block;
  color: var(--eleva-violet-2);
}
.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  color: var(--eleva-violet-2);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.hero-image-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: rgba(255,255,255,0.65);
}
[dir="rtl"] .hero-image-caption { left: auto; right: 28px; }
.chapter-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.5);
}
.caption-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  max-width: 240px;
  line-height: 1.6;
  display: block;
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--eleva-deep);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 32s linear infinite;
}
[dir="ltr"] .marquee-track { animation-name: marquee-ltr; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  text-transform: uppercase;
}
.marquee-dot { color: var(--eleva-violet-2); font-size: 9px; }
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}
@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== FOUNDER'S NOTE ===== */
.founder-section {
  background: var(--eleva-deep-3);
  padding: var(--section-gap) 0;
}
.founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  direction: ltr;
}
.founder-text { direction: rtl; }
[dir="ltr"] .founder-text { direction: ltr; }
.founder-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(155,102,214,0.3);
  box-shadow: 0 0 0 10px rgba(45,34,112,0.5), 0 0 0 11px rgba(155,102,214,0.15);
  flex-shrink: 0;
}
.founder-text .eyebrow { color: var(--eleva-violet-2); }
.founder-text h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--paper);
  line-height: 1.45;
  margin-bottom: 28px;
}
.founder-text p {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255,255,255,0.65);
  line-height: 1.95;
  margin-bottom: 18px;
}
.founder-signature {
  display: block;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--eleva-violet-2);
}

/* ===== ABOUT ===== */
.about-section {
  padding: var(--section-gap) 0;
  background: var(--paper);
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 48px;
}
.about-col h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--eleva-deep);
  margin-bottom: 14px;
  line-height: 1.4;
}
.about-col p {
  font-size: clamp(14px, 1.3vw, 15px);
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Quote — exact spec */
.about-quote {
  margin-top: 28px;
  padding: 32px 38px 32px 44px;
  background: #FFFFFF;
  color: var(--eleva-deep);
  border-radius: 14px;
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 800;
  line-height: 1.65;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px -24px rgba(45,34,112,0.25);
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
}
.about-quote::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--eleva-deep), var(--eleva-violet));
}
.about-quote::after {
  content: "\201C";
  position: absolute;
  top: -12px;
  inset-inline-end: 18px;
  font-family: 'Fraunces', serif;
  font-size: 90px;
  color: var(--eleva-violet);
  opacity: 0.18;
  line-height: 1;
}

/* Values */
.values-section { margin-top: 64px; }
.values-section > h3 {
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.value-card {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,34,112,0.1);
}
.value-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 44px;
  font-weight: 300;
  color: var(--eleva-violet);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 10px;
}
.value-icon {
  width: 42px;
  height: 42px;
  background: rgba(123,63,191,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.value-icon svg {
  width: 20px; height: 20px;
  color: var(--eleva-violet);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.75; }

/* Vision / Mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vm-card {
  padding: 32px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.vm-card.vision { background: var(--eleva-deep); border-color: var(--eleva-deep); }
.vm-card.mission { background: var(--paper-2); }
.vm-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.vm-card.vision .vm-icon { background: rgba(255,255,255,0.12); }
.vm-card.mission .vm-icon { background: rgba(45,34,112,0.07); }
.vm-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.vm-card.vision .vm-icon svg { color: rgba(255,255,255,0.85); }
.vm-card.mission .vm-icon svg { color: var(--eleva-violet); }
.vm-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.vm-card.vision h4 { color: var(--paper); }
.vm-card.mission h4 { color: var(--ink); }
.vm-card p { font-size: 14px; line-height: 1.85; }
.vm-card.vision p { color: rgba(255,255,255,0.7); }
.vm-card.mission p { color: var(--ink-soft); }

/* ===== GLOBAL EXPANSION ===== */
.expansion-section {
  padding: var(--section-gap) 0;
  background: var(--paper-2);
}
.expansion-section .section-head p { max-width: 720px; }
.expansion-card {
  margin-top: 40px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.expansion-card img {
  width: 100%;
  height: clamp(300px, 40vw, 500px);
  object-fit: cover;
}
.expansion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,10,48,0.85) 0%, rgba(15,10,48,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}
.expansion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--eleva-violet);
  color: var(--paper);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}
.expansion-points { display: flex; flex-direction: column; gap: 10px; }
.expansion-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}
.expansion-point::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--eleva-violet-2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PARTNERSHIP / ABRAJ ===== */
.partnership-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(170deg, #f9f7ff 0%, var(--paper) 55%, #f0ebff 100%);
  position: relative;
  overflow: hidden;
}
.partnership-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--eleva-deep), var(--eleva-violet), var(--eleva-violet-2));
}

/* Partnership hero strip */
.partnership-hero-strip {
  background: linear-gradient(135deg, var(--eleva-deep-3) 0%, var(--eleva-deep) 60%, #3d2890 100%);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  margin-bottom: clamp(40px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -16px rgba(45,34,112,0.35);
}
.partnership-hero-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(123,63,191,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.partnership-hero-strip::after {
  content: '';
  position: absolute;
  bottom: -40px;
  inset-inline-start: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(155,102,214,0.08);
  pointer-events: none;
}

.partnership-logos-wrap {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
}
.partnership-logo-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.3s;
}
.partnership-logo-box:hover { background: rgba(255,255,255,0.12); }
.partnership-logo-box img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.partnership-logo-box .logo-eleva-strip {
  height: 52px;
  filter: brightness(0) invert(1) opacity(0.9);
}
.partnership-logo-box .logo-abrag-strip {
  height: 64px;
  max-width: 160px;
}
.handshake-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
}
.handshake-icon svg {
  width: 24px; height: 24px;
  color: rgba(255,255,255,0.8);
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.partnership-strip-text {
  flex: 1;
  min-width: 240px;
}
.partnership-strip-text h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.25;
}
.partnership-strip-text .partnership-headline {
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}
.partnership-strip-text .highlight-text {
  color: var(--eleva-violet-2);
  font-weight: 700;
}
.official-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eleva-violet-2);
  margin-bottom: 12px;
}
.official-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--eleva-violet-2);
}

.partnership-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 40px;
}
.partnership-desc h3, .partnership-benefits h3 {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.partnership-desc p, .partnership-benefits > p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 22px;
}
.abrag-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.highlight-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: box-shadow 0.25s;
}
.highlight-item:hover { box-shadow: 0 6px 20px -8px rgba(45,34,112,0.15); }
.highlight-item svg {
  width: 18px; height: 18px;
  color: var(--eleva-violet);
  fill: currentColor;
  flex-shrink: 0;
  margin-top: 3px;
}
.highlight-item h4 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.highlight-item p { font-size: 12px; color: var(--ink-soft); }
.benefits-list { display: flex; flex-direction: column; gap: 11px; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.65;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.benefits-list li:hover { background: var(--paper-2); }
.benefits-list li svg {
  width: 17px; height: 17px;
  color: var(--eleva-violet);
  fill: currentColor;
  flex-shrink: 0; margin-top: 2px;
}
.benefits-list strong { color: var(--ink); }
.partnership-cta {
  background: linear-gradient(135deg, var(--eleva-deep) 0%, var(--eleva-deep-3) 100%);
  border-radius: 16px;
  padding: clamp(32px, 4vw, 52px);
  text-align: center;
  box-shadow: 0 20px 48px -16px rgba(45,34,112,0.4);
  position: relative;
  overflow: hidden;
}
.partnership-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(123,63,191,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.partnership-cta p { font-size: clamp(15px, 1.4vw, 19px); color: rgba(255,255,255,0.75); margin-bottom: 22px; }
.partnership-cta .btn-primary {
  background: var(--paper);
  color: var(--eleva-deep);
  border-color: var(--paper);
}
.partnership-cta .btn-primary:hover {
  background: var(--eleva-violet-2);
  border-color: var(--eleva-violet-2);
  color: var(--paper);
  box-shadow: 0 8px 28px rgba(155,102,214,0.4);
}

/* ===== STATS ===== */
.stats-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, var(--eleva-deep) 0%, var(--eleva-deep-3) 100%);
  text-align: center;
}
.stats-section .eyebrow { color: var(--eleva-violet-2); }
.stats-heading {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(64px, 8vw, 128px);
  font-weight: 400;
  color: var(--eleva-violet-2);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  display: block;
}

/* ===== SERVICES ===== */
.services-section {
  padding: var(--section-gap) 0;
  background: var(--paper);
}
.services-list { margin-top: 40px; }
.service-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  border-radius: 6px;
  transition: background 0.3s ease, border-radius 0.3s ease;
  cursor: default;
}
.service-row:first-child { border-top: 1px solid var(--line); }
.service-row:hover { background: var(--eleva-deep); }
.service-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 300;
  color: var(--eleva-violet);
  opacity: 0.3;
  min-width: 56px;
  line-height: 1;
  transition: opacity 0.3s, color 0.3s;
}
.service-row:hover .service-num { color: var(--eleva-violet-2); opacity: 0.55; }
.service-content { flex: 1; }
.service-content h4 {
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  transition: color 0.3s;
}
.service-row:hover .service-content h4 { color: var(--paper); }
.service-content p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  transition: color 0.3s;
}
.service-row:hover .service-content p { color: rgba(255,255,255,0.65); }
.service-arrow {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: all 0.3s;
}
.service-arrow svg {
  width: 16px; height: 16px;
  color: var(--ink-soft);
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: color 0.3s, transform 0.3s;
}
.service-row:hover .service-arrow { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); }
.service-row:hover .service-arrow svg { color: var(--paper); transform: translateX(-3px); }
[dir="ltr"] .service-row:hover .service-arrow svg { transform: translateX(3px); }

/* ===== PRODUCTS ===== */
.products-section {
  padding: var(--section-gap) 0;
  background: var(--paper-2);
}
.products-tabs {
  display: flex;
  gap: 8px;
  margin-top: 36px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper);
  cursor: pointer;
  transition: all 0.25s ease;
}
.tab-btn:hover { border-color: var(--eleva-violet); color: var(--eleva-violet); }
.tab-btn.active { background: var(--eleva-deep); border-color: var(--eleva-deep); color: var(--paper); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(45,34,112,0.12); }
.product-card.hidden { display: none; }
.product-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-info { padding: 18px; }
.product-info h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.product-info ul { display: flex; flex-direction: column; gap: 5px; }
.product-info li {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 12px; color: var(--ink-soft); line-height: 1.5;
}
.product-info li svg {
  width: 13px; height: 13px;
  color: var(--eleva-violet);
  fill: currentColor;
  flex-shrink: 0; margin-top: 2px;
}

/* ===== TEAM ===== */
.team-section {
  padding: var(--section-gap) 0;
  background: var(--paper);
}
.team-intro {
  max-width: 600px;
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--ink-soft);
  line-height: 1.9;
  margin-top: 18px;
  margin-bottom: 52px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.member-card { text-align: center; }
.member-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3/4;
  margin-bottom: 14px;
}
.member-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.45s ease;
}
.member-card:hover .member-photo-wrap img { transform: scale(1.04); }
.member-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.member-card p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eleva-violet);
}

/* ===== CONTACT ===== */
.contact-section {
  padding: var(--section-gap) 0;
  background: var(--eleva-deep-3);
}
.contact-section .eyebrow { color: var(--eleva-violet-2); }
.contact-section h2 {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: clamp(36px, 5vw, 60px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  margin-bottom: 44px;
}
.contact-info h3 { font-size: 19px; font-weight: 700; color: var(--paper); margin-bottom: 26px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 18px;
}
.contact-info-item svg {
  width: 17px; height: 17px;
  color: var(--eleva-violet-2);
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round;
  flex-shrink: 0; margin-top: 2px;
}
.contact-info-item span { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; }
.contact-info-item a { color: var(--eleva-violet-2); transition: color 0.2s; }
.contact-info-item a:hover { color: var(--paper); }
.contact-form h3 { font-size: 19px; font-weight: 700; color: var(--paper); margin-bottom: 26px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.15);
  padding: 10px 0;
  font-size: 15px;
  color: var(--paper);
  font-family: 'Tajawal', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
[dir="ltr"] .form-group input,
[dir="ltr"] .form-group textarea { font-family: system-ui, sans-serif; }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--eleva-violet-2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group textarea { resize: vertical; min-height: 90px; }
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 44px;
  border: 1px solid rgba(255,255,255,0.08);
}
.map-wrap iframe { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--eleva-deep-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand img {
  height: 48px; width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eleva-violet-2);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--paper); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
}

/* ===== FLOATING SOCIAL ===== */
.social-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--eleva-violet);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(123,63,191,0.4);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
}
.social-toggle:hover { background: var(--eleva-deep); transform: scale(1.06); }
.social-toggle svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--paper); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s;
}
.social-toggle.open svg { transform: rotate(45deg); }
.social-stack {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 899;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.social-stack.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.social-link {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.22);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.social-link:hover { transform: scale(1.12); }
.social-link svg { width: 20px; height: 20px; fill: var(--paper); }
.social-link.wa  { background: #25d366; }
.social-link.ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-link.tt  { background: #010101; }
.social-link.fb  { background: #1877f2; }

/* Lang float */
.lang-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--eleva-deep);
  border: 2px solid var(--eleva-violet);
  box-shadow: 0 6px 24px rgba(45,34,112,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.lang-float:hover {
  background: var(--eleva-violet);
  border-color: var(--eleva-violet);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(123,63,191,0.45);
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-col { padding: calc(var(--header-h) + 48px) 32px 52px; }
  .hero-image-col { height: 480px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .partnership-hero-strip { flex-direction: column; gap: 28px; text-align: center; }
  .partnership-strip-text { text-align: center; }
  .partnership-logos-wrap { justify-content: center; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero-image-col { height: 55vw; min-height: 260px; max-height: 380px; }
  .hero-image-col img { object-position: center 22%; }
  .hero-stats { gap: 20px; }
  .founder-inner { grid-template-columns: 1fr; justify-items: center; }
  .founder-photo { width: 200px; height: 200px; }
  .about-cols { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .partnership-body { grid-template-columns: 1fr; }
  .abrag-highlights { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: 1; }
  .service-row { padding: 20px 16px; gap: 16px; }
  .service-num { min-width: 44px; font-size: 24px; }
}

@media (max-width: 480px) {
  .hero-image-col { height: 62vw; min-height: 220px; max-height: 300px; }
  .hero-image-col img { object-position: center 25%; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 14px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .partnership-hero-strip { flex-direction: column; gap: 28px; }
  .partnership-strip-text { text-align: center; }
  .container { width: min(var(--max-w), 100% - 32px); }
  .social-toggle, .lang-float { bottom: 20px; }
  .social-toggle { right: 20px; }
  .lang-float { left: 20px; }
  .social-stack { right: 20px; bottom: 84px; }
}
