:root {
  --eq-navy: #0f172a;
  --eq-navy-deep: #020617;
  --eq-emerald: #10b981;
  --eq-emerald-dark: #059669;
  --eq-emerald-soft: rgba(16, 185, 129, 0.12);
  --eq-slate: #64748b;
  --eq-slate-dark: #334155;
  --eq-mist: #f1f5f9;
  --eq-white: #ffffff;
  --eq-line: rgba(15, 23, 42, 0.08);
  --eq-radius: 14px;
  --eq-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --eq-font: "Sora", system-ui, sans-serif;
  --eq-font-ar: "IBM Plex Sans Arabic", "Sora", system-ui, sans-serif;
  --eq-max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--eq-font);
  color: var(--eq-navy);
  background: var(--eq-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

body.lang-ar {
  font-family: var(--eq-font-ar);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.eq-container {
  width: 100%;
  max-width: var(--eq-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
}

/* Prevent grid/flex children from forcing page wider than viewport (common with Arabic text) */
.eq-hero__grid,
.eq-problem-grid,
.eq-steps,
.eq-modes,
.eq-pillars,
.eq-trust-grid,
.eq-audience,
.eq-pricing,
.eq-footer__grid,
.eq-header__inner {
  min-width: 0;
  max-width: 100%;
}

.eq-hero__grid > *,
.eq-problem-grid > *,
.eq-steps > *,
.eq-modes > *,
.eq-pillars > *,
.eq-trust-grid > *,
.eq-audience > *,
.eq-pricing > *,
.eq-footer__grid > * {
  min-width: 0;
}

.eq-skip {
  position: absolute;
  inset-inline-start: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.eq-skip:focus {
  inset-inline-start: 1rem;
  top: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  overflow: visible;
  background: var(--eq-white);
  padding: 0.5rem 1rem;
}

/* Header */
.eq-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--eq-line);
  max-width: 100%;
  overflow-x: clip;
}

.eq-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  max-width: 100%;
}

.eq-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.55rem;
  flex-shrink: 0;
}

.eq-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.eq-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.1rem;
  min-width: 0;
  max-width: 100%;
}

body.lang-ar .eq-nav {
  gap: 0.65rem 0.85rem;
}

.eq-nav a {
  font-size: 1.02rem;
  color: var(--eq-slate-dark);
  font-weight: 600;
}

body.lang-ar .eq-nav a {
  font-size: 0.95rem;
  white-space: nowrap;
}

.eq-nav a:hover,
.eq-nav a.is-active {
  color: var(--eq-navy);
}

.eq-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eq-lang {
  display: inline-flex;
  border: 1px solid var(--eq-line);
  border-radius: 999px;
  overflow: hidden;
}

.eq-lang a {
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--eq-slate);
}

.eq-lang a.is-active {
  background: var(--eq-navy);
  color: var(--eq-white);
}

.eq-menu-toggle {
  display: none;
  border: 1px solid var(--eq-line);
  background: var(--eq-white);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

/* Buttons */
.eq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.eq-btn:hover {
  transform: translateY(-1px);
}

.eq-btn--primary {
  background: var(--eq-emerald);
  color: var(--eq-navy-deep);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.28);
}

.eq-btn--primary:hover {
  background: var(--eq-emerald-dark);
  color: var(--eq-white);
}

.eq-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--eq-white);
}

.eq-btn--ghost-dark {
  background: transparent;
  border-color: var(--eq-line);
  color: var(--eq-navy);
}

.eq-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero */
.eq-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(16, 185, 129, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(15, 23, 42, 0.55), transparent 50%),
    linear-gradient(145deg, #020617 0%, #0f172a 48%, #134e4a 140%);
  color: var(--eq-white);
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.eq-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eq-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eq-emerald);
  margin-bottom: 1rem;
}

.eq-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eq-emerald);
  margin: 0 0 0.75rem;
}

.eq-hero__brand {
  margin: 0 0 0.55rem;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--eq-white);
}

