/* ================================================
   شركة وقت البيانات — الموقع التسويقي
   Shared Styles (assets/site.css)
   ================================================ */

:root {
  /* Brand */
  --primary: #0369a1;
  --primary-hover: #025282;
  --primary-light: #38bdf8;
  --primary-soft: #d3e7f2;
  --primary-faint: #f0f7fc;

  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fde68a;

  /* Premium gold */
  --gold: #c9a961;
  --gold-dark: #8a7a3f;

  /* Surface */
  --bg: #f8fbfd;
  --bg-2: #eef5fa;
  --bg-3: #e0eef7;
  --card: #ffffff;
  --card-hover: #fbfdff;

  /* Text */
  --ink: #0c2340;
  --ink-soft: #2f4a6a;
  --ink-faint: #4a6480;
  --muted: #6b8199;
  --muted-soft: #94a8bc;

  /* Lines */
  --line: #b8cfe0;
  --line-soft: #d3e0ea;
  --line-faint: #e7eef4;

  /* States */
  --success: #10b981;
  --success-soft: rgba(16, 185, 129, 0.1);
  --danger: #dc2626;
  --warning: #f59e0b;

  /* Shadows */
  --shadow-sm: 0 2px 6px -2px rgba(12, 35, 64, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(12, 35, 64, 0.15);
  --shadow-lg: 0 20px 50px -12px rgba(12, 35, 64, 0.25);
  --shadow-xl: 0 30px 80px -15px rgba(12, 35, 64, 0.3);
  --shadow-glow: 0 0 0 4px rgba(3, 105, 161, 0.12);

  /* Layout */
  --max-w: 1280px;
  --gutter: 24px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: 'Tajawal', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
/* ============ TOPBAR ============ */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  padding: 8px 0;
  position: relative;
  z-index: 50;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}
.topbar-left .item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  transition: color 0.15s;
}
.topbar-left .item:hover { color: #fff; }
.topbar-left .item svg { width: 12px; height: 12px; }
.topbar-right {
  display: flex;
  gap: 8px;
  align-items: center;
}
.topbar-link {
  color: rgba(255,255,255,0.85);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  transition: all 0.15s;
}
.topbar-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.topbar-link.lang {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
}
/* ============ NAVBAR ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-faint);
  transition: box-shadow 0.2s;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--ink) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.brand-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25) 0%, transparent 60%);
}
.brand-logo svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 980px) {
  .nav-links { display: none; }
}
.nav-link {
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.nav-link:hover {
  color: var(--primary);
  background: var(--primary-faint);
}
.nav-link.has-menu::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-inline-start: 3px;
  opacity: 0.5;
  transition: transform 0.15s;
}
.nav-link.has-menu:hover::after { transform: rotate(180deg); }
.nav-link.active {
  color: var(--primary);
  background: var(--primary-soft);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.btn svg { width: 14px; height: 14px; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  box-shadow: 0 6px 16px -4px rgba(3, 105, 161, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -4px rgba(3, 105, 161, 0.55);
}
.btn-ghost {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line-soft);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}
.btn-lg {
  padding: 13px 24px;
  font-size: 14.5px;
  border-radius: 11px;
}
.btn-xl {
  padding: 16px 28px;
  font-size: 15.5px;
  border-radius: 12px;
}
.btn-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 16px -4px rgba(201, 169, 97, 0.5);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -4px rgba(201, 169, 97, 0.6);
}
/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: var(--bg-2);
  border: none;
  border-radius: 9px;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-toggle svg { width: 18px; height: 18px; }
@media (max-width: 980px) {
  .mobile-toggle { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
}
/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--card);
  z-index: 39;
  padding: 24px;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer .mob-link {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  border-radius: 10px;
  margin-bottom: 4px;
}
.mobile-drawer .mob-link:hover { background: var(--bg-2); color: var(--primary); }
.mobile-drawer .mob-cta { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
/* ============ COMMON SECTIONS ============ */
.section {
  padding: 80px 0;
}
@media (max-width: 768px) { .section { padding: 56px 0; } }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow svg { width: 12px; height: 12px; }
.section-title {
  font-family: 'Cairo', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
@media (max-width: 768px) { .section-title { font-size: 30px; } }
.section-subtitle {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 680px;
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .section-subtitle { margin-inline: auto; }
/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -100px; inset-inline-start: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(3, 105, 161, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.5); }
.footer-tagline {
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-col-title {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: #fff; }
.footer-links a .badge-new {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a:hover { color: #fff; }
.footer-trust {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.footer-trust-badge svg { width: 11px; height: 11px; }
/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.15s; }
.fade-up-3 { animation-delay: 0.25s; }
.fade-up-4 { animation-delay: 0.35s; }
/* ================================================
   HOMEPAGE — page-specific styles
   ================================================ */

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 600px at 80% 20%, rgba(3, 105, 161, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 20% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 60%),
    var(--bg);
}
@media (max-width: 768px) { .hero { padding: 40px 0 60px; } }
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background-image:
    linear-gradient(rgba(3, 105, 161, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 105, 161, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 60% 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;
}
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
}
.hero-badge .pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid var(--success);
  border-radius: 50%;
  opacity: 0;
  animation: heroPulse 2s ease-out infinite;
}
@keyframes heroPulse {
  0%   { opacity: 0.6; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(2); }
}
.hero-badge strong { color: var(--ink); font-weight: 800; }
.hero-title {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(38px, 5.4vw, 60px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-title .gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--ink) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .underline {
  position: relative;
  white-space: nowrap;
}
.hero-title .underline::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 8px;
  background: var(--accent);
  opacity: 0.35;
  z-index: -1;
  border-radius: 4px;
}
.hero-rotate {
  display: inline-block;
  color: var(--primary);
  transition: opacity 0.25s, transform 0.25s;
  min-width: 200px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 30px;
}
@media (max-width: 768px) { .hero-subtitle { font-size: 16px; } }
.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-trust-item svg {
  width: 17px; height: 17px;
  color: var(--success);
  flex-shrink: 0;
}
/* Hero visual (right side) */
.hero-visual {
  position: relative;
}
.hero-mockup {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, #1a3358 100%);
  border-radius: 20px;
  padding: 14px;
  box-shadow:
    0 30px 80px -20px rgba(12, 35, 64, 0.45),
    0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}
.hero-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 10px;
  position: relative;
  z-index: 1;
}
.hero-mockup-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.hero-mockup-dot.r { background: #ff5f57; }
.hero-mockup-dot.y { background: #febc2e; }
.hero-mockup-dot.g { background: #28c840; }
.hero-mockup-url {
  margin-inline-start: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  padding: 3px 12px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.hero-screen {
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
/* Floating cards around the mockup */
.hero-float {
  position: absolute;
  background: var(--card);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero-float-1 {
  top: 60px;
  inset-inline-start: -30px;
  animation-delay: 0s;
}
.hero-float-2 {
  bottom: 50px;
  inset-inline-end: -20px;
  animation-delay: 1.2s;
}
.hero-float-3 {
  top: 50%;
  inset-inline-start: -40px;
  animation-delay: 2.4s;
}
@media (max-width: 1000px) {
  .hero-float-1, .hero-float-3 { inset-inline-start: 10px; }
  .hero-float-2 { inset-inline-end: 10px; }
}
.hero-float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-float-icon svg { width: 16px; height: 16px; }
.hero-float-icon.success { background: var(--success-soft); color: var(--success); }
.hero-float-icon.primary { background: var(--primary-soft); color: var(--primary); }
.hero-float-icon.accent  { background: rgba(245, 158, 11, 0.15); color: var(--accent-dark); }
.hero-float-text { line-height: 1.3; }
.hero-float-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.hero-float-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
/* Mock dashboard inside mockup */
.mock-dash {
  padding: 18px 16px;
  background: var(--card);
}
.mock-dash-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mock-dash-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.mock-dash-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: var(--success-soft);
  color: var(--success);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mock-dash-live .dot {
  width: 5px; height: 5px;
  background: var(--success);
  border-radius: 50%;
  animation: heroPulse2 1.5s ease-in-out infinite;
}
@keyframes heroPulse2 {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.mock-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.mock-kpi {
  padding: 8px;
  background: var(--bg-2);
  border-radius: 7px;
  text-align: center;
}
.mock-kpi-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.mock-kpi-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mock-chart {
  background: var(--bg-2);
  border-radius: 9px;
  padding: 10px;
  margin-bottom: 10px;
  height: 110px;
  position: relative;
}
.mock-chart svg { width: 100%; height: 100%; }
.mock-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mock-list-item {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  background: var(--bg-2);
  border-radius: 7px;
}
.mock-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  display: grid; place-items: center;
}
.mock-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
}
.mock-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.mock-status.ok { background: var(--success-soft); color: var(--success); }
.mock-status.pending { background: rgba(245, 158, 11, 0.15); color: var(--accent-dark); }
/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--card);
  border-block: 1px solid var(--line-faint);
  padding: 30px 0;
}
.trust-bar-inner {
  text-align: center;
}
.trust-bar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.85;
}
@media (max-width: 768px) { .trust-logos { gap: 28px; } }
.trust-logo {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink-faint);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, transform 0.2s;
}
.trust-logo:hover { color: var(--primary); transform: scale(1.05); }
.trust-logo svg { width: 22px; height: 22px; }
/* ============ STATS BAR ============ */
.stats {
  background: linear-gradient(135deg, var(--ink) 0%, #1a3358 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(3, 105, 161, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(56, 189, 248, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.stat {
  text-align: center;
}
.stat-val {
  font-family: 'Cairo', sans-serif;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) { .stat-val { font-size: 38px; } }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
/* ============ PROBLEM / SOLUTION ============ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.problem-card:hover {
  border-color: var(--danger);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem-icon {
  width: 44px; height: 44px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--danger);
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.problem-icon svg { width: 19px; height: 19px; }
.problem-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.problem-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
/* Solution intro */
.solution-intro {
  text-align: center;
  padding: 48px 30px;
  background: linear-gradient(135deg, var(--primary-faint) 0%, var(--bg-2) 100%);
  border-radius: 22px;
  border: 1px solid var(--line-faint);
}
.solution-intro-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: 0 14px 30px -8px rgba(3, 105, 161, 0.5);
}
.solution-intro-icon svg { width: 28px; height: 28px; }
.solution-intro-title {
  font-family: 'Cairo', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.solution-intro-desc {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto;
}
/* ============ FEATURES (9 areas) ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  padding: 26px 22px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s;
}
.feature:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature:hover::before { transform: scaleY(1); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-icon.foundation { background: var(--primary-soft); color: var(--primary); }
.feature-icon.scheduling { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.feature-icon.operations { background: rgba(14, 116, 144, 0.12); color: #0e7490; }
.feature-icon.gates      { background: rgba(6, 95, 70, 0.12); color: #047857; }
.feature-icon.parkings   { background: rgba(109, 40, 217, 0.12); color: #6d28d9; }
.feature-icon.cards      { background: rgba(2, 132, 199, 0.1); color: #0284c7; }
.feature-icon.analytics  { background: rgba(245, 158, 11, 0.15); color: var(--accent-dark); }
.feature-icon.settings   { background: rgba(100, 116, 139, 0.15); color: #475569; }
.feature-icon.emergency  { background: rgba(220, 38, 38, 0.12); color: var(--danger); }
.feature-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--muted);
  background: var(--bg-2);
  padding: 2px 7px;
  border-radius: 5px;
}
.feature-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.feature-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-faint);
  padding-inline-start: 18px;
  position: relative;
  font-weight: 600;
}
.feature-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 4px;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}
/* ============ HOW IT WORKS ============ */
.steps-wrap {
  position: relative;
}
.steps-line {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--success) 100%);
  opacity: 0.2;
  z-index: 0;
}
@media (max-width: 800px) { .steps-line { display: none; } }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; gap: 32px; } }
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 78px; height: 78px;
  background: var(--card);
  border: 2px solid var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-family: 'Cairo', sans-serif;
  font-size: 30px;
  font-weight: 900;
  position: relative;
  box-shadow: var(--shadow-md);
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px dashed var(--primary);
  border-radius: 50%;
  opacity: 0.3;
}
.step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
/* ============ INDUSTRIES ============ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: 1fr; } }
.industry {
  padding: 24px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.industry:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.industry-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.industry-icon svg { width: 18px; height: 18px; }
.industry-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.industry-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 4px;
}
.industry-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.industry-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  background: var(--bg-2);
  color: var(--ink-soft);
  border-radius: 4px;
}
/* ============ TESTIMONIAL ============ */
.testimonial {
  background: linear-gradient(135deg, var(--ink) 0%, #1a3358 100%);
  color: #fff;
  padding: 60px 50px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .testimonial { padding: 40px 24px; } }
.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  inset-inline-start: 30px;
  font-family: 'Cairo', serif;
  font-size: 280px;
  font-weight: 800;
  line-height: 1;
  color: rgba(56, 189, 248, 0.1);
  pointer-events: none;
}
.testimonial-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.testimonial-quote {
  font-family: 'Cairo', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) { .testimonial-quote { font-size: 18px; } }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.testimonial-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.testimonial-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
}
/* ============ PRICING APPROACH ============ */
.pricing-approach {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.pricing-approach::before {
  content: '';
  position: absolute;
  top: -100px; inset-inline-end: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(3, 105, 161, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.pa-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) { .pa-grid { grid-template-columns: 1fr; gap: 30px; } }
.pa-left .section-eyebrow { margin-bottom: 14px; }
.pa-left .section-title { margin-bottom: 14px; }
.pa-factors-title {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pa-factors-title::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
}
.pa-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) { .pa-factors { grid-template-columns: 1fr; } }
.pa-factor {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  transition: all 0.18s;
}
.pa-factor:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.pa-factor-icon {
  width: 40px; height: 40px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pa-factor-icon svg { width: 17px; height: 17px; }
.pa-factor-title {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.pa-factor-desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
/* Right column — Quote card */
.pa-right {
  position: relative;
}
.pa-quote-card {
  background: var(--card);
  border: 1.5px solid var(--line-soft);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.pa-quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
}
.pa-quote-hdr {
  padding: 22px 24px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line-faint);
  background: linear-gradient(180deg, var(--primary-faint) 0%, transparent 100%);
}
.pa-quote-hdr-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--ink) 100%);
  color: #fff;
  border-radius: 13px;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(3, 105, 161, 0.4);
}
.pa-quote-hdr-icon svg { width: 22px; height: 22px; }
.pa-quote-hdr-title {
  font-family: 'Cairo', sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.pa-quote-hdr-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 700;
}
.pa-quote-body {
  padding: 22px 24px 24px;
}
.pa-quote-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-faint);
}
.pa-quote-step:last-of-type { border-bottom: none; padding-bottom: 18px; }
.pa-quote-step:first-of-type { padding-top: 4px; }
.pa-quote-step-num {
  width: 32px; height: 32px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.pa-quote-step-title {
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.pa-quote-step-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pa-quote-cta {
  width: 100%;
  margin-top: 8px;
}
.pa-quote-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-faint);
}
.pa-quote-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.pa-quote-trust-item svg {
  width: 12px; height: 12px;
  color: var(--success);
}
/* What's included strip */
.pa-included {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 28px 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) { .pa-included { padding: 22px; } }
.pa-included-title {
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pa-included-title::before, .pa-included-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  max-width: 80px;
}
.pa-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .pa-included-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .pa-included-grid { grid-template-columns: 1fr; } }
.pa-included-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pa-included-icon {
  width: 36px; height: 36px;
  background: var(--success-soft);
  color: var(--success);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pa-included-icon svg { width: 16px; height: 16px; }
.pa-included-name {
  font-family: 'Cairo', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.pa-included-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}
/* ============ FAQ ============ */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.15s;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: transparent;
  border: none;
  text-align: start;
  cursor: pointer;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  font-family: inherit;
}
.faq-trigger:hover { background: var(--bg-2); }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--bg-2);
  color: var(--ink);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-toggle svg { width: 13px; height: 13px; }
