/* ──────────────────────────────────────────────────────────────────────
   Virtuzone — concept site. Original design, not a recreation.
   Palette: brand red/orange accents on calm ink+navy+paper system.
   Justified by: logo SVG (#FE294D + #FD6611), corporate-trust sector
   expectations, lead-gen conversion contrast, regional cue (UAE / GCC
   editorial design favours saturated reds on quiet neutrals).
   Palette differentiator: this design uses a *red→orange diagonal*
   only on primary action surfaces, and otherwise stays near-monochrome
   ink/paper — distinct from the current site's heavier red usage.
   ────────────────────────────────────────────────────────────────────── */

:root {
  /* Brand */
  --vz-red:    #FE294D;
  --vz-orange: #FD6611;
  --vz-grad:   linear-gradient(110deg, #FE294D 0%, #FD6611 100%);

  /* Neutrals */
  --ink:   #0B1220;
  --ink-2: #14213D;
  --paper: #FFFFFF;
  --mist:  #F5F6F9;
  --mist-2:#EDEFF4;
  --line:  #E2E6ED;
  --line-2:#D6DBE5;
  --steel: #5B6B7B;
  --steel-2:#8A95A4;

  /* Type */
  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-ar:      'IBM Plex Sans Arabic', 'Inter', system-ui, sans-serif;

  /* Rhythm */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html[dir="rtl"] body { font-family: var(--font-ar); }

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* ── Type scale ───────────────────────────────────────────────────────── */
.display, .h1, .h2, .h3, .h4, .eyebrow { font-family: var(--font-display); }
html[dir="rtl"] .display,
html[dir="rtl"] .h1,
html[dir="rtl"] .h2,
html[dir="rtl"] .h3,
html[dir="rtl"] .h4 { font-family: var(--font-ar); }

.display {
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 680;
  text-wrap: balance;
}
.h1 { font-size: clamp(36px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 680; text-wrap: balance; }
.h2 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 680; text-wrap: balance; }
.h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; letter-spacing: -0.015em; font-weight: 660; }
.h4 { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.3; letter-spacing: -0.005em; font-weight: 620; }
.body-lg { font-size: clamp(17px, 1.3vw, 19px); line-height: 1.5; color: var(--steel); text-wrap: pretty; }
.body    { font-size: 16px; line-height: 1.55; color: var(--ink); }
.body-sm { font-size: 14.5px; line-height: 1.5; color: var(--steel); }
.caps    { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--steel);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--vz-red);
  display: inline-block;
}
html[dir="rtl"] .eyebrow::before { background: var(--vz-red); }

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }

