/* Observer Technology & Solutions — Bold Creative theme
   ============================================== */

:root {
  /* Brand */
  --orange: #E25022;
  --orange-2: #FF6A35;
  --orange-3: #C04018;
  --orange-soft: #FFE1D5;
  --ink: #0B0E14;
  --ink-2: #11151D;
  --ink-3: #1A2030;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text: #F4F6FA;
  --text-2: #B5BCC9;
  --text-3: #7A8294;
  --paper: #FBF9F4;
  --paper-2: #F3EFE6;
  --paper-3: #E9E3D6;
  --cream: #FFF8EE;
  --accent: #4CD3C2;
  --accent-2: #FFD166;
  --accent-3: #7C5CFF;
  --accent-pink: #FF6B9D;
  --teal-soft: #DDF6F2;
  --yellow-soft: #FFF3CC;
  --purple-soft: #ECE6FF;

  /* Typography */
  --font-display: "Space Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-ar: "Tajawal", "Manrope", system-ui, sans-serif;
  --font-ar-display: "Tajawal", "Space Grotesk", system-ui, sans-serif;

  --nav-h: 76px;
  --maxw: 1280px;
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
  transition: opacity .15s ease;
}
/* Prevent language/text flash before i18n applies */
html[data-pre-lang]:not(.i18n-ready) body { opacity: 0; }

html[dir="rtl"] body { font-family: var(--font-ar); }
html[dir="rtl"] .display, html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] h4, html[dir="rtl"] .nav-cta, html[dir="rtl"] .btn,
html[dir="rtl"] .stat-n, html[dir="rtl"] .num {
  font-family: var(--font-ar-display);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ===== Typography helpers ===== */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-2);
  padding: 8px 14px;
  border: 1px solid rgba(226, 80, 34, 0.35);
  border-radius: 99px;
  background: rgba(226, 80, 34, 0.08);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.eyebrow.light { color: var(--orange-3); border-color: rgba(226, 80, 34, 0.25); }

.muted { color: var(--text-2); }
.num { font-family: var(--font-display); font-variant-numeric: tabular-nums; }