.eq-hero h1 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  font-weight: 600;
  max-width: 28ch;
  color: rgba(248, 250, 252, 0.92);
}

body.lang-ar .eq-hero h1 {
  max-width: 32ch;
}

.eq-hero__lead {
  font-size: 1.05rem;
  color: rgba(248, 250, 252, 0.82);
  max-width: 38rem;
  margin: 0 0 1.75rem;
}

.eq-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.eq-hero__trust {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.7);
}

.eq-hero__visual {
  position: relative;
}

.eq-device {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--eq-shadow);
  backdrop-filter: blur(8px);
  animation: eqRise 0.9s ease both;
}

.eq-device__bar {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.eq-device__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.eq-device__screen {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(2, 6, 23, 0.95));
  border-radius: 12px;
  padding: 1.15rem;
  min-height: 280px;
}

.eq-device__brand {
  font-weight: 700;
  color: var(--eq-emerald);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.eq-flow-mini {
  display: grid;
  gap: 0.55rem;
}

.eq-flow-mini__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  animation: eqFadeIn 0.7s ease both;
}

.eq-flow-mini__row:nth-child(2) { animation-delay: 0.1s; }
.eq-flow-mini__row:nth-child(3) { animation-delay: 0.2s; }
.eq-flow-mini__row:nth-child(4) { animation-delay: 0.3s; }
.eq-flow-mini__row:nth-child(5) { animation-delay: 0.4s; }
.eq-flow-mini__row:nth-child(6) { animation-delay: 0.5s; }

.eq-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--eq-emerald-soft);
  color: var(--eq-emerald);
  font-size: 0.72rem;
  font-weight: 600;
}

/* Sections */
.eq-section {
  padding: 5rem 0;
}

.eq-confidence {
  margin: 0.85rem 0 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--eq-emerald);
  max-width: 36rem;
}

.eq-section--navy .eq-confidence {
  color: #6ee7b7;
}

.eq-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.eq-checklist li {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--eq-line);
  background: var(--eq-white);
  font-weight: 600;
  color: var(--eq-navy);
  font-size: 0.95rem;
  line-height: 1.4;
}

.eq-checklist li::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-inline-end: 0.55rem;
  border-radius: 50%;
  background: var(--eq-emerald);
  vertical-align: middle;
}

@media (max-width: 900px) {
  .eq-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .eq-checklist {
    grid-template-columns: minmax(0, 1fr);
  }
}


.eq-section--navy {
  background: var(--eq-navy);
  color: var(--eq-white);
}

.eq-section__head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.eq-section__head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.eq-section__head p {
  margin: 0;
  color: var(--eq-slate-dark);
  font-size: 1.02rem;
}

.eq-section--navy .eq-section__head p {
  color: rgba(248, 250, 252, 0.88);
}

/* Problem grid */
.eq-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.eq-problem-item {
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--eq-emerald);
}

.eq-problem-item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.eq-problem-item p {
  margin: 0;
  color: var(--eq-slate-dark);
  font-size: 0.95rem;
}

/* Flow steps */
.eq-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.eq-step {
  padding: 1.1rem;
  border-radius: var(--eq-radius);
  background: var(--eq-white);
  border: 1px solid var(--eq-line);
  min-height: 140px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.eq-step:hover {
  border-color: rgba(16, 185, 129, 0.45);
  transform: translateY(-3px);
}

.eq-step__num {
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--eq-navy);
  color: var(--eq-white);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.eq-step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.eq-step p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--eq-slate-dark);
}

/* Modes */
.eq-modes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.eq-mode {
  padding: 1.6rem;
  border-radius: 18px;
  background: var(--eq-white);
  border: 1px solid var(--eq-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.eq-mode__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--eq-emerald-dark);
  background: var(--eq-emerald-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.eq-mode h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
}

.eq-mode p {
  margin: 0;
  color: var(--eq-slate-dark);
}

.eq-guide {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-inline-start: 3px solid var(--eq-emerald);
  background: var(--eq-emerald-soft);
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  color: var(--eq-slate-dark);
}

body.lang-ar .eq-guide {
  border-radius: 12px 0 0 12px;
}

/* Pillars */
.eq-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.eq-pillar h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--eq-navy);
}