/* ── Layout ───────────────────────────────────────────────────────────── */
.wrap     { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.wrap-sm  { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
.section  { padding: 96px 0; }
.section-lg { padding: 130px 0; }
.section-tight { padding: 56px 0; }
@media (max-width: 760px) {
  .wrap, .wrap-sm { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 580; font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arr { transition: transform .2s ease; display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }
html[dir="rtl"] .btn:hover .arr { transform: translateX(-4px); }

.btn-primary  { background: var(--vz-grad); color: white; box-shadow: 0 12px 30px -16px rgba(254,41,77,0.55); }
.btn-primary:hover { filter: brightness(1.05); }
.btn-dark     { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost    { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--mist); }
.btn-light    { background: white; color: var(--ink); border-color: var(--line); }
.btn-light:hover { border-color: var(--ink); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-sm       { padding: 9px 14px; font-size: 13.5px; }
.btn-lg       { padding: 17px 26px; font-size: 15.5px; }

/* ── Card primitives ──────────────────────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--line-2); }
.card-hover:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -32px rgba(11, 18, 32, 0.25); border-color: var(--ink-2); }

/* ── Pill / tag ───────────────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 540;
  background: var(--mist); color: var(--ink);
  border: 1px solid var(--line);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vz-red); }
.pill-dark { background: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.16); }

/* ── Inputs ───────────────────────────────────────────────────────────── */
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); font-weight: 580; }
.input, .select, .textarea {
  width: 100%;
  padding: 13px 14px;
  background: white;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(11,18,32,0.06);
}
.textarea { min-height: 110px; resize: vertical; font-family: inherit; line-height: 1.5; }

/* ── Sticky nav scrim ─────────────────────────────────────────────────── */
.nav-root {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-root.dark {
  background: rgba(11,18,32,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
  color: white;
}

/* ── Trust strip ──────────────────────────────────────────────────────── */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 24px 56px;
  align-items: center; justify-content: space-between;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.trust-num  { font-family: var(--font-display); font-size: 36px; line-height: 1; letter-spacing: -0.03em; font-weight: 700; }
.trust-lab  { font-size: 12.5px; color: var(--steel); letter-spacing: 0.04em; }
.trust-attr { font-size: 11px; color: var(--steel-2); margin-top: 4px; }

/* ── Underline link ───────────────────────────────────────────────────── */
.ulink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 560; font-size: 14.5px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .2s ease;
}
.ulink:hover { gap: 12px; }

/* ── Image placeholder fallback (for missing imagery) ─────────────────── */
.imgph {
  background:
    repeating-linear-gradient(135deg, var(--mist) 0 8px, var(--mist-2) 8px 16px);
  color: var(--steel);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px;
}

/* ── Dotted divider ───────────────────────────────────────────────────── */
.divider {
  border: none; border-top: 1px dashed var(--line-2); margin: 0;
}

/* ── Tabular numerals where it matters ────────────────────────────────── */
.tnum { font-variant-numeric: tabular-nums; }

/* ── Marquee strip ────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden; white-space: nowrap; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 56px; padding: 18px 0;
  animation: marq 38s linear infinite;
}
@keyframes marq { to { transform: translateX(-50%); } }

/* ── Tab style ────────────────────────────────────────────────────────── */
.tabs {
  display: inline-flex;
  background: var(--mist);
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--line);
  gap: 4px;
}
.tab {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 540;
  color: var(--steel);
  border: none; background: transparent;
  transition: background .18s ease, color .18s ease;
}
.tab.active { background: var(--ink); color: white; }

/* ── Tag chip ─────────────────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 580; letter-spacing: 0.02em;
  background: var(--mist); color: var(--ink); border: 1px solid var(--line);
}
.chip-red    { background: rgba(254,41,77,0.08); color: var(--vz-red); border-color: rgba(254,41,77,0.18); }
.chip-orange { background: rgba(253,102,17,0.08); color: var(--vz-orange); border-color: rgba(253,102,17,0.20); }
.chip-ink    { background: var(--ink); color: white; border-color: var(--ink); }

/* ── Hover swap nav menu ──────────────────────────────────────────────── */
.nav-menu {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 520;
  color: inherit;
  transition: background .15s ease;
}
.nav-link:hover { background: rgba(0,0,0,0.05); }
.nav-root.dark .nav-link:hover { background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--vz-red); }

/* ── Hero gradient ─────────────────────────────────────────────────────── */
.hero-photo-mask {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0.05) 0%, rgba(11,18,32,0.32) 60%, rgba(11,18,32,0.72) 100%);
}

/* ── Sticky CTA mobile bottom bar ─────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  background: var(--ink); color: white;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.45);
  align-items: center; justify-content: space-between; gap: 12px;
  font-size: 14px; font-weight: 560;
}
.mobile-cta .btn { padding: 10px 16px; font-size: 13px; }
@media (max-width: 760px) { .mobile-cta { display: flex; } }

/* ── WhatsApp FAB ─────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 24px; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  border: 3px solid white;
  transition: transform .15s ease;
}
html[dir="ltr"] .wa-fab { right: 24px; }
html[dir="rtl"] .wa-fab { left: 24px; }
.wa-fab:hover { transform: scale(1.05); }
@media (max-width: 760px) { .wa-fab { bottom: 88px; } }

/* ── Modal ────────────────────────────────────────────────────────────── */
.modal-scrim {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11,18,32,0.55);
  display: grid; place-items: center;
  padding: 20px;
  animation: fade .18s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: white; border-radius: var(--r-xl);
  width: min(680px, 100%);
  max-height: 92vh; overflow: auto;
  animation: pop .22s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes pop { from { transform: translateY(12px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink); color: white;
  padding: 80px 0 32px;
}
.footer a:hover { color: var(--vz-red); }
.footer .col h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-2); margin: 0 0 18px; font-weight: 600; }
.footer .col a { display: block; padding: 5px 0; color: rgba(255,255,255,0.78); font-size: 14.5px; }

/* ── Animations ───────────────────────────────────────────────────────── */
.fade-in { animation: fadeIn .5s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ── Scrollbar (subtle) ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--steel-2); }