/* ===== Container ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(226, 80, 34, 0.55), inset 0 -2px 0 rgba(0,0,0,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(226, 80, 34, 0.65); background: var(--orange-2); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--orange-2); color: var(--orange-2); }
.btn-light {
  background: var(--ink);
  color: #fff;
}
.btn-light:hover { background: var(--orange); }
.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(4px); }
html[dir="rtl"] .btn-arrow:hover svg { transform: translateX(-4px); }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(11, 14, 20, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.nav.scrolled { background: rgba(11, 14, 20, 0.92); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: transform .25s ease, filter .25s ease;
  filter: drop-shadow(0 4px 10px rgba(226,80,34,0.35));
}
.brand-mark::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,80,34,0.28) 0%, transparent 65%);
  opacity: 0; transition: opacity .3s ease;
  z-index: -1;
}
.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 6px 14px rgba(226,80,34,0.55));
}
.brand:hover .brand-mark::before { opacity: 1; }
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
  user-select: none;
}
.brand-mark svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 2.2; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.brand-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  line-height: 1.1;
  display: block;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
html[dir="rtl"] .brand-sub { letter-spacing: 0.05em; }
/* On light nav (paper sections behind transparent nav) keep dark variant readable */
nav[data-theme="light"] .brand-sub { color: var(--orange-3); text-shadow: none; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 99px;
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--orange-2); background: rgba(226, 80, 34, 0.1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  padding: 8px 12px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  transition: all .18s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.lang-toggle:hover { color: var(--text); border-color: var(--orange-2); }
.lang-toggle svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.hamburger { display: none; width: 40px; height: 40px; border-radius: 99px; border: 1px solid var(--line-2); align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.hamburger span { display: block; width: 16px; height: 1.5px; background: var(--text); transition: all .25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 8%, rgba(226,80,34,0.28), transparent 45%),
    radial-gradient(ellipse at 88% 18%, rgba(124,92,255,0.18), transparent 50%),
    radial-gradient(ellipse at 92% 88%, rgba(76,211,194,0.18), transparent 50%),
    radial-gradient(ellipse at 8% 95%, rgba(255,209,102,0.10), transparent 50%),
    linear-gradient(180deg, #0B0E14 0%, #11151D 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero-blob.b1 { width: 320px; height: 320px; background: var(--orange); top: 8%; left: -80px; }
.hero-blob.b2 { width: 280px; height: 280px; background: var(--accent); top: 30%; right: -60px; animation-delay: -6s; animation-duration: 22s; }
.hero-blob.b3 { width: 240px; height: 240px; background: var(--accent-3); bottom: 8%; left: 35%; animation-delay: -12s; animation-duration: 26s; opacity: 0.35; }
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px,-30px) scale(1.08); }
  100% { transform: translate(-30px,40px) scale(0.95); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { animation: fadeUp .8s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 {
  margin: 24px 0 22px;
  font-size: clamp(40px, 6.2vw, 84px);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}
.hero h1 .word { display: inline-block; }
.hero h1 .accent {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.08em;
  height: 8px;
  background: linear-gradient(90deg, var(--orange-2), transparent);
  border-radius: 4px;
  opacity: 0.6;
}
.hero p {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--text-2);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.65;
}
html[dir="rtl"] .hero p { max-width: 580px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero visual — bold creative dashboard mockup */
.hero-vis {
  position: relative;
  height: 540px;
  animation: fadeUp .8s ease 0.15s both;
}
.hv-people {
  position: absolute;
  width: 200px;
  height: 260px;
  border-radius: 22px;
  overflow: hidden;
  bottom: -10px;
  left: -20px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  border: 3px solid rgba(255,255,255,0.08);
  z-index: 3;
  animation: fadeUp .8s ease .5s both, float 8s ease-in-out 1s infinite;
}
html[dir="rtl"] .hv-people { left: auto; right: -20px; }
.hv-people img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}
.hv-people::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,14,20,0.75) 100%);
}
.hv-people-tag {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
html[dir="rtl"] .hv-people-tag { letter-spacing: 0.04em; }
.hv-people-tag::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
.hv-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(226,80,34,0.22), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.hv-card {
  position: absolute;
  background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  overflow: hidden;
}
.hv-main {
  top: 30px; left: 0; right: 50px;
  height: 360px;
  padding: 22px;
}
.hv-head { display: flex; align-items: center; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.hv-dot { width: 9px; height: 9px; border-radius: 50%; }
.hv-dot.r { background: #FF5F57; }
.hv-dot.y { background: #FEBC2E; }
.hv-dot.g { background: #28C840; }
.hv-title { margin-inline-start: auto; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }
html[dir="rtl"] .hv-title { letter-spacing: 0.04em; }
.hv-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.hv-stat { background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.hv-stat-l { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
html[dir="rtl"] .hv-stat-l { letter-spacing: 0.04em; }
.hv-stat-v { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--orange-2); line-height: 1; margin-bottom: 4px; }
.hv-stat-s { font-size: 10px; color: var(--text-3); }
.hv-graph { background: rgba(0,0,0,0.25); border-radius: 12px; padding: 14px; height: 124px; position: relative; overflow: hidden; }
.hv-graph::before {
  content: "";
  position: absolute;
  inset: 14px;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 24px;
}
.hv-graph svg { width: 100%; height: 100%; position: relative; }

.hv-pill {
  position: absolute;
  top: 0; right: 0;
  width: 230px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--orange), var(--orange-3));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 20px 50px -10px rgba(226, 80, 34, 0.5);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hv-pill-l { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; margin-bottom: 6px; }
html[dir="rtl"] .hv-pill-l { letter-spacing: 0.04em; }
.hv-pill-v { font-family: var(--font-display); font-size: 36px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.hv-pill-s { font-size: 11px; opacity: 0.85; }

.hv-alert {
  position: absolute;
  bottom: 30px; left: 30px;
  width: 280px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(11, 14, 20, 0.95);
  border: 1px solid rgba(76, 211, 194, 0.3);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.7);
  animation: float 6s ease-in-out 1s infinite;
}
.hv-alert-h { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hv-alert-icon { width: 32px; height: 32px; border-radius: 10px; background: rgba(76, 211, 194, 0.15); display: grid; place-items: center; }
.hv-alert-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; }
.hv-alert-t { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--text); }
.hv-alert-d { font-size: 11.5px; color: var(--text-2); line-height: 1.45; }

/* ===== Hero stats strip ===== */
.hero-stats {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.hs-item { display: flex; align-items: center; gap: 16px; }
.hs-n { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--orange-2); line-height: 1; letter-spacing: -0.02em; }
.hs-l { font-size: 13px; color: var(--text-2); line-height: 1.3; }

/* ===== Marquee — colorful ===== */
.marquee {
  background: linear-gradient(90deg, var(--cream) 0%, var(--paper) 50%, var(--teal-soft) 100%);
  color: var(--ink);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--paper-2);
  border-bottom: 1px solid var(--paper-2);
  position: relative;
}
.marquee-item:nth-child(8n+1)::after { color: var(--orange); }
.marquee-item:nth-child(8n+2)::after { color: var(--accent-3); }
.marquee-item:nth-child(8n+3)::after { color: #2BB5A0; }
.marquee-item:nth-child(8n+4)::after { color: var(--accent-pink); }
.marquee-item:nth-child(8n+5)::after { color: #E5B53C; }
.marquee-item:nth-child(8n+6)::after { color: var(--orange-2); }
.marquee-item:nth-child(8n+7)::after { color: #5B3FE0; }
.marquee-item:nth-child(8n+0)::after { color: var(--accent); }
.marquee-track {
  display: flex;
  gap: 48px;
  animation: scroll 32s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
html[dir="rtl"] .marquee-track { animation-name: scroll-rtl; }
@keyframes scroll-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-item::after {
  content: "✶";
  color: var(--orange);
  font-size: 16px;
}

/* ===== Section ===== */
.section { padding: 120px 0; position: relative; }
.section.dark { background: var(--ink); }
.section.darker { background: var(--ink-2); }
.section.paper {
  background:
    radial-gradient(ellipse at 90% 10%, var(--orange-soft), transparent 45%),
    radial-gradient(ellipse at 10% 90%, var(--teal-soft), transparent 45%),
    var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.section.paper.cream { background: var(--cream); }
.section.paper .container { position: relative; z-index: 1; }
.section.paper .section-head h2,
.section.paper .about-text h2 { color: var(--ink); }
.section.paper .muted { color: #525968; }
.section.paper .eyebrow { color: var(--orange-3); border-color: rgba(192, 64, 24, 0.25); }
@media (max-width: 720px) { .section { padding: 80px 0; } }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 18px 0 16px;
}
.section-head p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}
.section.paper .section-head p { color: #525968; }

/* ===== About — two-column with cards ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 16px 0 20px;
}
.about-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 14px;
}
.section.paper .about-text p { color: #4A5160; }
.about-cards { display: grid; gap: 14px; }
.about-card {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line-2);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.about-card:hover { transform: translateY(-4px); border-color: rgba(226, 80, 34, 0.4); }
/* Paper variant — light colorful cards */
.section.paper .about-card {
  background: #fff;
  border: 1px solid var(--paper-2);
  box-shadow: 0 2px 0 var(--paper-2);
  position: relative;
  overflow: hidden;
}
.section.paper .about-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--orange-3));
}
html[dir="rtl"] .section.paper .about-card::before { inset: 0 0 auto auto; }
.section.paper .about-card:nth-child(2)::before { background: linear-gradient(180deg, var(--accent), #2BB5A0); }
.section.paper .about-card:nth-child(3)::before { background: linear-gradient(180deg, var(--accent-3), #5B3FE0); }
.section.paper .about-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 20px 50px -20px rgba(11,14,20,0.2);
}
.ac-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--orange-2); letter-spacing: 0.18em; }
html[dir="rtl"] .ac-num { letter-spacing: 0.04em; }
.section.paper .ac-num { color: var(--orange-3); }
.section.paper .about-card:nth-child(2) .ac-num { color: #2BB5A0; }
.section.paper .about-card:nth-child(3) .ac-num { color: #5B3FE0; }
.about-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 6px 0 8px; letter-spacing: -0.01em; }
.section.paper .about-card h3 { color: var(--ink); }
.about-card p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; margin: 0; }
.section.paper .about-card p { color: #525968; }

/* ===== Platform pipeline ===== */
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
  position: relative;
}
.pl-step {
  padding: 32px 26px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.pl-step:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 80, 34, 0.4);
  background: linear-gradient(160deg, rgba(226, 80, 34, 0.08), rgba(255,255,255,0.01));
}
.pl-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 14px;
  inset-inline-end: 20px;
  pointer-events: none;
}
.pl-step:hover .pl-num { color: rgba(226, 80, 34, 0.15); }
.pl-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-3));
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px -8px rgba(226, 80, 34, 0.5);
  position: relative; z-index: 1;
  transition: transform .3s ease;
}
.pl-step:hover .pl-ico { transform: rotate(-6deg) scale(1.08); }
.pipeline > .pl-step:nth-child(2) .pl-ico { background: linear-gradient(135deg, var(--accent), #2BB5A0); box-shadow: 0 8px 22px -8px rgba(76,211,194,0.5); }
.pipeline > .pl-step:nth-child(3) .pl-ico { background: linear-gradient(135deg, var(--accent-3), #5B3FE0); box-shadow: 0 8px 22px -8px rgba(124,92,255,0.5); }
.pipeline > .pl-step:nth-child(4) .pl-ico { background: linear-gradient(135deg, var(--accent-2), #E5B53C); box-shadow: 0 8px 22px -8px rgba(255,209,102,0.55); }
.pl-ico svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }
.pipeline > .pl-step:nth-child(4) .pl-ico svg { stroke: #5C4400; }
.pl-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.pl-step p { font-size: 14px; color: var(--text-2); line-height: 1.55; margin: 0; position: relative; z-index: 1; }

/* ===== Products — bold tabbed showcase ===== */
.products-shell {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.005));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-top: 24px;
}
.product-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.pt-btn {
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  text-align: start;
  transition: all .25s ease;
  display: flex; flex-direction: column; gap: 4px;
  position: relative; overflow: hidden;
}
.pt-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-3));
  opacity: 0;
  transition: opacity .25s ease;
}
.pt-btn:nth-child(2)::before { background: linear-gradient(135deg, var(--accent), #2BB5A0); }
.pt-btn:nth-child(3)::before { background: linear-gradient(135deg, var(--accent-3), #5B3FE0); }
.pt-btn:nth-child(4)::before { background: linear-gradient(135deg, var(--accent-pink), #D63B6F); }
.pt-btn > * { position: relative; z-index: 1; }
.pt-btn .pt-tag { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }
html[dir="rtl"] .pt-btn .pt-tag { letter-spacing: 0.04em; }
.pt-btn .pt-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.pt-btn:hover { border-color: rgba(226, 80, 34, 0.35); background: rgba(226, 80, 34, 0.06); }
.pt-btn.active { border-color: transparent; }
.pt-btn.active::before { opacity: 1; }
.pt-btn.active .pt-tag { color: rgba(255,255,255,0.85); }
.pt-btn.active .pt-name { color: #fff; }

.product-panel {
  display: none;
  padding: 38px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(0,0,0,0.2));
  border: 1px solid var(--line);
  animation: fadeIn .35s ease both;
}
.product-panel.active { display: grid; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.pp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.pp-text .pp-tag { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-2); margin-bottom: 14px; }
html[dir="rtl"] .pp-text .pp-tag { letter-spacing: 0.04em; }
.pp-text h3 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 16px; }
.pp-text p { font-size: 15.5px; color: var(--text-2); line-height: 1.7; margin: 0 0 24px; }
.pp-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(226,80,34,0.18), transparent 70%),
    linear-gradient(160deg, #050709, #11151D);
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.pp-img-wrap img { max-width: 78%; max-height: 78%; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }
.pp-img-wrap.eis { background: linear-gradient(160deg, #f3f1ec, #e8e3d8); }
.pp-img-wrap.eis img { filter: drop-shadow(0 18px 30px rgba(0,0,0,0.2)); }

/* SmartLock illustrated SVG card (no product image available) */
.lock-svg { width: 60%; height: auto; }

/* ===== Solutions grid — colorful ===== */
.sol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sol-card {
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--paper-2);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--paper-2);
}
.sol-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
html[dir="rtl"] .sol-card::before { transform-origin: right; }
.sol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -20px rgba(11,14,20,0.18);
  border-color: transparent;
}
.sol-card:hover::before { transform: scaleX(1); }
.sol-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-soft);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--orange-3);
  transition: transform .3s ease;
}
.sol-card:hover .sol-ico { transform: rotate(-8deg) scale(1.1); }
.sol-ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
/* Per-card color theme */
.sol-card:nth-child(1) .sol-ico { background: var(--orange-soft); color: var(--orange-3); }
.sol-card:nth-child(1)::before { background: linear-gradient(90deg, var(--orange), var(--orange-2)); }
.sol-card:nth-child(2) .sol-ico { background: var(--teal-soft); color: #2BB5A0; }
.sol-card:nth-child(2)::before { background: linear-gradient(90deg, var(--accent), #2BB5A0); }
.sol-card:nth-child(3) .sol-ico { background: var(--purple-soft); color: #5B3FE0; }
.sol-card:nth-child(3)::before { background: linear-gradient(90deg, var(--accent-3), #5B3FE0); }
.sol-card:nth-child(4) .sol-ico { background: var(--yellow-soft); color: #B8860B; }
.sol-card:nth-child(4)::before { background: linear-gradient(90deg, var(--accent-2), #E5B53C); }
.sol-card:nth-child(5) .sol-ico { background: #FFE0EC; color: #D63B6F; }
.sol-card:nth-child(5)::before { background: linear-gradient(90deg, var(--accent-pink), #E0457A); }
.sol-card:nth-child(6) .sol-ico { background: var(--teal-soft); color: #2BB5A0; }
.sol-card:nth-child(6)::before { background: linear-gradient(90deg, var(--accent), #2BB5A0); }
.sol-card:nth-child(7) .sol-ico { background: var(--orange-soft); color: var(--orange-3); }
.sol-card:nth-child(7)::before { background: linear-gradient(90deg, var(--orange), var(--orange-2)); }
.sol-card:nth-child(8) .sol-ico { background: var(--purple-soft); color: #5B3FE0; }
.sol-card:nth-child(8)::before { background: linear-gradient(90deg, var(--accent-3), #5B3FE0); }
.sol-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--ink); letter-spacing: -0.01em; }
.sol-card p { font-size: 13.5px; color: #525968; line-height: 1.55; margin: 0; }

/* ===== Why — colorful card grid ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--paper-2);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--paper-2);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-soft), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.why-card:nth-child(2)::before { background: linear-gradient(135deg, var(--teal-soft), transparent 70%); }
.why-card:nth-child(3)::before { background: linear-gradient(135deg, var(--purple-soft), transparent 70%); }
.why-card:nth-child(4)::before { background: linear-gradient(135deg, var(--yellow-soft), transparent 70%); }
.why-card:nth-child(5)::before { background: linear-gradient(135deg, #FFE0EC, transparent 70%); }
.why-card:nth-child(6)::before { background: linear-gradient(135deg, var(--orange-soft), transparent 70%); }
.why-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: transparent;
  box-shadow: 0 24px 50px -20px rgba(11,14,20,0.18);
}
.why-card:hover::before { opacity: 1; }
.why-card > * { position: relative; z-index: 1; }
.why-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-3));
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0;
  box-shadow: 0 6px 16px -4px rgba(226,80,34,0.45);
}
.why-card:nth-child(2) .why-num { background: linear-gradient(135deg, var(--accent), #2BB5A0); box-shadow: 0 6px 16px -4px rgba(76,211,194,0.45); }
.why-card:nth-child(3) .why-num { background: linear-gradient(135deg, var(--accent-3), #5B3FE0); box-shadow: 0 6px 16px -4px rgba(124,92,255,0.45); }
.why-card:nth-child(4) .why-num { background: linear-gradient(135deg, var(--accent-2), #E5B53C); color: #5C4400; box-shadow: 0 6px 16px -4px rgba(255,209,102,0.55); }
.why-card:nth-child(5) .why-num { background: linear-gradient(135deg, var(--accent-pink), #E0457A); box-shadow: 0 6px 16px -4px rgba(255,107,157,0.45); }
.why-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; color: var(--ink); }
.why-card p { font-size: 14px; color: #525968; line-height: 1.6; margin: 0; }

/* ===== References — colorful tags ===== */
.refs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ref-card {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.ref-card::after {
  content: "";
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(40px);
  opacity: 0;
  top: -20px; right: -20px;
  transition: opacity .3s ease;
}
.ref-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }
.ref-card:hover::after { opacity: 0.5; }
.ref-cat { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; display: inline-block; padding: 3px 10px; border-radius: 99px; }
html[dir="rtl"] .ref-cat { letter-spacing: 0.04em; }
.ref-cat[data-i18n="ref.cat.security"] { background: rgba(226,80,34,0.15); color: var(--orange-2); }
.ref-cat[data-i18n="ref.cat.fintech"] { background: rgba(76,211,194,0.15); color: var(--accent); }
.ref-cat[data-i18n="ref.cat.education"] { background: rgba(124,92,255,0.15); color: #A38AFF; }
.ref-cat[data-i18n="ref.cat.logistics"] { background: rgba(255,209,102,0.15); color: var(--accent-2); }
.ref-cat[data-i18n="ref.cat.community"] { background: rgba(255,107,157,0.15); color: var(--accent-pink); }
.ref-card:has(.ref-cat[data-i18n="ref.cat.fintech"])::after { background: var(--accent); }
.ref-card:has(.ref-cat[data-i18n="ref.cat.education"])::after { background: var(--accent-3); }
.ref-card:has(.ref-cat[data-i18n="ref.cat.logistics"])::after { background: var(--accent-2); }
.ref-card:has(.ref-cat[data-i18n="ref.cat.community"])::after { background: var(--accent-pink); }
.ref-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.01em; position: relative; z-index: 1; }
.ref-card p { font-size: 12.5px; color: var(--text-2); line-height: 1.5; margin: 0; position: relative; z-index: 1; }

/* =====================================================
   PRODUCT DETAIL PAGES — Gallery, Specs table, Components
   ===================================================== */
/* Image gallery */
.pgallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin: 40px 0;
}
.pgallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(160deg, #050709, #11151D);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease;
  aspect-ratio: 4/3;
  isolation: isolate;
}
.pgallery-item.large { grid-row: span 2; aspect-ratio: auto; }
.pgallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform .5s cubic-bezier(.4,0,.2,1), filter .3s ease;
  filter: saturate(1.08);
}
.pgallery-item:hover { transform: translateY(-4px); border-color: rgba(226,80,34,0.5); }
.pgallery-item:hover img { transform: scale(1.06); filter: saturate(1.2); }
.pgallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(226,80,34,0.15), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}
.pgallery-item:hover::before { opacity: 1; }
.pgallery-item img { position: relative; z-index: 1; }
.pgallery-caption {
  position: absolute;
  bottom: 12px;
  inset-inline-start: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 760px) {
  .pgallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pgallery-item.large { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/10; }
}
@media (max-width: 480px) {
  .pgallery { grid-template-columns: 1fr; }
  .pgallery-item.large { grid-column: span 1; }
}

/* Component breakdown cards (e.g., BNZ-100, BNZ-101...) */
.components {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.cmp-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.005));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
  overflow: hidden;
}
.cmp-card:hover { transform: translateY(-6px); border-color: var(--orange-2); }
.cmp-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cmp-card:hover::before { transform: scaleX(1); }
.cmp-code {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange-2);
  margin-bottom: 8px;
}
.cmp-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.cmp-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* Technical specifications table */
.specs-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.specs-table tr { transition: background .15s ease; }
.specs-table tr:hover { background: rgba(226,80,34,0.04); }
.specs-table tr:not(:last-child) { border-bottom: 1px solid var(--line); }
.specs-table th, .specs-table td {
  padding: 14px 22px;
  text-align: start;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.55;
}
.specs-table th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange-2);
  letter-spacing: 0.02em;
  white-space: nowrap;
  width: 30%;
}
.specs-table td { color: var(--text); }
.specs-table td strong { color: #fff; font-weight: 700; }
@media (max-width: 600px) {
  .specs-table th, .specs-table td { padding: 12px 16px; font-size: 13px; display: block; }
  .specs-table th { padding-bottom: 4px; }
  .specs-table td { padding-top: 0; padding-bottom: 14px; }
}

/* Section header with icon */
.sub-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.sub-head-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-3));
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -6px rgba(226,80,34,0.5);
}
.sub-head-ico svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }
.sub-head h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
}

/* =====================================================
   PRODUCT TAXONOMY — PREMIUM cards (3D tilt + halo + chips)
   ===================================================== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .prod-grid { grid-template-columns: 1fr; } }

/* Unified all-products grid — uniform cards side by side, client-side filterable */
.prod-grid-all { grid-template-columns: repeat(3, 1fr); }
.prod-grid-all .prod-card { grid-column: auto; }
@media (max-width: 980px) { .prod-grid-all { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prod-grid-all { grid-template-columns: 1fr; } }

.prod-card {
  /* default accent — overridden per card via data-accent */
  --accent: #FF6A35;
  --accent-dark: #E25022;
  --halo: rgba(255,106,53,0.55);
  --glow: rgba(255,106,53,0.35);

  position: relative;
  grid-column: span 2;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.005));
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.prod-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 26px 56px -20px rgba(0,0,0,0.5), 0 0 60px -20px var(--glow);
}
/* Featured card spans wider on desktop */
.prod-card.featured { grid-column: span 4; }
@media (max-width: 1100px) { .prod-card.featured { grid-column: span 4; } }
@media (max-width: 760px)  { .prod-card.featured { grid-column: span 2; } }
@media (max-width: 480px)  { .prod-card.featured { grid-column: span 1; } }

/* Per-product accent themes */
.prod-card[data-accent="orange"] { --accent: #FF6A35; --accent-dark: #E25022; --halo: rgba(255,106,53,0.55); --glow: rgba(255,106,53,0.35); }
.prod-card[data-accent="cyan"]   { --accent: #4CD3C2; --accent-dark: #2BB5A0; --halo: rgba(76,211,194,0.55); --glow: rgba(76,211,194,0.30); }
.prod-card[data-accent="purple"] { --accent: #A38AFF; --accent-dark: #7C5CFF; --halo: rgba(124,92,255,0.55); --glow: rgba(124,92,255,0.30); }
.prod-card[data-accent="green"]  { --accent: #5BD680; --accent-dark: #2BAB54; --halo: rgba(91,214,128,0.55); --glow: rgba(91,214,128,0.30); }
.prod-card[data-accent="red"]    { --accent: #FF5C5C; --accent-dark: #E03B3B; --halo: rgba(255,92,92,0.55); --glow: rgba(255,92,92,0.30); }
.prod-card[data-accent="gold"]   { --accent: #FFD166; --accent-dark: #E5B53C; --halo: rgba(255,209,102,0.55); --glow: rgba(255,209,102,0.30); }
.prod-card[data-accent="blue"]   { --accent: #5DA5FF; --accent-dark: #2B7CE8; --halo: rgba(93,165,255,0.55); --glow: rgba(93,165,255,0.30); }
.prod-card[data-accent="pink"]   { --accent: #FF7AA8; --accent-dark: #E0457A; --halo: rgba(255,122,168,0.55); --glow: rgba(255,122,168,0.30); }

/* Media area (image + halo + grid bg) */
.prod-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: linear-gradient(160deg, #050709 0%, #0E1217 60%, #14181f 100%);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.prod-card.featured .prod-media {
  aspect-ratio: auto;
  min-height: 100%;
}
/* Halo glow behind product */
.prod-halo {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--halo) 0%, transparent 65%);
  filter: blur(40px);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
  animation: prodHaloFloat 6s ease-in-out infinite alternate;
  transition: opacity .4s ease, transform .4s ease;
}
@keyframes prodHaloFloat {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(8px, -6px); }
}
.prod-card:hover .prod-halo {
  opacity: 0.95;
  transform: scale(1.25);
}
/* Tech grid backdrop */
.prod-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px) 0 0/44px 44px,
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0/44px 44px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 25%, transparent 100%);
  z-index: 1;
}
/* The product image */
.prod-img {
  position: relative;
  z-index: 3;
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(0,0,0,0.55)) saturate(1.08) contrast(1.04);
  transition: transform .55s cubic-bezier(.34,1.56,.64,1), filter .4s ease;
  pointer-events: none;
}
/* For images with dark backgrounds — blend mode "lighten" makes black transparent */
.prod-img.blend { mix-blend-mode: lighten; }
.prod-card:hover .prod-img {
  transform: scale(1.08) translateY(-6px);
  filter: drop-shadow(0 32px 44px rgba(0,0,0,0.65)) saturate(1.18) contrast(1.08);
}
/* Featured card image bigger */
.prod-card.featured .prod-img { max-width: 70%; max-height: 80%; }
/* Software panel — images are logos/icons, treated differently */
.prod-card[data-kind="sw"] .prod-img {
  max-width: 55%; max-height: 55%;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.55));
}

/* Category badge (HARDWARE / SOFTWARE) */
.prod-cat {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(0,0,0,0.65);
  color: var(--accent);
  border: 1px solid var(--accent);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
}
html[dir="rtl"] .prod-cat { letter-spacing: 0.04em; }

/* Live indicator (dot) on featured */
.prod-card.featured .prod-cat::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-inline-end: 6px;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
  vertical-align: middle;
}

/* Spotlight cursor effect (follows mouse via CSS vars set in JS) */
.prod-spotlight {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle 260px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.09), transparent 55%);
  transition: opacity .3s ease;
}
.prod-card:hover .prod-spotlight { opacity: 1; }

/* Featured = horizontal layout on lg */
.prod-card.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 760px) {
  .prod-card.featured { grid-template-columns: 1fr; }
}

/* Content area */
.prod-content {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 4;
}
.prod-card.featured .prod-content { padding: 36px 38px; justify-content: center; }

.prod-tagline {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
html[dir="rtl"] .prod-tagline { letter-spacing: 0.04em; }
.prod-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 12px;
}
.prod-card.featured .prod-title { font-size: clamp(24px, 2.6vw, 30px); margin-bottom: 14px; }

/* Spec chips */
.prod-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.prod-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  transition: all .2s ease;
  white-space: nowrap;
}
.prod-card:hover .prod-chip {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.prod-chip::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* Big stat (key number) */
.prod-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(255,255,255,0.02));
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  margin-bottom: 14px;
}
html[dir="rtl"] .prod-stat { border-left: 0; border-right: 3px solid var(--accent); border-radius: 10px 0 0 10px; }
.prod-stat-v {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.prod-stat-l {
  font-size: 11.5px;
  color: var(--text-2);
  font-weight: 600;
}

.prod-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.prod-card.featured .prod-desc { font-size: 15px; }

.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: gap .2s ease, color .2s ease;
  margin-top: auto;
  align-self: flex-start;
}
.prod-cta:hover { gap: 12px; }
.prod-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.4; }
html[dir="rtl"] .prod-cta svg { transform: scaleX(-1); }