.eq-pillar p {
  margin: 0;
  color: var(--eq-slate-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.eq-pillar {
  padding-top: 1rem;
  border-top: 1px solid var(--eq-line);
}

.eq-section--navy .eq-pillar {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.eq-section--navy .eq-pillar h3 {
  color: var(--eq-white);
}

.eq-section--navy .eq-pillar p {
  color: rgba(248, 250, 252, 0.9);
}

/* Trust / audience */
.eq-trust-grid,
.eq-audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.eq-audience {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.eq-trust-card,
.eq-audience-item {
  padding: 1.35rem;
  border-radius: var(--eq-radius);
  background: var(--eq-white);
  border: 1px solid var(--eq-line);
}

.eq-trust-card h3,
.eq-audience-item {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.eq-trust-card p {
  margin: 0;
  color: var(--eq-slate-dark);
  font-size: 0.92rem;
}

.eq-audience-item {
  font-weight: 600;
  text-align: center;
  padding: 1.5rem 1rem;
}

/* CTA band */
.eq-cta {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.2), transparent 50%),
    var(--eq-navy-deep);
  color: var(--eq-white);
  text-align: center;
}

.eq-cta h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.eq-cta p {
  margin: 0 auto 1.4rem;
  max-width: 34rem;
  color: rgba(226, 232, 240, 0.75);
}

/* Page hero (inner) */
.eq-page-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(16, 185, 129, 0.12), transparent 50%),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.eq-page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
}

.eq-page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--eq-slate);
  font-size: 1.05rem;
}

/* Content blocks */
.eq-content-block {
  max-width: 44rem;
}

.eq-content-block p {
  color: var(--eq-slate-dark);
}

.eq-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--eq-slate-dark);
}

/* Pricing */
.eq-pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

.eq-price-card {
  position: relative;
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--eq-line);
  background: var(--eq-white);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 240px;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.eq-price-card .eq-btn {
  width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  margin-top: auto;
}

.eq-price-card--featured {
  border-color: var(--eq-emerald);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
}

.eq-price-card--muted {
  opacity: 0.92;
  background: #f8fafc;
}

.eq-price-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.eq-price-card p {
  margin: 0;
  color: var(--eq-slate);
  font-size: 0.9rem;
}

.eq-price-card__amount {
  margin: 0;
  color: var(--eq-ink) !important;
  font-size: 1.65rem !important;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eq-price-card__num {
  font-variant-numeric: tabular-nums;
}

.eq-price-card__period {
  margin: 0;
  color: var(--eq-slate);
  font-size: 0.82rem !important;
  font-weight: 500;
}

.eq-price-card__meta {
  margin: 0;
  color: var(--eq-slate);
  font-size: 0.82rem !important;
}

.eq-price-card__badge {
  align-self: flex-start;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: var(--eq-emerald);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eq-price-card__badge--soon {
  background: #64748b;
}

.eq-pricing--addons,
.eq-pricing--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eq-pricing--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 44rem;
}

/* Forms */
.eq-form {
  max-width: 34rem;
  display: grid;
  gap: 1rem;
}

.eq-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.eq-form input,
.eq-form select,
.eq-form textarea {
  font: inherit;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--eq-line);
  background: var(--eq-white);
  color: var(--eq-navy);
}

.eq-form textarea {
  min-height: 120px;
  resize: vertical;
}

.eq-alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.eq-alert--ok {
  background: var(--eq-emerald-soft);
  color: var(--eq-emerald-dark);
}

.eq-alert--err {
  background: #fef2f2;
  color: #b91c1c;
}

