:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-soft: #eef2ff;
  --glass-bg: rgba(255, 255, 255, 0.76);
  --glass-border: rgba(15, 23, 42, 0.08);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --accent-primary: #4f46e5;
  --accent-secondary: #7c3aed;
  --accent-cyan: #0891b2;
  --accent-emerald: #059669;
  --accent-wa: #25d366;
  --accent-fb: #0084ff;
  --accent-ig: #e1306c;
  --gradient-brand: linear-gradient(135deg, #4f46e5 0%, #7c3aed 55%, #0891b2 100%);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 32px 64px -12px rgba(15, 23, 42, 0.14);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --font-display: "IBM Plex Sans Arabic", "Cairo", system-ui, sans-serif;
  --font-body: "IBM Plex Sans Arabic", "Cairo", system-ui, sans-serif;
  --section-y: clamp(2.25rem, 4.5vw, 4.25rem);
  --container-px: clamp(1rem, 4vw, 1.5rem);
  --nav-offset: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-offset); }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { border: 0; cursor: pointer; }
.sprite { display: none; }
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% -10%, rgba(79, 70, 229, 0.14), transparent 28rem),
    radial-gradient(circle at 90% 25%, rgba(8, 145, 178, 0.1), transparent 26rem),
    linear-gradient(rgba(15,23,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.03) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
}
.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--container-px); position: relative; z-index: 1; }
.section { padding-block: var(--section-y); position: relative; z-index: 1; }
.section-sm { padding-block: clamp(2rem, 4vw, 3rem); position: relative; z-index: 1; }
.section-alt { background: var(--bg-secondary); }