/* Panel toggling (Software / Hardware) — replaces old ptax-panel */
.prod-panel { display: none; }
.prod-panel.active { display: block; animation: fadeIn .35s ease both; }

/* =====================================================
   PRODUCT TAXONOMY — Software vs Hardware tabs + grid (LEGACY, kept for back-compat)
   ===================================================== */
.ptax-tabs {
  display: inline-flex;
  background: rgba(255,255,255,0.04);
  padding: 6px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  margin: 0 auto 36px;
  gap: 4px;
}
.ptax-tab {
  padding: 11px 24px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
}
.ptax-tab:hover { color: var(--text); }
.ptax-tab.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-3));
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(226,80,34,0.5);
}
.ptax-tabs-wrap { text-align: center; }

.ptax-panel { display: none; }
.ptax-panel.active { display: block; animation: fadeIn .35s ease both; }

.ptax-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.ptax-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--line-2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.4,0,.2,1), border-color .3s ease, box-shadow .3s ease;
  position: relative;
}
.ptax-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226,80,34,0.4);
  box-shadow: 0 26px 50px -20px rgba(0,0,0,0.5);
}
/* Card image */
.ptax-img {
  position: relative;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(226,80,34,0.18), transparent 70%),
    linear-gradient(160deg, #050709, #11151D);
  overflow: hidden;
  display: grid; place-items: center;
}
.ptax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.ptax-card:hover .ptax-img img { transform: scale(1.06); }
.ptax-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,14,20,0.6) 100%);
  pointer-events: none;
}
/* Software cards get a colored gradient overlay */
.ptax-panel.sw .ptax-img {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(76,211,194,0.3), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(124,92,255,0.25), transparent 50%),
    linear-gradient(160deg, #0E2440, #1A1633);
}
.ptax-panel.sw .ptax-img img {
  width: auto;
  height: 60%;
  max-width: 60%;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.5));
}