/* Founder */
.eq-founder {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.eq-founder__photo img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 18px;
  border: 1px solid var(--eq-line);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.eq-photo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  aspect-ratio: 1;
  max-width: 280px;
  width: 100%;
  padding: 1.25rem;
  border-radius: 18px;
  border: 2px dashed rgba(16, 185, 129, 0.55);
  background: var(--eq-emerald-soft);
  color: var(--eq-slate-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.eq-photo-slot small {
  font-weight: 500;
  color: var(--eq-slate);
  font-family: ui-monospace, monospace;
}

.eq-photo-slot--qr {
  max-width: 180px;
  aspect-ratio: 1;
  margin-top: 0.75rem;
}

.eq-founder__label {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eq-emerald-dark);
}

.eq-founder__content h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
}

.eq-founder__role {
  margin: 0 0 1rem;
  color: var(--eq-slate);
  font-weight: 600;
}

.eq-founder__badges {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.eq-founder__badges li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--eq-mist);
  border: 1px solid var(--eq-line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--eq-slate-dark);
}

/* Contact layout */
.eq-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.eq-contact-aside h2,
.eq-contact-form-wrap h2 {
  margin: 0 0 1.1rem;
  font-size: 1.35rem;
}

.eq-contact-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--eq-line);
}

.eq-contact-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--eq-slate);
}

.eq-contact-card a {
  font-weight: 600;
  color: var(--eq-navy);
  word-break: break-word;
}

.eq-contact-card--wa {
  border-bottom: none;
  gap: 0.75rem;
}

.eq-wa-qr img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--eq-line);
  background: var(--eq-white);
  margin-top: 0.75rem;
  padding: 0.5rem;
}

.eq-elementor-area:empty {
  display: none;
}

.eq-elementor-area:not(:empty) {
  padding: 2rem 0 3rem;
}

.eq-elementor-area .eq-container,
.eq-elementor-area > .elementor {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
  max-width: 100%;
}

/* Comparison tables */
.eq-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eq-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--eq-line);
  border-radius: 16px;
  background: var(--eq-white);
}

.eq-table-wrap--scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.eq-table-hint {
  display: none;
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  color: var(--eq-slate);
  border-bottom: 1px solid var(--eq-line);
  background: #f8fafc;
}

.eq-compare {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  table-layout: fixed;
}

.eq-compare--matrix {
  table-layout: auto;
  min-width: 640px;
}