.header {
  position: fixed;
  top: 10px;
  inset-inline: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding-inline: 20px;
}
.nav {
  width: min(1140px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}
.logo { display: flex; align-items: center; gap: 9px; font: 800 1rem var(--font-display); white-space: nowrap; }
.logo-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}
.logo-mark img,
.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  transition: 0.25s ease;
}
.nav-links a:hover { color: var(--accent-primary); background: var(--bg-soft); transform: translateY(-1px); }
.nav-links a.is-active { color: var(--accent-primary); background: rgba(79,70,229,0.08); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 2.45rem;
  padding: 0 1.05rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn svg,
.nav-links a svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.btn-primary { color: #fff; background: var(--gradient-brand); box-shadow: 0 4px 16px rgba(79,70,229,0.35); }
.btn-outline { color: var(--text-primary); background: #fff; border: 1px solid var(--glass-border); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { min-height: 3rem; padding-inline: 1.35rem; }
.btn-primary:hover { box-shadow: 0 18px 36px rgba(79,70,229,0.28); }
.btn-outline:hover { border-color: rgba(79,70,229,0.25); background: #f8faff; }

.hero { padding: calc(var(--nav-offset) + 30px) 0 56px; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 700;
}
.badge span { width: 8px; height: 8px; background: var(--accent-emerald); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(5,150,105,0); } }
h1, h2, h3, p { letter-spacing: 0; }
h1 {
  max-width: 640px;
  font: 900 clamp(1.9rem, 3vw + .75rem, 3.25rem)/1.2 var(--font-display);
  margin-bottom: 14px;
}
h2 { font: 900 clamp(1.45rem, 1.8vw + .75rem, 2.25rem)/1.3 var(--font-display); margin-bottom: 10px; }
h3 { font: 800 1.05rem var(--font-display); margin-bottom: 8px; }
.gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub, .section-header p, .card p, .service-card p, .contact-panel p { color: var(--text-secondary); font-size: clamp(.94rem, .25vw + .9rem, 1.03rem); line-height: 1.75; }
.hero-sub { max-width: 560px; margin-bottom: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-metrics { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 22px; border-top: 1px solid var(--glass-border); }
.hero-metrics strong { display: block; color: var(--accent-primary); font: 900 1.35rem var(--font-display); }
.hero-metrics span { color: var(--text-muted); font-size: .85rem; }

.hero-visual { position: relative; min-width: 0; }
.float-brand {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-md);
  font-weight: 900;
  animation: floatIcon 5s ease-in-out infinite;
}
.wa { top: 7%; right: -2%; color: var(--accent-wa); }
.ig { top: 2%; left: 1%; color: var(--accent-ig); animation-delay: .5s; }
.ms { bottom: 23%; right: -4%; color: var(--accent-fb); animation-delay: 1s; }
@keyframes floatIcon { 50% { transform: translateY(-10px); } }
.dashboard {
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-xl);
}
.dash-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-secondary);
}
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; }
.dots span:nth-child(1) { background: #ff5f57; }
.dots span:nth-child(2) { background: #febc2e; }
.dots span:nth-child(3) { background: #28c840; }
.dash-head b { flex: 1; text-align: center; color: var(--text-secondary); font-size: .85rem; }
.dash-head em { display: flex; align-items: center; gap: 6px; color: var(--accent-emerald); font-style: normal; font-size: .78rem; font-weight: 800; }
.dash-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-emerald); }
.dash-body { display: flex; min-height: 285px; }
.dash-body aside { width: 58px; padding: 14px 10px; border-inline-end: 1px solid var(--glass-border); background: var(--bg-secondary); display: grid; align-content: start; gap: 10px; }
.dash-body aside span { height: 38px; border-radius: var(--radius-sm); background: #e2e8f0; }
.dash-body aside .active { background: var(--gradient-brand); }
.dash-main { flex: 1; padding: 18px; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.kpis div, .chart, .convos div {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
}
.kpis div { padding: 12px; }
.kpis small { display: block; color: var(--text-muted); font-size: .72rem; margin-bottom: 4px; }
.kpis strong { font: 900 1.16rem var(--font-display); }
.chart { height: 105px; display: flex; align-items: end; gap: 8px; padding: 14px; margin-bottom: 14px; }
.chart i { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; background: var(--gradient-brand); transform-origin: bottom; animation: barGrow 1.2s ease forwards; }
@keyframes barGrow { from { transform: scaleY(0); } }
.convos { display: grid; gap: 8px; }
.convos div { display: flex; align-items: center; gap: 10px; padding: 10px; }
.avatar { width: 32px; height: 32px; border-radius: 50%; flex: 0 0 auto; }
.a-wa { background: var(--accent-wa); }
.a-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.a-ms { background: var(--accent-fb); }
.convos b, .convos small { display: block; }
.convos small { color: var(--text-muted); font-size: .78rem; }

.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; margin-bottom: 36px; }
.logo-strip span {
  padding: 11px 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-muted);
  font-weight: 800;
}
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats-grid article, .card, .service-card, .platform-cards article, .faq-item, .process-step, .case-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.stats-grid article { text-align: center; padding: 22px 16px; }
.stats-grid strong { font: 900 1.75rem var(--font-display); background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats-grid p { color: var(--text-secondary); }
.section-header { max-width: 720px; margin-bottom: 34px; }
.section-header.center { text-align: center; margin-inline: auto; }
.section-eyebrow { display: inline-block; color: var(--accent-primary); font-size: .85rem; font-weight: 900; margin-bottom: 14px; }
.about-grid, .services-grid { display: grid; gap: 22px; }
.about-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.card, .service-card { padding: 22px; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover, .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card { position: relative; overflow: hidden; }
.card::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.08), transparent 65%);
  pointer-events: none;
}
.card svg, .service-card svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  color: var(--accent-primary);
  background: var(--bg-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.platform-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.platform-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.platform-cards article { padding: 21px; min-height: 112px; display: grid; align-content: space-between; }
.platform-cards b { font: 900 1.2rem var(--font-display); }
.platform-cards span { color: var(--text-secondary); }
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.process-flow::before {
  content: "";
  position: absolute;
  top: 35px;
  inset-inline: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-cyan));
  opacity: .25;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 21px;
  min-height: 195px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-step:hover, .case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process-step b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: 0 10px 28px rgba(79,70,229,.22);
}
.process-step p, .case-card p { color: var(--text-secondary); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.case-card {
  min-height: 205px;
  padding: 21px;
  background:
    linear-gradient(180deg, rgba(238,242,255,.72), rgba(255,255,255,1));
  transition: transform .25s ease, box-shadow .25s ease;
}
.case-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-primary);
  font-size: .82rem;
  font-weight: 900;
}
.exec-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.exec-dash {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 355px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-xl);
}
.exec-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 16px;
  background: #0f172a;
  color: #94a3b8;
}
.exec-sidebar strong {
  color: #fff;
  margin-bottom: 18px;
  font: 900 1rem var(--font-display);
}
.exec-sidebar span {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .86rem;
  font-weight: 800;
}
.exec-sidebar .active {
  color: #fff;
  background: rgba(79,70,229,.28);
}
.exec-main { padding: 20px; background: var(--bg-secondary); }
.exec-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.exec-top h3 { margin: 0; }
.exec-top em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--accent-emerald);
  font-style: normal;
  font-size: .75rem;
  font-weight: 900;
}
.exec-top i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-emerald); }
.exec-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.exec-kpis div {
  padding: 14px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.exec-kpis small, .exec-kpis span { display: block; color: var(--text-muted); font-weight: 800; }
.exec-kpis strong { display: block; margin: 6px 0 3px; font: 900 1.35rem var(--font-display); }
.exec-kpis span { color: var(--accent-emerald); font-size: .76rem; }
.exec-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 120px;
  padding: 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: #fff;
}
.exec-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #a5b4fc, var(--accent-primary));
}
.compare { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; max-width: 1000px; margin-inline: auto; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--glass-border); }
.compare-card { padding: clamp(20px,3vw,30px); background: #fff; }
.compare-card.before { background: linear-gradient(180deg, #fef2f2, #fff); }
.compare-card.after { background: linear-gradient(180deg, #ecfdf5, #fff); }
.compare-card ul { display: grid; gap: 14px; list-style: none; }
.compare-card li { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--text-secondary); }
.compare-card svg, .faq-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.before svg { color: #ef4444; }
.after svg { color: var(--accent-emerald); }
.vs { display: grid; place-items: center; padding: 18px; color: #fff; background: var(--gradient-brand); font-weight: 900; }
.faq-wrap { max-width: 850px; }
.faq-item { padding: 0 22px; margin-bottom: 12px; }
.faq-item summary { padding: 16px 0; font-weight: 900; cursor: pointer; }
.faq-item p { color: var(--text-secondary); padding-bottom: 20px; }
.final-cta { padding-top: 0; }
.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border: 1px solid rgba(79,70,229,.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 0%, rgba(79,70,229,.11), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 18px 45px rgba(15,23,42,.07);
  text-align: start;
}
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(79,70,229,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.8), transparent 78%);
}
.contact-panel > * {
  position: relative;
  z-index: 1;
}
.contact-intro {
  display: grid;
  justify-items: start;
  align-content: center;
}
.contact-bot {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(5,150,105,.2);
  border-radius: 16px;
  background: #fff;
  color: var(--accent-emerald);
  box-shadow: 0 10px 24px rgba(15,23,42,.07);
}
.contact-bot svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 .85rem;
  margin-bottom: 14px;
  border: 1px solid rgba(79,70,229,.22);
  border-radius: var(--radius-pill);
  background: #ecebff;
  color: var(--accent-primary);
  font-weight: 900;
  font-size: .82rem;
}
.contact-panel h2 {
  max-width: 430px;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.25;
}
.contact-panel p {
  max-width: 470px;
  margin: 0 0 18px;
  color: #526176;
  font-size: .98rem;
}
.contact-main-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 2.75rem;
  padding: 0 1.15rem;
  border-radius: var(--radius-pill);
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: 0 14px 30px rgba(79,70,229,.22);
  font-weight: 900;
}
.contact-main-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  margin: 0;
}
.contact-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon value"
    "icon meta";
  align-items: center;
  column-gap: 10px;
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 20px rgba(15,23,42,.045);
  text-align: start;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79,70,229,.22);
  box-shadow: 0 18px 38px rgba(15,23,42,.09);
}
.contact-card.featured {
  border-color: rgba(5,150,105,.28);
  background: linear-gradient(180deg, rgba(236,253,245,.92), #fff 85%);
  box-shadow: 0 16px 38px rgba(5,150,105,.1);
}
.contact-icon {
  grid-area: icon;
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(79,70,229,.16);
  border-radius: 10px;
  color: var(--accent-primary);
  background: #f8f8ff;
}
.featured .contact-icon {
  color: var(--accent-emerald);
  background: #ecfdf5;
}
.contact-card small {
  grid-area: label;
  color: var(--text-muted);
  font-weight: 900;
  font-size: .7rem;
  line-height: 1.2;
}
.contact-card strong {
  grid-area: value;
  color: var(--text-primary);
  min-width: 0;
  font: 900 .88rem var(--font-display);
  line-height: 1.28;
  direction: ltr;
  unicode-bidi: embed;
  overflow-wrap: anywhere;
}
.contact-card em {
  grid-area: meta;
  color: var(--text-secondary);
  font-style: normal;
  font-size: .68rem;
  line-height: 1.35;
  font-weight: 700;
}
.contact-card.hours {
  grid-column: auto;
}
.contact-card.hours strong {
  direction: rtl;
  unicode-bidi: normal;
}
.footer {
  position: relative;
  z-index: 1;
  padding: 42px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(79,70,229,.08), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--text-secondary);
  border-top: 1px solid var(--glass-border);
}
.footer-simple {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.footer-logo-mark {
  width: 64px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font: 900 1.15rem var(--font-display);
}
.footer-simple strong {
  color: var(--text-primary);
  font: 900 1.15rem var(--font-display);
}
.footer-simple p {
  max-width: 560px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.footer-simple span {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: .88rem;
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hero-grid, .platform-grid, .exec-grid, .contact-panel { grid-template-columns: 1fr; }
  .about-grid, .services-grid, .grid-4, .process-flow, .cases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-card.hours { grid-column: auto; }
  .process-flow::before { display: none; }
  .float-brand { display: none; }
}
@media (max-width: 720px) {
  :root { --nav-offset: 66px; }
  .header { top: 8px; padding-inline: 8px; }
  .nav { padding: 8px 10px; }
  .nav .btn { display: none; }
  .hero { padding-top: calc(var(--nav-offset) + 24px); }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .hero-metrics { gap: 16px; }
  .dash-body { display: block; }
  .dash-body aside { display: none; }
  .kpis, .about-grid, .services-grid, .grid-4, .platform-cards, .contact-grid, .process-flow, .cases-grid, .exec-dash, .exec-kpis { grid-template-columns: 1fr; }
  .exec-sidebar { display: none; }
  .compare { grid-template-columns: 1fr; }
  .vs { padding: 14px; }
  .contact-panel { padding: 1.25rem; }
  .contact-panel h2 { font-size: clamp(1.35rem, 7vw, 1.8rem); }
  .contact-panel p { font-size: .92rem; }
  .contact-card {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 64px;
    padding: 10px;
  }
  .contact-icon { width: 36px; }
}