/* Badge */
.ptax-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(11,14,20,0.85);
  color: var(--orange-2);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 11px;
  border-radius: 99px;
  border: 1px solid rgba(226,80,34,0.4);
  backdrop-filter: blur(6px);
}
html[dir="rtl"] .ptax-badge { left: auto; right: 14px; letter-spacing: 0.04em; }
.ptax-panel.sw .ptax-badge { color: var(--accent); border-color: rgba(76,211,194,0.4); }

/* Card body */
.ptax-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ptax-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--text);
}
.ptax-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.ptax-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-2);
  text-decoration: none;
  transition: gap .2s ease, color .2s ease;
}
.ptax-link:hover { gap: 12px; color: var(--orange); }
.ptax-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; }
html[dir="rtl"] .ptax-link svg { transform: scaleX(-1); }
.ptax-panel.sw .ptax-link { color: var(--accent); }
.ptax-panel.sw .ptax-link:hover { color: #2BB5A0; }

/* Featured card (first card spans wider on lg) */
@media (min-width: 1000px) {
  .ptax-card.featured { grid-column: span 2; flex-direction: row; }
  .ptax-card.featured .ptax-img { flex: 0 0 50%; aspect-ratio: auto; min-height: 280px; }
  .ptax-card.featured .ptax-body { padding: 32px; justify-content: center; }
  .ptax-card.featured .ptax-body h3 { font-size: 24px; margin-bottom: 14px; }
  .ptax-card.featured .ptax-body p { font-size: 15px; }
}

/* Mobile */
@media (max-width: 560px) {
  .ptax-tab { padding: 10px 16px; font-size: 12.5px; }
  .ptax-img { aspect-ratio: 16/10; }
  .ptax-body { padding: 18px 20px 20px; }
  .ptax-card.featured { grid-column: span 1; flex-direction: column; }
  .ptax-card.featured .ptax-img { flex: 0 0 auto; aspect-ratio: 4/3; min-height: 0; }
}

/* ===== FAQ — accordion with semantic <details> ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--paper-2);
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.faq-item[open] {
  box-shadow: 0 18px 36px -16px rgba(11,14,20,0.18);
  border-color: rgba(226,80,34,0.25);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  position: relative;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: background .2s ease;
}
html[dir="rtl"] .faq-item summary { padding: 22px 26px 22px 56px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-3);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  transition: transform .3s ease, background .25s ease, color .25s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--orange);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}
.faq-item summary:hover { background: rgba(226,80,34,0.04); }
.faq-item summary:hover::after { background: var(--orange); color: #fff; }
.faq-answer {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #525968;
  border-top: 1px dashed var(--paper-2);
  margin-top: 4px;
  padding-top: 18px;
  animation: faqOpen .35s ease both;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== About — image collage ===== */
.about-collage {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin-bottom: 60px;
  position: relative;
}
.ac-img {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 26px 50px -22px rgba(11,14,20,0.25);
  isolation: isolate;
}
.ac-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  display: block;
}
.ac-img:hover img { transform: scale(1.06); }
.ac-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,14,20,0.7) 100%);
  z-index: 1;
}
.ac-img.large { grid-row: span 2; min-height: 480px; }
.ac-img.s1, .ac-img.s2 { min-height: 235px; }
.ac-tag {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 10px;
}
.ac-tag::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-2);
  box-shadow: 0 0 12px var(--orange-2);
  animation: pulse 1.8s ease-in-out infinite;
}
.ac-img.s1 .ac-tag::before { background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.ac-img.s2 .ac-tag::before { background: var(--accent-3); box-shadow: 0 0 12px var(--accent-3); }
/* Floating stat badge over collage */
.ac-badge {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 26px 50px -16px rgba(11,14,20,0.3);
  border: 1px solid var(--paper-2);
  z-index: 3;
  animation: float 7s ease-in-out infinite;
}
.ac-badge.b1 { bottom: 28%; left: -22px; }
.ac-badge.b2 { top: -22px; right: 12%; animation-delay: -3s; }
html[dir="rtl"] .ac-badge.b1 { left: auto; right: -22px; }
html[dir="rtl"] .ac-badge.b2 { right: auto; left: 12%; }
.ac-badge .v {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.025em;
}
.ac-badge.b2 .v { color: var(--accent-3); }
.ac-badge .l {
  font-size: 11px;
  font-weight: 600;
  color: #525968;
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== Trusted Industries strip ===== */
.trust-strip {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px dashed var(--paper-3);
}
.trust-strip h4 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A8294;
  margin: 0 0 22px;
}
html[dir="rtl"] .trust-strip h4 { letter-spacing: 0.05em; }
.trust-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 99px;
  background: #fff;
  border: 1px solid var(--paper-2);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: all .25s ease;
  cursor: default;
}
.trust-chip::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.trust-chip:nth-child(2)::before { background: var(--accent-3); }
.trust-chip:nth-child(3)::before { background: var(--accent-pink); }
.trust-chip:nth-child(4)::before { background: var(--accent-2); }
.trust-chip:nth-child(5)::before { background: var(--accent); }
.trust-chip:nth-child(6)::before { background: var(--orange-2); }
.trust-chip:nth-child(7)::before { background: var(--accent-3); }
.trust-chip:nth-child(8)::before { background: var(--accent); }
.trust-chip:nth-child(9)::before { background: var(--accent-pink); }
.trust-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(11,14,20,0.18);
  border-color: transparent;
}