.eq-compare th,
.eq-compare td {
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid var(--eq-line);
  text-align: start;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.eq-compare thead th {
  background: var(--eq-navy);
  color: var(--eq-white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eq-compare tbody th {
  font-weight: 700;
  color: var(--eq-navy);
  background: #f8fafc;
  width: 22%;
}

.eq-compare--matrix tbody th {
  width: auto;
  max-width: 14rem;
  position: sticky;
  inset-inline-start: 0;
  z-index: 1;
  box-shadow: 1px 0 0 var(--eq-line);
}

.eq-compare--matrix td {
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}

.eq-compare td.is-yes { color: var(--eq-emerald-dark); }
.eq-compare td.is-limited { color: #b45309; }
.eq-compare td.is-addon { color: #0369a1; }
.eq-compare td.is-roadmap { color: #64748b; font-weight: 500; }
.eq-compare td.is-no { color: var(--eq-slate); }
.eq-compare td.is-win {
  background: rgba(16, 185, 129, 0.08);
  font-weight: 600;
  color: #065f46;
}

@media (max-width: 900px) {
  .eq-founder,
  .eq-contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Footer */
.eq-footer {
  background: var(--eq-navy-deep);
  color: rgba(226, 232, 240, 0.78);
  padding: 3.5rem 0 2rem;
}

.eq-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.eq-footer__brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--eq-white);
  margin-bottom: 0.6rem;
}

.eq-footer h4 {
  margin: 0 0 0.85rem;
  color: var(--eq-white);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eq-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.eq-footer a:hover {
  color: var(--eq-emerald);
}

.eq-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* Animations */
@keyframes eqRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes eqFadeIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.eq-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.eq-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.eq-faq {
  display: grid;
  gap: 0.75rem;
  max-width: 46rem;
  margin: 0 auto;
}

.eq-faq__item {
  border: 1px solid var(--eq-line);
  border-radius: 12px;
  background: var(--eq-white);
  padding: 0.85rem 1.1rem;
}

.eq-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--eq-navy);
  list-style: none;
}

.eq-faq__item summary::-webkit-details-marker {
  display: none;
}

.eq-faq__item summary::after {
  content: "+";
  float: inline-end;
  color: #10B981;
  font-weight: 800;
}

.eq-faq__item[open] summary::after {
  content: "–";
}

.eq-faq__item p {
  margin: 0.75rem 0 0.15rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.eq-trust-bar {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.eq-trust-bar li {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.eq-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.eq-stat {
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--eq-line);
}

.eq-stat strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--eq-navy);
}

.eq-stat span {
  font-size: 0.9rem;
  color: #64748b;
}

.eq-pillars--2,
.eq-pillars--caps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eq-pillars--caps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .eq-pillars--caps {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .eq-pillars--2,
  .eq-pillars--caps {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eq-decision-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.eq-decision-preview__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.04);
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
}

.eq-decision-preview__row.is-lead {
  background: rgba(16, 185, 129, 0.15);
  font-weight: 700;
}

.eq-pill--ok {
  background: rgba(16, 185, 129, 0.2);
  color: #065f46;
}

.eq-about-bridge {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #334155;
}

.eq-about-practice {
  max-width: 44rem;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.eq-about-practice p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}

.eq-about-couple {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--eq-navy);
  line-height: 1.45;
  max-width: 40rem;
}

.eq-is-isnt {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.eq-is-isnt__col {
  background: #fff;
  border: 1px solid var(--eq-line);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
}

.eq-is-isnt__col h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.eq-is-isnt__col ul {
  margin: 0;
  padding-inline-start: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: #334155;
}

.eq-is-isnt__col--is {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.06);
}

.eq-is-isnt__col--isnt {
  border-color: rgba(148, 163, 184, 0.5);
}

.eq-founder--narrative {
  margin-top: 0.5rem;
}

.eq-founder-quote {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  border-inline-start: 3px solid #10b981;
  background: #f8fafc;
  color: var(--eq-navy);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .eq-is-isnt {
    grid-template-columns: minmax(0, 1fr);
  }
}

.eq-hero-shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--eq-line);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.eq-hero-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.eq-demo-disclaimer {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
  max-width: 52rem;
}

.eq-demo-disclaimer--hero {
  margin-top: 0.65rem;
}

.eq-shot-gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.eq-shot-gallery--home,
.eq-shot-gallery--how,
.eq-shot-gallery--product {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eq-shot {
  margin: 0;
  background: #fff;
  border: 1px solid var(--eq-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.eq-shot img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.eq-shot figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--eq-navy);
  border-top: 1px solid var(--eq-line);
  background: #f8fafc;
}

.eq-hero-panel {
  background: #fff;
  border: 1px solid var(--eq-line);
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.eq-hero-panel__label {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.45;
}

.eq-hero-panel__steps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.eq-hero-panel__steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.eq-hero-panel__num {
  flex: 0 0 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eq-hero-panel__steps strong {
  display: block;
  font-size: 0.95rem;
  color: var(--eq-navy);
}

.eq-hero-panel__steps small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: #334155;
}

.eq-sticky-cta {
  display: none;
  position: fixed;
  inset-inline-end: 1rem;
  bottom: 1rem;
  z-index: 80;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: #10b981;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

.eq-roi {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.eq-roi__controls {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--eq-line);
  background: #fff;
}

.eq-roi__controls label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.eq-roi__controls input {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--eq-line);
}

.eq-roi__results {
  display: grid;
  gap: 1rem;
}

.eq-feature-ticks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.eq-feature-ticks li {
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid var(--eq-line);
  font-size: 0.95rem;
}

.eq-feature-ticks li::before {
  content: "✓ ";
  color: #10b981;
  font-weight: 800;
}

.eq-prose {
  max-width: 44rem;
}

.eq-prose h2 {
  margin-top: 1.75rem;
}

/* Arabic desktop: collapse nav earlier — wider labels overflow the header */
@media (max-width: 1180px) {
  body.lang-ar .eq-nav {
    display: none;
  }

  body.lang-ar .eq-menu-toggle {
    display: inline-flex;
  }

  body.lang-ar .eq-header.is-open .eq-nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    width: 100%;
    max-width: 100%;
    background: var(--eq-white);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--eq-line);
    align-items: flex-start;
    z-index: 60;
  }
}

/* Pricing: avoid 4 cramped columns that blow out with Arabic copy */
@media (max-width: 1100px) {
  .eq-pricing,
  .eq-pricing--addons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .eq-pricing,
  .eq-pricing--addons,
  .eq-pricing--services {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Mobile */
@media (max-width: 980px) {
  .eq-hero__grid,
  .eq-problem-grid,
  .eq-modes,
  .eq-pillars,
  .eq-trust-grid,
  .eq-audience,
  .eq-footer__grid,
  .eq-steps,
  .eq-stats,
  .eq-shot-gallery--home,
  .eq-shot-gallery--how,
  .eq-shot-gallery--product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eq-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .eq-nav {
    display: none;
  }

  .eq-header.is-open .eq-nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    width: 100%;
    max-width: 100%;
    background: var(--eq-white);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--eq-line);
    align-items: flex-start;
    z-index: 60;
  }

  .eq-menu-toggle {
    display: inline-flex;
  }

  .eq-hero h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .eq-hero__grid,
  .eq-problem-grid,
  .eq-modes,
  .eq-pillars,
  .eq-trust-grid,
  .eq-audience,
  .eq-pricing,
  .eq-footer__grid,
  .eq-steps,
  .eq-stats,
  .eq-shot-gallery--home,
  .eq-shot-gallery--how,
  .eq-shot-gallery--product {
    grid-template-columns: minmax(0, 1fr);
  }

  .eq-problem-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .eq-header__actions .eq-btn {
    display: none;
  }

  .eq-sticky-cta {
    display: inline-flex;
  }

  .eq-roi {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Excel vs EvalQ: stack rows as cards (no horizontal page overflow) */
  .eq-table-wrap--cards {
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .eq-compare--excel,
  .eq-compare--excel thead,
  .eq-compare--excel tbody,
  .eq-compare--excel th,
  .eq-compare--excel td,
  .eq-compare--excel tr {
    display: block;
    width: 100%;
  }

  .eq-compare--excel {
    table-layout: auto;
  }

  .eq-compare--excel thead {
    display: none;
  }

  .eq-compare--excel tbody tr {
    margin-bottom: 0.85rem;
    border: 1px solid var(--eq-line);
    border-radius: 14px;
    background: var(--eq-white);
    overflow: hidden;
  }

  .eq-compare--excel tbody th {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--eq-navy);
    color: var(--eq-white);
    border-bottom: 0;
  }

  .eq-compare--excel td {
    padding: 0.75rem 1rem 0.85rem;
    border-bottom: 1px solid var(--eq-line);
  }

  .eq-compare--excel td:last-child {
    border-bottom: 0;
  }

  .eq-compare--excel td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--eq-slate);
  }

  .eq-compare--excel td.is-win {
    background: rgba(16, 185, 129, 0.08);
  }

  /* Editions matrix: keep horizontal scroll inside wrap only */
  .eq-table-hint {
    display: block;
  }

  .eq-compare--matrix {
    min-width: 560px;
  }

  .eq-compare--matrix thead th {
    white-space: nowrap;
  }
}
