:root {
  --navy: #071b33;
  --navy-2: #0a2647;
  --blue: #0a6cff;
  --teal: #15c6b8;
  --cyan: #ddfbff;
  --ink: #101828;
  --muted: #667085;
  --line: rgba(255,255,255,.16);
  --soft-line: rgba(11, 38, 71, .1);
  --white: #ffffff;
  --paper: #f5f7fa;
  --shadow: 0 24px 70px rgba(4, 21, 44, .16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, 'IBM Plex Sans Arabic', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
body[dir="rtl"], html[dir="rtl"] body { font-family: 'IBM Plex Sans Arabic', Inter, system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.cursor-glow {
  position: fixed;
  inset: auto auto 12% 4%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(21, 198, 184, .18), rgba(10, 108, 255, .12) 35%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}
.site-shell { position: relative; z-index: 1; }
.section-pad { padding: 105px 24px; }

.topbar {
  position: sticky;
  top: 18px;
  z-index: 30;
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(7, 27, 51, .82);
  backdrop-filter: blur(22px);
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 20px 70px rgba(3, 16, 32, .28);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 24px;
  white-space: nowrap;
}
.brand.small { font-size: 21px; }
.brand-mark img { width: 30px; height: 30px; object-fit: contain; display: block; }
.brand-mark.footer-mark { background: rgba(7, 65, 37, .08); border-color: rgba(7,65,37,.18); }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 65, 37, .92);
  border: 1px solid rgba(255,255,255,.2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255,255,255,.76);
}
.nav-links a { transition: .25s ease; }
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: flex;
  align-items: center;
  padding: 4px;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.lang-switch a {
  min-width: 34px;
  padding: 7px 8px;
  text-align: center;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 800;
}
.lang-switch a.active { background: var(--white); color: var(--navy); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 7px 8px;
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  box-shadow: 0 16px 40px rgba(10,108,255,.28);
}
.btn-light {
  color: var(--navy);
  background: var(--white);
}
.btn-small { padding: 10px 16px; font-size: 13px; }
.btn-ghost {
  border-color: rgba(255,255,255,.22);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-ghost.dark {
  color: var(--navy);
  border-color: rgba(7,27,51,.16);
  background: rgba(7,27,51,.06);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 890px;
  padding-top: 80px;
  background:
    radial-gradient(circle at 82% 24%, rgba(21,198,184,.24), transparent 26%),
    radial-gradient(circle at 10% 10%, rgba(10,108,255,.28), transparent 27%),
    linear-gradient(135deg, #061830 0%, #08294d 56%, #06111f 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}
.hero > * { max-width: var(--max); }
.hero-copy { justify-self: end; max-width: 590px; position: relative; z-index: 2; }
.hero-visual { justify-self: start; position: relative; width: min(560px, 100%); min-height: 550px; z-index: 2; }
.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 68%);
}
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 24px rgba(21,198,184,.9);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 22px 0 20px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: .91;
  letter-spacing: -.075em;
  max-width: 820px;
}
.hero-subtitle {
  max-width: 660px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,.77);
}
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 30px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}
.trust-row span {
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
}

.glass-card {
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  backdrop-filter: blur(24px);
  box-shadow: 0 34px 90px rgba(2, 12, 26, .32);
}

.hero-logo-card {
  position: absolute;
  top: -24px;
  right: 16px;
  z-index: 4;
  width: 128px;
  height: 128px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 22px 60px rgba(0,0,0,.32), 0 0 42px rgba(21,198,184,.18);
  background: #074125;
  transform: rotate(3deg);
}
.hero-logo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
html[dir="rtl"] .hero-logo-card { right: auto; left: 16px; transform: rotate(-3deg); }