/* ===== Impact section — image cards with overlaid stats ===== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.impact-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  isolation: isolate;
  cursor: default;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
}
.impact-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .8s cubic-bezier(.4,0,.2,1), filter .4s ease;
  filter: saturate(1.1) contrast(1.05);
}
.impact-card::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,14,20,0.1) 0%, rgba(11,14,20,0.55) 50%, rgba(11,14,20,0.92) 100%);
  z-index: 1;
}
.impact-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -22px rgba(0,0,0,0.6); }
.impact-card:hover img { transform: scale(1.1); }
.impact-content {
  position: absolute; inset: auto 0 0 0;
  padding: 28px 26px;
  z-index: 2;
  color: #fff;
}
.impact-v {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff, #FFD8C9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.impact-card:nth-child(2) .impact-v { background: linear-gradient(135deg, #fff, #C5F5EC); -webkit-background-clip: text; background-clip: text; }
.impact-card:nth-child(3) .impact-v { background: linear-gradient(135deg, #fff, #E3DAFF); -webkit-background-clip: text; background-clip: text; }
.impact-card:nth-child(4) .impact-v { background: linear-gradient(135deg, #fff, #FFE5B0); -webkit-background-clip: text; background-clip: text; }
.impact-l {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.impact-d {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .4s ease, margin-top .3s ease;
}
.impact-card:hover .impact-d {
  max-height: 80px;
  opacity: 1;
  margin-top: 4px;
}

/* CTA with backdrop image */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
  transition: transform .5s ease;
}
.cta-strip:hover .cta-bg img { transform: scale(1.05); }
.cta-strip.with-image > * { position: relative; z-index: 1; }

/* ===== In Action — image grid ===== */
.field-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.field-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
  background: var(--ink-2);
  isolation: isolate;
}
.field-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1), filter .35s ease;
  display: block;
  filter: saturate(1.05) brightness(0.92);
}
.field-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,14,20,0.85) 100%);
  z-index: 1;
}
.field-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -20px rgba(0,0,0,0.6); }
.field-card:hover img { transform: scale(1.08); filter: saturate(1.2) brightness(1); }
.field-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px;
  z-index: 2;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.field-label::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange-2);
  box-shadow: 0 0 10px var(--orange-2);
}
.field-card:nth-child(2) .field-label::before { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.field-card:nth-child(3) .field-label::before { background: var(--accent-pink); box-shadow: 0 0 10px var(--accent-pink); }
.field-card:nth-child(4) .field-label::before { background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
.field-card:nth-child(5) .field-label::before { background: var(--accent-3); box-shadow: 0 0 10px var(--accent-3); }
/* Bento layout */
.field-card.fc-1 { grid-column: span 6; grid-row: span 2; }
.field-card.fc-2 { grid-column: span 3; }
.field-card.fc-3 { grid-column: span 3; }
.field-card.fc-4 { grid-column: span 4; }
.field-card.fc-5 { grid-column: span 4; }
.field-card.fc-6 { grid-column: span 4; }

/* ===== Testimonials slider ===== */
.voices-shell {
  position: relative;
  padding: 24px 0 0;
}
.voices-track-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.voices-track {
  display: flex;
  transition: transform .55s cubic-bezier(.5,0,.2,1);
  will-change: transform;
}
.voice {
  flex: 0 0 100%;
  min-width: 0;
  padding: 50px 60px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(226,80,34,0.18), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(76,211,194,0.14), transparent 50%),
    linear-gradient(160deg, #fff, var(--cream));
  color: var(--ink);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--paper-2);
}
.voice:nth-child(2) {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(124,92,255,0.16), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255,209,102,0.18), transparent 50%),
    linear-gradient(160deg, #fff, var(--cream));
}
.voice:nth-child(3) {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(76,211,194,0.18), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255,107,157,0.16), transparent 50%),
    linear-gradient(160deg, #fff, var(--cream));
}
.voice:nth-child(4) {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255,209,102,0.20), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(226,80,34,0.16), transparent 50%),
    linear-gradient(160deg, #fff, var(--cream));
}
.voice-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px -12px rgba(11,14,20,0.25);
  border: 5px solid #fff;
}
.voice-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voice-photo::after {
  content: "“";
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  display: grid; place-items: center;
  bottom: 4px; right: 4px;
  line-height: 1.2;
  padding-bottom: 12px;
  box-shadow: 0 8px 18px -4px rgba(226,80,34,0.5);
}
html[dir="rtl"] .voice-photo::after { right: auto; left: 4px; content: "”"; padding-bottom: 0; padding-top: 8px; }
.voice:nth-child(2) .voice-photo::after { background: var(--accent-3); box-shadow: 0 8px 18px -4px rgba(124,92,255,0.5); }
.voice:nth-child(3) .voice-photo::after { background: var(--accent); box-shadow: 0 8px 18px -4px rgba(76,211,194,0.5); }
.voice:nth-child(4) .voice-photo::after { background: var(--accent-pink); box-shadow: 0 8px 18px -4px rgba(255,107,157,0.5); }
.voice-body { min-width: 0; }
.voice-q {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.voice-who { display: flex; align-items: center; gap: 14px; }
.voice-who-line { width: 36px; height: 2px; background: var(--orange); border-radius: 2px; }
.voice:nth-child(2) .voice-who-line { background: var(--accent-3); }
.voice:nth-child(3) .voice-who-line { background: var(--accent); }
.voice:nth-child(4) .voice-who-line { background: var(--accent-pink); }
.voice-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.voice-role { font-size: 13px; color: #525968; }
.voice-role b { color: var(--orange-3); font-weight: 700; }

.voices-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 28px;
}
.voices-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--text);
  transition: all .2s ease;
}
.voices-btn:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.08); }
.voices-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; }
html[dir="rtl"] .voices-btn svg { transform: scaleX(-1); }
.voices-dots { display: flex; gap: 8px; }
.voices-dots button {
  width: 28px; height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,0.15);
  border: 0;
  transition: all .25s ease;
}
.voices-dots button.active { background: var(--orange); width: 44px; }