.faq-item.open .faq-toggle {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}
.faq-body {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-body { max-height: 600px; }
/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  padding: 80px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(3, 105, 161, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.final-cta-eyebrow svg { width: 12px; height: 12px; }
.final-cta-title {
  font-family: 'Cairo', sans-serif;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
@media (max-width: 768px) { .final-cta-title { font-size: 30px; } }
.final-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}
.final-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.final-cta-trust {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
}
.final-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.final-cta-trust svg { width: 12px; height: 12px; color: var(--success); }
/* === حَصين BRAND ENHANCEMENTS === */
  .brand-logo {
    background: linear-gradient(135deg, var(--primary) 0%, var(--ink) 60%, var(--gold) 140%);
  }
.brand-name {
    background: linear-gradient(135deg, var(--ink) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
  }
.footer-brand .brand-name {
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
/* Hero: make "حَصين" the visual anchor */
  .hero-title .gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--ink) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.15em;
    letter-spacing: -0.04em;
    position: relative;
    display: inline-block;
  }
.hero-title .gradient::after {
    content: '';
    position: absolute;
    bottom: -8px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
  }
.dt-wa-fab{position:fixed;bottom:22px;left:22px;z-index:9998;width:56px;height:56px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 10px 28px -8px rgba(37,211,102,.62);transition:transform .2s ease,box-shadow .2s ease}
.dt-wa-fab:hover,.dt-wa-fab:focus-visible{transform:translateY(-3px);box-shadow:0 16px 34px -10px rgba(37,211,102,.72);color:#fff}
.dt-wa-fab:focus-visible{outline:3px solid #0b6b37;outline-offset:3px}
.dt-wa-fab svg{width:29px;height:29px;fill:currentColor}
.dt-wa-fab__tip{position:absolute;inset-inline-start:calc(100% + 12px);white-space:nowrap;background:#0f1b14;color:#fff;font-size:13px;line-height:1;padding:9px 13px;border-radius:8px;opacity:0;visibility:hidden;transform:translateX(-6px);transition:opacity .18s ease,transform .18s ease,visibility .18s;pointer-events:none}
.dt-wa-fab:hover .dt-wa-fab__tip,.dt-wa-fab:focus-visible .dt-wa-fab__tip{opacity:1;visibility:visible;transform:none}
@media (max-width:600px){.dt-wa-fab{bottom:16px;left:16px;width:52px;height:52px}.dt-wa-fab__tip{display:none}}
@media (prefers-reduced-motion:reduce){.dt-wa-fab,.dt-wa-fab__tip{transition:none}.dt-wa-fab:hover,.dt-wa-fab:focus-visible{transform:none}}
@media print{.dt-wa-fab{display:none}}