.dashboard-card {
  position: absolute;
  inset: 80px 0 auto;
  padding: 26px;
  border-radius: 34px;
  min-height: 420px;
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
}
.dash-top, .invoice-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.dash-top small, .invoice-preview span { color: rgba(255,255,255,.65); display: block; margin-bottom: 6px; }
.dash-top strong, .invoice-preview strong { font-size: 20px; }
.pulse-dot {
  width: 15px; height: 15px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 8px rgba(21,198,184,.16), 0 0 28px rgba(21,198,184,.9);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.metric-card {
  padding: 18px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
}
.metric-card strong { display: block; font-size: 31px; letter-spacing: -.06em; }
.metric-card span { color: rgba(255,255,255,.66); font-size: 12px; }
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.pipe-step {
  min-height: 98px;
  border-radius: 20px;
  padding: 14px;
  background: rgba(7,27,51,.48);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.62);
}
.pipe-step span { display: block; font-size: 12px; margin-bottom: 18px; }
.pipe-step b { display: block; }
.pipe-step.done, .pipe-step.active {
  background: linear-gradient(145deg, rgba(10,108,255,.72), rgba(21,198,184,.38));
  color: var(--white);
}
.invoice-preview {
  padding: 16px;
  border-radius: 22px;
  background: var(--white);
  color: var(--navy);
}
.qr-mini {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #061830 14px, transparent 14px) 0 0/24px 24px,
    linear-gradient(#061830 14px, transparent 14px) 0 0/24px 24px,
    var(--white);
  border: 8px solid var(--white);
  outline: 1px solid rgba(7,27,51,.12);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}
.orbit-one { width: 480px; height: 480px; inset: 45px 40px auto auto; }
.orbit-two { width: 330px; height: 330px; inset: 120px 100px auto auto; animation-duration: 22s; }
.floating-chip {
  position: absolute;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  animation: floaty 4s ease-in-out infinite;
}
.chip-one { top: 36px; left: 28px; }
.chip-two { right: 10px; bottom: 120px; animation-delay: .6s; }
.chip-three { left: 24px; bottom: 72px; animation-delay: 1.2s; color: #027a48; }

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading.align-start { text-align: start; margin: 0; }
.section-heading.narrow { max-width: 920px; }
.section-heading h2, .final-copy h2, .emotional-card h2 {
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.06em;
  margin: 14px 0 18px;
}
.section-heading p, .status-copy p, .final-copy p, .emotional-card p, .lead-form p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.comparison-grid, .split-layout, .final-cta {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.chaos-panel, .calm-panel {
  min-height: 370px;
  border-radius: var(--radius-xl);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.chaos-panel {
  background: #fff;
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow);
}
.chaos-panel::before {
  content: '';
  position: absolute;
  inset: -80px;
  background: repeating-linear-gradient(37deg, transparent 0 25px, rgba(242,68,68,.08) 26px 28px);
}
.chaos-item, .calm-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 13px 15px;
  border-radius: 15px;
  font-weight: 800;
  margin: 16px 0;
}
.chaos-item { background: #fff1f3; color: #b42318; transform: rotate(-1deg); }
.chaos-item:nth-child(even) { margin-inline-start: auto; transform: rotate(2deg); }
.chaos-item span {
  display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #f04438; color: white;
}
.calm-panel {
  background: linear-gradient(145deg, var(--navy), #0c3564);
  color: white;
}
.calm-core {
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  margin: 10px auto 24px;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  background: radial-gradient(circle, rgba(21,198,184,.42), rgba(10,108,255,.34));
  box-shadow: inset 0 0 42px rgba(255,255,255,.14), 0 0 80px rgba(21,198,184,.28);
}
.calm-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
}
.calm-item span, .security-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 20px rgba(21,198,184,.7);
}

.card-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.six-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  min-height: 270px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--soft-line);
  box-shadow: 0 16px 50px rgba(4, 21, 44, .08);
  transition: transform .24s ease, box-shadow .24s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon {
  width: 52px; height: 52px; border-radius: 17px;
  display: grid; place-items: center;
  font-weight: 900; color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  margin-bottom: 26px;
}
.feature-card h3 { font-size: 22px; letter-spacing: -.03em; margin-bottom: 12px; }
.feature-card p { color: var(--muted); line-height: 1.65; }

.flow {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(10,108,255,.08), transparent 28%), radial-gradient(circle at 80% 70%, rgba(21,198,184,.12), transparent 24%);
}
.flow > * { position: relative; }
.flow-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(190px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.flow-step {
  min-height: 285px;
  padding: 24px;
  border-radius: 24px;
  background: #f9fbff;
  border: 1px solid rgba(10,108,255,.12);
  position: relative;
}
.flow-step::after {
  content: '';
  position: absolute;
  top: 52px;
  inset-inline-end: -8px;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.flow-step:last-child::after { display: none; }
.flow-step span {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  color: var(--white);
  font-weight: 900;
  background: var(--navy);
  margin-bottom: 36px;
}
.flow-step h3 { font-size: 21px; letter-spacing: -.03em; }
.flow-step p { color: var(--muted); line-height: 1.65; }

.features { background: #f7faff; }
.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.feature-cloud span {
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(10,108,255,.11);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(4,21,44,.06);
}

.status-dashboard {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  border-radius: var(--radius-xl);
  padding: 30px;
  background: linear-gradient(145deg, #071b33, #0b315e);
  color: var(--white);
}
.status-copy p { color: rgba(255,255,255,.72); }
.status-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.status-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 12px;
}
.invoice-table {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
}
.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr .9fr;
  gap: 12px;
  padding: 16px 10px;
  border-bottom: 1px solid rgba(7,27,51,.08);
  align-items: center;
  font-size: 14px;
}
.table-row:last-child { border-bottom: 0; }
.table-head { color: var(--muted); font-weight: 900; }
.table-row b { justify-self: start; padding: 7px 10px; border-radius: 999px; font-size: 12px; }
.ok { color: #027a48; background: #ecfdf3; }
.warn { color: #b54708; background: #fffaeb; }
.fail { color: #b42318; background: #fff1f3; }

.emotional {
  background: linear-gradient(135deg, #061830, #08294d);
  color: var(--white);
}
.emotional-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark {
  font-size: 120px;
  line-height: .6;
  color: rgba(21,198,184,.6);
  font-weight: 900;
}
.emotional-card p { color: rgba(255,255,255,.72); font-size: 19px; }

.security-visual {
  height: 420px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle, rgba(21,198,184,.18), rgba(10,108,255,.14), rgba(7,27,51,.94));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vault-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.28);
  animation: spin 20s linear infinite;
}
.vault-core {
  width: 190px;
  height: 190px;
  border-radius: 42px;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
}
.vault-core span { color: var(--teal); font-weight: 900; letter-spacing: .18em; }
.vault-core strong { display: block; font-size: 26px; max-width: 120px; line-height: 1; }
.security-list { margin-top: 24px; display: grid; gap: 12px; }
.security-list div { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 800; }

.usecases { overflow: hidden; }
.usecase-marquee {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  padding: 18px 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  border: 1px solid var(--soft-line);
  box-shadow: 0 14px 35px rgba(4,21,44,.06);
}

.whatsapp-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(21,198,184,.22), transparent 20%),
    linear-gradient(135deg, #071b33, #0a3567);
  color: var(--white);
}
.whatsapp-card h2 { font-size: clamp(32px, 4vw, 54px); letter-spacing: -.06em; margin: 14px 0; }
.whatsapp-card p { max-width: 670px; color: rgba(255,255,255,.72); line-height: 1.75; }

.final-cta { align-items: start; }
.final-copy { padding-top: 24px; }
.lead-form {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow);
}
.lead-form h3 { font-size: 28px; letter-spacing: -.04em; margin-bottom: 6px; }
.lead-form label { display: block; margin-top: 16px; }
.lead-form label span { display: block; margin-bottom: 8px; color: var(--navy); font-weight: 800; }
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid rgba(7,27,51,.13);
  border-radius: 15px;
  padding: 14px 15px;
  outline: 0;
  transition: border .2s ease, box-shadow .2s ease;
  background: #fbfcff;
}
.lead-form input:focus, .lead-form textarea:focus {
  border-color: rgba(10,108,255,.5);
  box-shadow: 0 0 0 4px rgba(10,108,255,.09);
}
.lead-form button { width: 100%; margin-top: 18px; }
.form-success {
  padding: 13px 14px;
  margin: 14px 0;
  border-radius: 15px;
  background: #ecfdf3;
  color: #027a48;
  font-weight: 800;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--muted);
}
.footer .brand { color: var(--navy); }
.footer .brand-mark { background: rgba(7,65,37,.08); border-color: rgba(7,65,37,.16); }
.footer p { margin: 0; font-size: 13px; line-height: 1.6; }
.footer a { color: var(--blue); font-weight: 900; }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes marquee { to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

@media (max-width: 1100px) {
  .topbar { margin-inline: 16px; }
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy, .hero-visual { justify-self: center; width: 100%; max-width: var(--max); }
  .hero-visual { min-height: 500px; }
  .dashboard-card { inset-inline: 5%; }
  .six-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid, .split-layout, .final-cta, .status-dashboard { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .section-pad { padding: 78px 18px; }
  .menu-toggle { display: block; }
  .nav-links, .nav-actions {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7, 27, 51, .96);
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
  }
  .topbar.open .nav-links { display: flex; }
  .topbar.open .nav-actions { display: flex; top: calc(100% + 230px); }
  .btn-small { width: 100%; }
  h1 { font-size: clamp(44px, 14vw, 72px); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline { grid-template-columns: repeat(2, 1fr); }
  .dashboard-card { transform: none; }
  .six-grid { grid-template-columns: 1fr; }
  .whatsapp-card { align-items: stretch; flex-direction: column; }
  .footer { grid-template-columns: 1fr; }
  .table-row { grid-template-columns: 1fr 1fr; }
  .table-head { display: none; }
}

@media (max-width: 520px) {
  .topbar { border-radius: 26px; top: 10px; }
  .hero { min-height: 980px; }
  .hero-actions .btn { width: 100%; }
  .dashboard-card { padding: 18px; }
  .floating-chip { display: none; }
  .section-heading h2, .final-copy h2, .emotional-card h2 { font-size: 36px; }
}

@media (max-width: 760px) {
  .hero-logo-card { width: 96px; height: 96px; top: -8px; right: 12px; border-radius: 22px; }
  html[dir="rtl"] .hero-logo-card { left: 12px; right: auto; }
}

/* Professional Zattiq green theme refresh */
:root {
  --navy: #064225;
  --navy-2: #0a5836;
  --blue: #0b6b42;
  --teal: #19c37d;
  --cyan: #e8fff2;
  --ink: #092116;
  --muted: #627168;
  --line: rgba(6,66,37,.14);
  --soft-line: rgba(6,66,37,.11);
  --paper: #f7fbf5;
  --shadow: 0 24px 70px rgba(4, 46, 27, .13);
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(25,195,125,.10), transparent 25%),
    linear-gradient(180deg, #f7fbf5 0%, #ffffff 44%, #f7fbf5 100%);
}

.cursor-glow {
  background: radial-gradient(circle, rgba(25,195,125,.18), rgba(6,66,37,.10) 38%, transparent 68%);
}

.topbar {
  top: 0;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 12px clamp(18px, 4vw, 60px);
  border-radius: 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(6,66,37,.12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 34px rgba(6,66,37,.08);
}

.topbar::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #064225, #19c37d, #064225);
}

.brand {
  gap: 12px;
  color: var(--navy);
  letter-spacing: -.035em;
}

.brand-word {
  display: grid;
  line-height: 1;
}

.brand-word small {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(6,66,37,.62);
  font-weight: 900;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #f1fbf5;
  border: 1px solid rgba(6,66,37,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 10px 28px rgba(6,66,37,.08);
}

.brand-mark img {
  width: 32px;
  height: 32px;
}

.nav-links {
  gap: 26px;
  color: rgba(9,33,22,.68);
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--navy);
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(6,66,37,.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(6,66,37,.12);
}

.header-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(25,195,125,.72);
}

.lang-switch {
  background: rgba(6,66,37,.07);
  border: 1px solid rgba(6,66,37,.10);
}

.lang-switch a {
  color: rgba(9,33,22,.66);
}

.lang-switch a.active {
  background: var(--navy);
  color: #fff;
}

.btn-light {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 34px rgba(6,66,37,.18);
}

.btn-primary,
.card-icon,
.pipe-step.done,
.pipe-step.active {
  background: linear-gradient(135deg, #064225, #0d7a4c 52%, #19c37d);
  box-shadow: 0 16px 40px rgba(6,66,37,.24);
}

.btn-primary:hover,
.btn-light:hover {
  box-shadow: 0 18px 48px rgba(6,66,37,.26);
}

.menu-toggle span {
  background: var(--navy);
}

.hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(25,195,125,.25), transparent 24%),
    radial-gradient(circle at 12% 14%, rgba(255,255,255,.08), transparent 20%),
    linear-gradient(135deg, #03351d 0%, #064225 46%, #092116 100%);
}

.hero::after {
  background: linear-gradient(to bottom, transparent, var(--paper));
}

.eyebrow, .kicker {
  color: #12a969;
}

.eyebrow span,
.pulse-dot,
.calm-item span,
.security-list span {
  background: var(--teal);
  box-shadow: 0 0 24px rgba(25,195,125,.72);
}

.hero-logo-card {
  background: #064225;
  box-shadow: 0 22px 60px rgba(0,0,0,.30), 0 0 42px rgba(25,195,125,.18);
}

.pipe-step {
  background: rgba(3,53,29,.52);
}

.qr-mini {
  background:
    linear-gradient(90deg, #064225 14px, transparent 14px) 0 0/24px 24px,
    linear-gradient(#064225 14px, transparent 14px) 0 0/24px 24px,
    var(--white);
}

.chip-three { color: #037a48; }

.calm-panel,
.status-dashboard,
.whatsapp-card,
.emotional {
  background:
    radial-gradient(circle at 82% 18%, rgba(25,195,125,.16), transparent 24%),
    linear-gradient(145deg, #03351d, #064225 58%, #092116);
}

.calm-core {
  background: radial-gradient(circle, rgba(25,195,125,.42), rgba(6,66,37,.36));
  box-shadow: inset 0 0 42px rgba(255,255,255,.14), 0 0 80px rgba(25,195,125,.25);
}

.flow::before {
  background: radial-gradient(circle at 20% 30%, rgba(25,195,125,.10), transparent 28%), radial-gradient(circle at 80% 70%, rgba(6,66,37,.08), transparent 24%);
}

.flow-step {
  border-color: rgba(6,66,37,.12);
}

.flow-step::after {
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.feature-cloud span,
.feature-card,
.lead-form,
.marquee-track span {
  border-color: rgba(6,66,37,.11);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(6,66,37,.45);
  box-shadow: 0 0 0 4px rgba(25,195,125,.12);
}

.footer-expanded {
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
  color: rgba(255,255,255,.72);
  background:
    radial-gradient(circle at 8% 8%, rgba(25,195,125,.12), transparent 25%),
    linear-gradient(145deg, #042d19, #064225 58%, #031f12);
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px 42px;
  display: grid;
  grid-template-columns: .95fr 1.55fr;
  gap: 54px;
}

.footer-brand-block .brand {
  color: #fff;
}

.footer-expanded .brand-mark,
.footer-expanded .footer-mark {
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.18);
}

.footer-expanded .brand-word small {
  color: rgba(255,255,255,.54);
}

.footer-tagline {
  margin: 22px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  max-width: 410px;
}

.app-downloads {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.app-downloads span {
  flex-basis: 100%;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.app-downloads a {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-weight: 900;
}

.app-downloads a:hover,
.footer-column a:hover,
.footer-bottom a:hover {
  color: #fff;
  border-color: rgba(25,195,125,.55);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-column h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  padding: 7px 0;
  color: rgba(255,255,255,.64);
  font-weight: 700;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px 34px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.56);
  font-size: 13px;
}

.footer-bottom p {
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom a {
  color: rgba(255,255,255,.76);
  font-weight: 900;
}

.simple-page {
  min-height: 100vh;
  padding: 110px 24px 70px;
  background:
    radial-gradient(circle at 86% 12%, rgba(25,195,125,.10), transparent 24%),
    linear-gradient(180deg, #f7fbf5, #ffffff);
}

.simple-page-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(6,66,37,.10);
  box-shadow: var(--shadow);
}

.simple-page-card .eyebrow {
  color: var(--navy);
}

.simple-page-card h1 {
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  margin-bottom: 18px;
}

.simple-page-card h2 {
  color: var(--ink);
  letter-spacing: -.04em;
  margin-top: 34px;
}

.simple-page-card p,
.simple-page-card li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.simple-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .topbar { margin-inline: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .topbar {
    padding: 10px 16px;
  }
  .header-badge { display: none; }
  .nav-links, .nav-actions {
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,.98);
    color: var(--ink);
    border: 1px solid rgba(6,66,37,.10);
  }
  .topbar.open .nav-actions {
    top: calc(100% + 280px);
  }
  .nav-actions .btn-light { width: 100%; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { justify-content: flex-start; }
  .simple-page-card { padding: 30px; }
}

@media (max-width: 520px) {
  .topbar { border-radius: 0; top: 0; }
  .brand-word small { display: none; }
  .brand { font-size: 22px; }
  .brand-mark { width: 42px; height: 42px; }
  .footer-top { padding-top: 46px; }
}

/* SAP-style enterprise header requested by client */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 54, 31, .08);
}
.site-header[data-reveal] {
  transform: none;
}
.utility-bar {
  min-height: 50px;
  background: #064225;
  color: #fff;
  display: flex;
  align-items: center;
  direction: ltr;
}
.utility-content {
  width: 100%;
  padding: 0 clamp(18px, 3vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-contacts,
.utility-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.94);
}
.utility-icon {
  font-size: 17px;
  line-height: 1;
  opacity: .86;
}
.utility-separator {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.55);
}
.utility-socials a {
  color: rgba(255,255,255,.94);
  font-weight: 800;
  letter-spacing: .01em;
}
.header-language {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-inline-start: 8px;
  font-weight: 700 !important;
}
.main-header.topbar {
  position: relative;
  top: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 112px;
  padding: 20px clamp(18px, 3vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(6,66,37,.08);
  background: #fff;
  color: #111827;
  box-shadow: none;
  backdrop-filter: none;
  direction: ltr;
}
.main-header.topbar::before {
  display: none;
}
.enterprise-brand {
  flex: 0 0 auto;
  gap: 12px;
  color: #064225;
  font-size: 24px;
  letter-spacing: .02em;
}
.enterprise-mark {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: #f4fff7;
  border: 1px solid rgba(6,66,37,.14);
  box-shadow: 0 14px 32px rgba(6,66,37,.10), inset 0 0 0 1px rgba(255,255,255,.8);
}
.enterprise-mark img {
  width: 43px;
  height: 43px;
}
.enterprise-word {
  display: flex;
  flex-direction: column;
  line-height: .95;
  font-weight: 900;
  color: #064225;
}
.enterprise-word small {
  margin-top: 8px;
  color: rgba(6,66,37,.58);
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 900;
}
.enterprise-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  color: #141414;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.enterprise-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 0;
  color: #141414;
  transition: color .2s ease;
}
.enterprise-nav a:hover {
  color: #064225;
}
.chevron {
  color: #064225;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}
.enterprise-actions {
  flex: 0 0 auto;
  position: static;
  display: flex;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.consult-btn {
  min-width: 168px;
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid #064225;
  border-radius: 999px;
  color: #064225;
  font-size: 17px;
  font-weight: 700;
  background: #fff;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.consult-btn:hover {
  transform: translateY(-2px);
  background: #064225;
  color: #fff;
  box-shadow: 0 14px 34px rgba(6,66,37,.20);
}
.menu-toggle {
  border: 1px solid rgba(6,66,37,.14);
  border-radius: 14px;
  background: #f6fbf7;
}
.menu-toggle span {
  background: #064225;
}
html[dir="rtl"] .enterprise-nav,
html[dir="rtl"] .enterprise-actions,
html[dir="rtl"] .enterprise-brand {
  direction: rtl;
}
html[dir="rtl"] .enterprise-word {
  align-items: flex-start;
  direction: ltr;
}

@media (max-width: 1220px) {
  .enterprise-nav {
    gap: 14px;
    font-size: 15px;
  }
  .consult-btn {
    min-width: 142px;
    padding-inline: 18px;
  }
}

@media (max-width: 980px) {
  .utility-content {
    gap: 12px;
  }
  .utility-contacts,
  .utility-socials {
    gap: 12px;
    font-size: 13px;
  }
  .main-header.topbar {
    min-height: 82px;
  }
  .menu-toggle {
    display: block;
    margin-inline-start: auto;
  }
  .enterprise-nav,
  .enterprise-actions {
    position: absolute;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(6,66,37,.12);
    box-shadow: 0 28px 70px rgba(6,66,37,.16);
    z-index: 120;
  }
  .enterprise-nav {
    top: calc(100% + 10px);
    gap: 2px;
  }
  .enterprise-actions {
    top: calc(100% + 360px);
  }
  .topbar.open .enterprise-nav,
  .topbar.open .enterprise-actions {
    display: flex;
  }
  .enterprise-nav a {
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(6,66,37,.04);
  }
  .consult-btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .utility-bar {
    min-height: auto;
    padding: 9px 0;
  }
  .utility-content {
    align-items: flex-start;
    flex-direction: column;
  }
  .utility-contacts {
    width: 100%;
    justify-content: space-between;
  }
  .utility-link {
    font-size: 12px;
  }
  .utility-separator {
    display: none;
  }
  .utility-socials {
    width: 100%;
    justify-content: space-between;
  }
  .main-header.topbar {
    padding-block: 14px;
    gap: 10px;
  }
  .enterprise-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
  .enterprise-mark img {
    width: 34px;
    height: 34px;
  }
  .enterprise-word {
    font-size: 20px;
  }
  .enterprise-word small {
    display: none;
  }
}


/* Zattiq corrected professional header - reference style, logo color, Arabic default safe */
:root {
  --zq-green: #064225;
  --zq-green-2: #0A5A35;
  --zq-green-soft: #F4FFF7;
  --zq-ink: #101828;
}
.site-shell { overflow: visible; }
.zq-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
  direction: ltr;
  box-shadow: 0 8px 28px rgba(6,66,37,.08);
}
.zq-header[data-reveal] { transform: none; opacity: 1; }
.zq-header-inner {
  width: min(100%, 1920px);
  margin: 0 auto;
  padding-left: clamp(24px, 3.2vw, 72px);
  padding-right: clamp(24px, 3.2vw, 72px);
}
.zq-utility {
  background: var(--zq-green);
  color: #ffffff;
  min-height: 50px;
  display: flex;
  align-items: center;
}
.zq-utility-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.zq-utility-left,
.zq-utility-right {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.zq-utility a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.96);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.zq-utility-right a { font-weight: 800; }
.zq-ui { opacity: .88; line-height: 1; font-size: 17px; }
.zq-divider { width: 1px; height: 26px; background: rgba(255,255,255,.58); }
.zq-language { padding-left: 8px; }
.zq-main-nav {
  background: #fff;
  border-bottom: 1px solid rgba(6,66,37,.08);
}
.zq-nav-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.zq-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--zq-green);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.035em;
}
.zq-logo img {
  width: 62px;
  height: 62px;
  display: block;
  object-fit: contain;
}
.zq-menu {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  direction: rtl;
}
html[lang="en"] .zq-menu { direction: ltr; }
.zq-menu a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #151515;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s ease;
}
.zq-menu a:hover { color: var(--zq-green); }
.zq-chev { color: var(--zq-green); font-size: 18px; transform: translateY(-1px); }
.zq-consult {
  flex: 0 0 auto;
  min-width: 170px;
  height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid var(--zq-green);
  border-radius: 999px;
  color: var(--zq-green);
  background: #fff;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.zq-consult:hover {
  transform: translateY(-2px);
  background: var(--zq-green);
  color: #fff;
  box-shadow: 0 18px 38px rgba(6,66,37,.2);
}
.zq-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(6,66,37,.16);
  border-radius: 14px;
  background: var(--zq-green-soft);
  cursor: pointer;
  padding: 0;
}
.zq-menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--zq-green);
}
.hero {
  padding-top: 72px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255,255,255,.12), transparent 25%),
    radial-gradient(circle at 13% 8%, rgba(38,178,112,.20), transparent 28%),
    linear-gradient(135deg, #032616 0%, #064225 55%, #02140C 100%) !important;
}
.btn-primary {
  background: linear-gradient(135deg, var(--zq-green), #0A6B41) !important;
  box-shadow: 0 16px 40px rgba(6,66,37,.25) !important;
}
.eyebrow, .kicker { color: #36D58B !important; }
.eyebrow span, .pulse-dot { background: #36D58B !important; box-shadow: 0 0 24px rgba(54,213,139,.85) !important; }
.hero-logo-card {
  background: var(--zq-green-soft) !important;
  border-color: rgba(255,255,255,.32) !important;
  padding: 14px;
}
.hero-logo-card img { object-fit: contain !important; }

@media (max-width: 1180px) {
  .zq-nav-inner { gap: 18px; }
  .zq-menu { gap: 16px; }
  .zq-menu a { font-size: 15px; }
  .zq-consult { min-width: 145px; padding: 0 18px; }
}
@media (max-width: 980px) {
  .zq-utility { min-height: auto; padding: 10px 0; }
  .zq-utility-inner { align-items: flex-start; flex-direction: column; gap: 8px; }
  .zq-utility-left, .zq-utility-right { width: 100%; justify-content: space-between; gap: 10px; }
  .zq-utility a { font-size: 13px; }
  .zq-divider { display: none; }
  .zq-nav-inner { min-height: 82px; }
  .zq-logo { font-size: 25px; }
  .zq-logo img { width: 52px; height: 52px; }
  .zq-menu-toggle { display: block; margin-left: auto; }
  .zq-menu,
  .zq-consult {
    position: absolute;
    left: 18px;
    right: 18px;
    display: none;
    z-index: 1002;
  }
  .zq-menu {
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(6,66,37,.12);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(6,66,37,.18);
  }
  .zq-menu a {
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(6,66,37,.04);
  }
  .zq-main-nav.is-open .zq-menu { display: flex; }
  .zq-main-nav.is-open .zq-consult {
    display: flex;
    top: calc(100% + 365px);
    width: auto;
    background: #fff;
  }
}
@media (max-width: 560px) {
  .zq-header-inner { padding-left: 16px; padding-right: 16px; }
  .zq-utility-left, .zq-utility-right { flex-wrap: wrap; justify-content: center; }
  .zq-utility a { font-size: 12px; }
  .zq-logo span { font-size: 23px; }
  .zq-logo img { width: 46px; height: 46px; }
  .zq-nav-inner { min-height: 74px; }
  .zq-main-nav.is-open .zq-consult { top: calc(100% + 355px); }
}


/* AI showcase and updated business footer details */
.ai-section {
  padding-top: 40px;
}
.ai-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius-xl);
  color: #fff;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  background:
    radial-gradient(circle at 16% 12%, rgba(54,213,139,.26), transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(255,255,255,.12), transparent 25%),
    linear-gradient(135deg, #032616, #064225 58%, #02140C);
  overflow: hidden;
  position: relative;
}
.ai-shell::before {
  content: 'AI';
  position: absolute;
  inset-inline-end: 24px;
  top: -44px;
  font-size: clamp(120px, 17vw, 230px);
  font-weight: 900;
  letter-spacing: -.12em;
  color: rgba(255,255,255,.055);
  pointer-events: none;
}
.ai-copy { position: relative; z-index: 1; }
.ai-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.06em;
  margin: 16px 0;
}
.ai-copy p {
  color: rgba(255,255,255,.74);
  line-height: 1.8;
  font-size: 17px;
}
.ai-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ai-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.ai-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(54,213,139,.18);
  color: #7dffbb;
  font-weight: 900;
  margin-bottom: 14px;
}
.ai-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: -.03em;
}
.ai-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  font-size: 14px;
}
.footer-contact-card {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  max-width: 480px;
}
.footer-contact-card > div {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.footer-contact-card strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-contact-card a,
.footer-contact-card p {
  color: rgba(255,255,255,.74) !important;
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}
.footer-contact-card.compact {
  margin-top: 14px;
  max-width: 620px;
}
.static-footer-contact { max-width: 720px; }
.footer-bottom-rich {
  align-items: flex-start;
}
@media (max-width: 1180px) {
  .zq-menu { gap: 12px; }
  .zq-menu a { font-size: 14px; }
  .zq-consult { min-width: 132px; height: 52px; padding-inline: 16px; font-size: 15px; }
}
@media (max-width: 980px) {
  .ai-shell { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .ai-grid { grid-template-columns: 1fr; }
}

.powered-by { color: rgba(255,255,255,.86); font-weight: 900; }