/* ===== CTA strip — vibrant ===== */
.cta-strip {
  padding: 100px 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(226,80,34,0.32), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(76,211,194,0.22), transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(124,92,255,0.12), transparent 60%),
    linear-gradient(160deg, #1A2030, #0B0E14);
  border: 1px solid rgba(226, 80, 34, 0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0.08;
  filter: blur(40px);
  top: 20%; left: 8%;
  animation: drift 14s ease-in-out infinite alternate;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 auto 18px;
}
.cta-strip p { font-size: 17px; color: var(--text-2); max-width: 540px; margin: 0 auto 32px; }
.cta-btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 16px 0 16px;
}
.contact-info > p { font-size: 16px; color: var(--text-2); line-height: 1.7; margin: 0 0 36px; max-width: 480px; }
.offices-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-2); margin-bottom: 18px; }
html[dir="rtl"] .offices-title { letter-spacing: 0.04em; }
.offices { display: grid; gap: 12px; }
.office {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start;
}
.office-flag { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--orange), var(--orange-3)); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; box-shadow: 0 6px 14px -4px rgba(226,80,34,0.4); }
.office:nth-child(2) .office-flag { background: linear-gradient(135deg, var(--accent), #2BB5A0); box-shadow: 0 6px 14px -4px rgba(76,211,194,0.4); }
.office:nth-child(3) .office-flag { background: linear-gradient(135deg, var(--accent-3), #5B3FE0); box-shadow: 0 6px 14px -4px rgba(124,92,255,0.4); }
.office-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.office-addr { font-size: 12.5px; color: var(--text-2); margin-top: 3px; }

.contact-form {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.cf-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 0 0 24px; color: var(--ink); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-group { margin-bottom: 16px; }
.cf-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #525968;
  margin-bottom: 7px;
}
.cf-group input, .cf-group select, .cf-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E7E2D8;
  border-radius: 12px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(226, 80, 34, 0.1);
}
.cf-group select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23525968' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
html[dir="rtl"] .cf-group select { background-position: left 14px center; padding-right: 14px; padding-left: 36px; }
.cf-group textarea { resize: none; }
.cf-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 12px 24px -8px rgba(226, 80, 34, 0.5);
  transition: all .15s ease;
}
.cf-submit:hover { background: var(--orange-2); transform: translateY(-2px); }
.cf-submit:disabled { opacity: 0.6; cursor: wait; transform: none; }
.cf-msg { padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-bottom: 14px; display: none; }
.cf-msg.ok { background: #ECF8F2; color: #1E7E4E; border: 1px solid #B4E2C8; }
.cf-msg.err { background: #FEF1F1; color: #C0382B; border: 1px solid #F8C8C4; }
.cf-msg.show { display: block; animation: cbIn .25s ease both; }
.cf-err { display: block; color: #C0382B; font-size: 12px; margin-top: 4px; font-weight: 600; }

/* ===== Footer ===== */
.footer { background: #06080C; padding: 80px 0 0; border-top: 1px solid var(--line); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot-about { font-size: 14px; color: var(--text-3); line-height: 1.7; max-width: 360px; }
.foot-h { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-2); margin: 0 0 18px; }
html[dir="rtl"] .foot-h { letter-spacing: 0.04em; }
.foot-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-list a { font-size: 14px; color: var(--text-2); transition: color .15s ease; }
.foot-list a:hover { color: var(--orange-2); }
.foot-news { display: flex; gap: 8px; margin-top: 12px; }
.foot-news input { flex: 1; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.04); color: var(--text); font: inherit; font-size: 13px; outline: none; }
.foot-news input::placeholder { color: var(--text-3); }
.foot-news input:focus { border-color: var(--orange); }
.foot-news button { padding: 11px 18px; background: var(--orange); color: #fff; font-family: var(--font-display); font-size: 12px; font-weight: 700; border-radius: 10px; }
.foot-social { display: flex; gap: 8px; margin-top: 22px; }
.foot-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--text-2);
  transition: all .15s ease;
}
.foot-social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.foot-social svg { width: 16px; height: 16px; }
.foot-bot { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--text-3); }
.foot-tag { font-family: var(--font-display); font-weight: 700; color: var(--text-2); letter-spacing: 0.02em; }

/* ===== Mobile drawer — clean, scrollable, colorful ===== */
.drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(226,80,34,0.22), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(124,92,255,0.14), transparent 50%),
    rgba(8, 11, 16, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  padding: 24px 20px 40px;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.drawer.open { transform: translateY(0); }
.drawer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.drawer li { display: block; }
.drawer ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  border-radius: 14px;
  color: var(--text);
  transition: background .18s ease, color .18s ease, padding .18s ease;
  border: 1px solid transparent;
}
.drawer ul a::after {
  content: "→";
  font-weight: 400;
  color: var(--orange-2);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
html[dir="rtl"] .drawer ul a::after { content: "←"; transform: translateX(6px); }
.drawer ul a:hover, .drawer ul a:active {
  background: rgba(226, 80, 34, 0.12);
  border-color: rgba(226, 80, 34, 0.2);
}
.drawer ul a:hover::after, .drawer ul a:active::after { opacity: 1; transform: translateX(0); }
.drawer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  margin: 8px 4px;
}
.drawer .lang-toggle {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 14px;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
}
.drawer .lang-toggle:hover {
  background: rgba(226, 80, 34, 0.12);
  border-color: var(--orange);
  color: var(--orange-2);
}
.drawer .btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
}
.drawer-contact {
  margin-top: 8px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
}
.drawer-contact a { color: var(--orange-2); font-weight: 700; }
/* Disable body scroll when drawer is open */
body.drawer-open { overflow: hidden; }

/* ===== Product page specifics ===== */
.product-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(226,80,34,0.2), transparent 50%),
    linear-gradient(180deg, #0B0E14, #11151D);
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 80%);
}
.product-hero .container { position: relative; z-index: 1; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); padding: 8px 14px; border-radius: 99px; border: 1px solid var(--line-2); transition: all .15s ease; margin-bottom: 32px; font-weight: 600; }
.back-link:hover { color: var(--orange-2); border-color: rgba(226, 80, 34, 0.35); }
.back-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
html[dir="rtl"] .back-link svg { transform: scaleX(-1); }

.ph-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.ph-text h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 22px;
}
.ph-text p { font-size: 17px; color: var(--text-2); line-height: 1.7; margin: 0 0 32px; max-width: 540px; }
.ph-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ph-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(226,80,34,0.25), transparent 70%),
    linear-gradient(160deg, #050709, #0B0E14);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.ph-visual img { max-width: 78%; max-height: 78%; object-fit: contain; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6)); }
.ph-visual.eis { background: linear-gradient(160deg, #f3f1ec, #e8e3d8); }
.ph-visual.eis img { filter: drop-shadow(0 25px 40px rgba(0,0,0,0.2)); }

.stat-strip {
  margin-top: 50px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-cell { display: flex; flex-direction: column; gap: 4px; }
.stat-cell .v { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--orange-2); line-height: 1; letter-spacing: -0.02em; }
.stat-cell .l { font-size: 13px; color: var(--text-2); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.005));
  border: 1px solid var(--line);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--orange-3));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
html[dir="rtl"] .feature-card::before { left: auto; right: 0; }
.feature-card:nth-child(2)::before { background: linear-gradient(180deg, var(--accent), #2BB5A0); }
.feature-card:nth-child(3)::before { background: linear-gradient(180deg, var(--accent-3), #5B3FE0); }
.feature-card:nth-child(4)::before { background: linear-gradient(180deg, var(--accent-2), #E5B53C); }
.feature-card:nth-child(5)::before { background: linear-gradient(180deg, var(--accent-pink), #D63B6F); }
.feature-card:nth-child(6)::before { background: linear-gradient(180deg, var(--orange-2), var(--orange)); }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); }
.feature-card:hover::before { transform: scaleY(1); }
.feature-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--orange-2); margin: 0 0 10px; letter-spacing: -0.01em; transition: color .25s ease; }
.feature-card:nth-child(2) h3 { color: var(--accent); }
.feature-card:nth-child(3) h3 { color: #A38AFF; }
.feature-card:nth-child(4) h3 { color: var(--accent-2); }
.feature-card:nth-child(5) h3 { color: var(--accent-pink); }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin: 0; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag {
  padding: 10px 18px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  transition: all .15s ease;
}
.tag:hover { border-color: var(--orange); color: var(--orange-2); background: rgba(226, 80, 34, 0.06); }

/* =====================================================
   LIVE ACTIVITY PULSE — persistent "mission control" feed
   ===================================================== */
.live-pulse {
  position: fixed;
  inset-inline-start: 18px;
  bottom: 20px;
  z-index: 8500;
  width: 280px;
  max-width: calc(100vw - 36px);
  background: rgba(8, 11, 16, 0.92);
  border: 1px solid rgba(76, 211, 194, 0.25);
  border-radius: 14px;
  padding: 12px 14px;
  font-family: "Space Grotesk", monospace;
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px -8px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), 0 0 24px -4px rgba(76,211,194,0.18);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: auto;
}
.live-pulse.ready { opacity: 1; transform: translateY(0); }
.live-pulse.collapsed { transform: translateY(calc(100% - 36px)); }

.lp-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  margin-bottom: 8px;
  cursor: pointer;
  user-select: none;
}
html[dir="rtl"] .lp-head { letter-spacing: 0.04em; font-family: var(--font-ar-display); }
.lp-head::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF3B3B;
  box-shadow: 0 0 8px #FF3B3B;
  animation: pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.lp-head .lp-count {
  margin-inline-start: auto;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.lp-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 78px;
  max-height: 78px;
  overflow: hidden;
  position: relative;
}
.lp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  line-height: 1.4;
  padding: 5px 0;
  animation: lpSlide .45s ease both;
  color: rgba(255,255,255,0.92);
}
.lp-item time {
  color: rgba(255,255,255,0.4);
  font-size: 9px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.lp-item .lp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-item.ok .lp-dot    { background: #4CD3C2; box-shadow: 0 0 6px #4CD3C2; }
.lp-item.info .lp-dot  { background: #5DA5FF; box-shadow: 0 0 6px #5DA5FF; }
.lp-item.warn .lp-dot  { background: #FFD166; box-shadow: 0 0 6px #FFD166; }
.lp-item.alert .lp-dot { background: #FF3B3B; box-shadow: 0 0 6px #FF3B3B; animation: pulse .8s ease-in-out infinite; }
.lp-item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@keyframes lpSlide {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
html[dir="rtl"] @keyframes lpSlide {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.lp-close {
  position: absolute;
  inset-inline-end: 6px;
  top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .15s ease;
}
.lp-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

@media (max-width: 760px) {
  .live-pulse { width: 240px; inset-inline-start: 12px; bottom: 14px; }
  .lp-item { font-size: 10px; }
}
@media (max-width: 480px) {
  /* On small screens, the chatbot button takes priority — show pulse smaller */
  .live-pulse { width: 220px; padding: 10px 12px; }
}

/* =====================================================
   RESPONSIVE — clean breakpoint cascade
   1200 → 1024 → 900 → 760 → 560 → 400
   ===================================================== */

/* Large tablets / small laptops — tighten nav, reduce grids */
@media (max-width: 1200px) {
  .nav { padding: 0 24px; }
  .nav-links a { font-size: 12.5px; padding: 7px 10px; }
  .lang-toggle { padding: 7px 10px; font-size: 11.5px; }
  .nav-cta { padding: 9px 18px; font-size: 12.5px; }
  .pipeline, .why-grid, .refs-grid, .sol-grid, .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet landscape — drop nav, switch grids to 2-col, hide floating decor */
@media (max-width: 1024px) {
  .nav .nav-links { display: none !important; }
  .nav .nav-cta { display: none !important; }
  .nav .hamburger { display: flex !important; flex-shrink: 0; }
  .nav { padding: 0 22px; }
  .pipeline, .product-tabs, .why-grid, .refs-grid, .sol-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .field-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .field-card.fc-1 { grid-column: span 6; grid-row: span 2; }
  .field-card.fc-2, .field-card.fc-3 { grid-column: span 3; }
  .field-card.fc-4, .field-card.fc-5, .field-card.fc-6 { grid-column: span 2; }
  .about-collage { grid-template-columns: 1.4fr 1fr; }
  .ac-img.large { min-height: 380px; }
  .ac-img.s1, .ac-img.s2 { min-height: 185px; }
  .ac-badge { display: none; }
  .voice { padding: 40px; grid-template-columns: 130px 1fr; gap: 26px; }
  .voice-photo { width: 130px; height: 130px; }
  .voice-q { font-size: 17px; }
  .hv-people { width: 170px; height: 220px; }
}

/* Tablet portrait — stack 2-column heroes, halve dashboards */
@media (max-width: 900px) {
  .hero { padding-top: calc(var(--nav-h) + 30px); }
  .hero-grid, .about-grid, .pp-grid, .contact-grid, .ph-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-vis { height: 420px; max-width: 480px; margin: 0 auto; }
  .hv-main { inset-inline-start: auto; inset-inline-end: auto; left: 0; right: 50px; }
  .hv-pill { width: 180px; }
  .hv-pill-v { font-size: 28px; }
  .hv-alert { width: 220px; }
  .hv-people { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-chip { font-size: 12px; padding: 8px 14px; }
  .impact-card { aspect-ratio: 4/5; }
  .section-head { margin-bottom: 48px; }
  .voices-btn { width: 42px; height: 42px; }
}

/* Small tablet — most grids go to 1-col, hero mock tighter */
@media (max-width: 760px) {
  .nav { padding: 0 18px; height: 64px; }
  :root { --nav-h: 64px; }
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 8px; letter-spacing: 0.18em; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-mark svg { width: 20px; height: 20px; }
  .product-tabs, .sol-grid, .why-grid, .refs-grid, .feature-grid, .pipeline { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card { aspect-ratio: 16/10; max-height: 360px; }
  .field-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .field-card.fc-1, .field-card.fc-2, .field-card.fc-3, .field-card.fc-4, .field-card.fc-5, .field-card.fc-6 {
    grid-column: span 1; grid-row: span 1;
  }
  .field-label { font-size: 14px; padding: 16px 18px; }
  .about-collage { grid-template-columns: 1fr; grid-template-rows: auto auto auto; margin-bottom: 36px; }
  .ac-img.large, .ac-img.s1, .ac-img.s2 { grid-row: auto; min-height: 220px; }
  .voice { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; gap: 18px; }
  .voice-photo { width: 100px; height: 100px; margin: 0 auto; }
  .voice-photo::after { width: 36px; height: 36px; font-size: 32px; padding-bottom: 8px; }
  .voice-who { justify-content: center; }
  .voice-q { font-size: 16px; line-height: 1.5; margin-bottom: 18px; }
  .product-panel { padding: 24px; }
  .contact-form { padding: 26px 22px; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-info > p { margin-bottom: 28px; }
  .cta-strip { padding: 56px 22px; }
  .cta-strip h2 { font-size: clamp(24px, 5vw, 32px); }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .foot-bot { flex-direction: column; gap: 10px; text-align: center; padding: 18px 0; }
  .footer { padding-top: 56px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; padding: 22px 0; }
  .hs-n { font-size: 28px; }
  .hs-l { font-size: 12px; }
  .hero-vis { height: 360px; max-width: 420px; }
  .hv-main { width: 270px; height: 290px; padding: 16px; }
  .hv-main { inset-inline-start: 0; }
  .hv-pill { width: 150px; padding: 14px; }
  .hv-pill-v { font-size: 24px; }
  .hv-alert { width: 200px; padding: 12px 14px; bottom: 0; }
  .hv-row { gap: 6px; margin-bottom: 10px; }
  .hv-stat { padding: 10px; }
  .hv-stat-v { font-size: 17px; }
  .hv-graph { height: 90px; padding: 10px; }
  .marquee-item { font-size: 17px; gap: 28px; }
  .marquee-track { gap: 28px; }
  .pp-grid { gap: 24px; }
  .ph-text h1 { font-size: clamp(28px, 7vw, 40px); }
  .ph-text p { font-size: 15px; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 16px; }
  .voices-shell { padding-top: 12px; }
  .trust-strip { margin-top: 50px; padding-top: 28px; }
}

/* Mobile — hide non-essential, single column everything */
@media (max-width: 560px) {
  .nav { padding: 0 12px !important; }
  .nav .nav-cta { display: none !important; }
  .nav-actions { gap: 6px !important; }
  .nav-actions .lang-toggle { padding: 6px 9px !important; font-size: 11px !important; flex-shrink: 0; }
  .brand-sub { display: none !important; }
  .brand { min-width: 0; flex-shrink: 1; }
  .brand-text { min-width: 0; }
  .brand-name { font-size: 15px; white-space: nowrap; }
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 36px); }
  .hero { padding: calc(var(--nav-h) + 24px) 0 50px; }
  .hero h1 { font-size: clamp(34px, 9vw, 46px); margin: 18px 0 16px; }
  .hero p { font-size: 15px; margin-bottom: 28px; }
  .btn { padding: 12px 22px; font-size: 13px; }
  .hero-stats { padding: 18px 0; gap: 14px; }
  .hs-item { flex-direction: column; align-items: flex-start; gap: 4px; text-align: start; }
  .hs-n { font-size: 24px; }
  .hero-vis { height: 320px; max-width: 360px; }
  .hv-main { width: 230px; height: 250px; padding: 14px; }
  .hv-pill { width: 130px; padding: 12px; }
  .hv-pill-v { font-size: 20px; }
  .hv-alert { width: 170px; padding: 10px 12px; }
  .hv-alert-d { font-size: 10.5px; }
  .impact-content { padding: 22px 20px; }
  .impact-v { font-size: clamp(32px, 9vw, 44px); }
  .voice { padding: 28px 20px; }
  .voice-q { font-size: 15px; }
  .voices-controls { gap: 12px; margin-top: 22px; }
  .voices-btn { width: 38px; height: 38px; }
  .voices-dots button { width: 24px; }
  .voices-dots button.active { width: 36px; }
  .marquee { padding: 22px 0; }
  .marquee-item { font-size: 15px; }
  .marquee-item::after { font-size: 14px; }
  .trust-chip { font-size: 11.5px; padding: 7px 12px; }
  .trust-chip::before { width: 6px; height: 6px; }
  .ph-actions { flex-direction: column; }
  .ph-actions .btn { width: 100%; justify-content: center; }
  .ph-visual { aspect-ratio: 1/1; }
  .stat-cell .v { font-size: 26px; }
  .cf-title { font-size: 16px; margin-bottom: 18px; }
  .cf-submit { padding: 13px; font-size: 14px; }
  .office { grid-template-columns: 32px 1fr; padding: 14px 16px; gap: 12px; }
  .office-flag { width: 32px; height: 32px; font-size: 10px; }
  .office-name { font-size: 13px; }
  .office-addr { font-size: 11.5px; }
  .demo-title, .cf-title { margin-bottom: 16px; }
  .foot-news { flex-direction: column; }
  .foot-news input, .foot-news button { width: 100%; }
}

/* Extra small — clamp the rest */
@media (max-width: 400px) {
  .hero h1 { font-size: 30px; letter-spacing: -1.2px; }
  .hero p { font-size: 14px; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-vis { height: 280px; max-width: 320px; }
  .hv-main { width: 200px; height: 220px; }
  .hv-pill { width: 115px; }
  .hv-alert { width: 150px; }
}

/* ==========================================================================
   NEW COMPONENTS — Breadcrumbs · Cards · Share · Post Meta · Accessibility
   ========================================================================== */

/* Skip to content */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s;
}
.skip-to-content:focus { top: 0; }

/* Breadcrumbs */
.breadcrumbs { margin: 0 0 24px; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--text-3);
}
.breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.breadcrumbs a { color: var(--text-2); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span[aria-current="page"] { color: var(--text-3); }
.bc-sep { font-size: 11px; color: var(--text-3); }

/* Post meta bar */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 16px;
}
.pm-dot { opacity: .4; }
.pm-author, .pm-date, .pm-rt { color: var(--text-3); }

/* Card grid */
.obs-grid--cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Post card */
.obs-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.obs-card:hover { border-color: rgba(226,80,34,.4); transform: translateY(-2px); }
.obs-card__thumb { display: block; overflow: hidden; }
.obs-card__thumb img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .3s; }
.obs-card:hover .obs-card__thumb img { transform: scale(1.03); }
.obs-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.obs-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 10px;
  display: block;
}
.obs-card__title { font-size: 1.1rem; margin: 0 0 10px; line-height: 1.4; }
.obs-card__title a { color: var(--text); text-decoration: none; }
.obs-card__title a:hover { color: var(--orange-2); }
.obs-card__excerpt { font-size: 13px; color: var(--text-3); margin: 0 0 16px; flex: 1; }
.obs-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-3);
}
.obs-card__more { color: var(--orange-2); font-weight: 600; text-decoration: none; }
.obs-card__more:hover { text-decoration: underline; }

/* Video card extras */
.obs-card--video .obs-card__thumb { position: relative; aspect-ratio: 16/9; }
.obs-card--video .obs-card__thumb img { height: 100%; }
.obs-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(0,0,0,.6);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  pointer-events: none;
  transition: background .2s, transform .2s;
}
.obs-card--video:hover .obs-play-badge { background: var(--orange); transform: translate(-50%,-50%) scale(1.1); }
.obs-dur-badge {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

/* Pagination */
.obs-pagination { display: flex; justify-content: center; margin-top: 12px; }
.obs-pagination ul { display: flex; gap: 6px; list-style: none; padding: 0; margin: 0; }
.obs-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: border-color .2s, color .2s;
}
.obs-pagination .page-numbers:hover { border-color: var(--orange); color: var(--orange); }
.obs-pagination .current { background: var(--orange); border-color: var(--orange); color: #fff; }
.obs-pagination .dots { background: transparent; border-color: transparent; }

/* Post navigation */
.post-nav-link {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  display: block;
  transition: border-color .2s;
}
.post-nav-link:hover { border-color: rgba(226,80,34,.4); }
.post-nav-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.post-nav-title { color: var(--text); font-weight: 600; font-size: 14px; }
.post-nav-link--next { text-align: right; }

/* Social sharing */
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.share-label { font-size: 13px; color: var(--text-3); font-weight: 600; margin-right: 4px; }
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--text-2);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.share-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(226,80,34,.1); }

/* Tag pill (categories on single) */
.obs-tag-pill {
  display: inline-block;
  background: rgba(226,80,34,.15);
  color: var(--orange-2);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}
.obs-tag-pill:hover { background: rgba(226,80,34,.3); }

/* Breaking news badge */
.obs-breaking {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-3);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 16px;
}
.back-link:hover { color: var(--orange-2); }
.back-link svg { flex-shrink: 0; }

/* wp-post-content (rich text) */
.wp-post-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-2); }
.wp-post-content h2, .wp-post-content h3 { color: var(--text); margin-top: 2em; }
.wp-post-content a { color: var(--orange-2); }
.wp-post-content a:hover { text-decoration: underline; }
.wp-post-content img { max-width: 100%; border-radius: 10px; }
.wp-post-content blockquote {
  border-left: 3px solid var(--orange);
  margin: 1.5em 0;
  padding: 1em 1.5em;
  color: var(--text);
  background: var(--ink-3);
  border-radius: 0 8px 8px 0;
}

/* SEO meta box char counters */
.obs-seo-table td .obs-char-count { display: block; margin-top: 4px; }

@media (max-width: 640px) {
  .obs-grid--cards { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr !important; }
  .share-buttons { gap: 8px; }
}
