/* Dapar About page — same light product language, existing content and order unchanged. */
.dl-page {
  --dl-navy: var(--dap-navy, #12324f);
  --dl-blue: var(--dap-blue, #1769e0);
  --dl-blue-dark: var(--dap-blue-dark, #0f58c4);
  --dl-blue-soft: var(--dap-blue-soft, #edf4ff);
  --dl-lime: var(--dap-lime, #c5ee45);
  --dl-ink: var(--dap-ink, #14263a);
  --dl-muted: var(--dap-muted, #68788b);
  --dl-line: var(--dap-line, #dce5ee);
  --dl-canvas: var(--dap-canvas, #f3f7fb);
  --dl-surface: #fff;
  --dl-success: var(--dap-success, #278650);
  --dl-danger: var(--dap-danger, #c63f49);
  padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  background: var(--dl-canvas);
  color: var(--dl-ink);
  direction: rtl;
  font-family: "Heebo", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.dl-page * { box-sizing: border-box; }

.dl-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  padding: 54px 20px 60px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(23, 105, 224, 0.11), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(197, 238, 69, 0.12), transparent 28%),
    var(--dl-canvas);
}

.dl-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 50, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 50, 79, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: radial-gradient(ellipse 65% 60% at 50% 45%, #000 18%, transparent 78%);
  pointer-events: none;
}

.dl-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1040px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.dl-hero-copy {
  display: flex;
  width: 100%;
  max-width: 640px;
  flex-direction: column;
  align-items: center;
}

.dl-hero h1 {
  max-width: 18ch;
  margin: 0 0 14px;
  color: var(--dl-navy);
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.dl-hero-lead {
  max-width: 42ch;
  margin: 0 0 26px;
  color: var(--dl-muted);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
  line-height: 1.65;
}

.dl-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dl-btn {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.dl-btn:hover { transform: translateY(-1px); }
.dl-btn:focus-visible { outline: 3px solid var(--dl-blue); outline-offset: 2px; }

.dl-btn-primary {
  background: var(--dl-lime);
  box-shadow: 0 9px 22px rgba(18, 50, 79, 0.15);
  color: var(--dl-navy);
}

.dl-btn-primary:hover { filter: brightness(0.97); color: var(--dl-navy); }

.dl-btn-ghost {
  border-color: #c8d5e1;
  background: #fff;
  color: var(--dl-navy);
}

.dl-btn-ghost:hover { border-color: var(--dl-blue); background: var(--dl-blue-soft); color: var(--dl-blue-dark); }
.dl-fine { margin-top: 14px; color: var(--dl-muted); font-size: 13px; }

/* Hero banner (same asset as dapar_header email) — top of hero */
.dl-stage {
  display: flex;
  width: 100%;
  max-width: 720px;
  align-items: center;
  justify-content: center;
}

.dl-hero-banner {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--dl-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18, 50, 79, 0.14);
}

/* Content sections */
.dl-section { padding: 68px 20px; }
.dl-section.alt { border-block: 1px solid var(--dl-line); background: #fff; }
.dl-inner { width: min(1040px, 100%); margin: 0 auto; }

.dl-section h2 {
  margin: 0 0 10px;
  color: var(--dl-navy);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 900;
  line-height: 1.25;
}

.dl-section .lead { max-width: 54ch; margin: 0 0 30px; color: var(--dl-muted); font-size: 16px; line-height: 1.7; }

.dl-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dl-features-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dl-audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dl-aud {
  padding: 22px 18px;
  border: 1px solid var(--dl-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(18, 50, 79, 0.07);
}

.dl-aud h3 {
  margin: 0 0 12px;
  color: var(--dl-navy);
  font-size: 17px;
  font-weight: 850;
}

.dl-aud ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dl-aud li {
  position: relative;
  margin: 0;
  padding-block: 8px;
  padding-inline-start: 22px;
  padding-inline-end: 0;
  border-bottom: 1px solid var(--dl-line);
  color: var(--dl-muted);
  font-size: 14px;
  line-height: 1.6;
}

.dl-aud li:last-child { border-bottom: 0; }

.dl-aud li::before {
  position: absolute;
  top: 14px;
  inset-inline-start: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dl-blue);
  content: "";
  pointer-events: none;
}

.dl-feat,
.dl-demo,
.dl-table-wrap {
  border: 1px solid var(--dl-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(18, 50, 79, 0.07);
}

.dl-feat { padding: 22px 18px; }
.dl-feat .ico { width: 44px; height: 44px; margin-bottom: 12px; }
.dl-feat h3 { margin: 0 0 8px; color: var(--dl-navy); font-size: 17px; font-weight: 850; }
.dl-feat p { margin: 0; color: var(--dl-muted); font-size: 14px; line-height: 1.65; }

/* Interactive demo */
.dl-demos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.dl-demos-single { max-width: 640px; margin: 0 auto; grid-template-columns: 1fr; }
.dl-demo { padding: 20px; }
.dl-demo h3 { margin: 0 0 6px; color: var(--dl-navy); font-size: 18px; font-weight: 850; }
.dl-demo .hint { margin: 0 0 14px; color: var(--dl-muted); font-size: 13px; }
.dl-q { margin-bottom: 14px; color: var(--dl-ink); font-size: 16px; font-weight: 750; line-height: 1.55; }
.dl-opts { display: grid; gap: 8px; }

.dl-opt {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 2px solid var(--dl-line);
  border-radius: 13px;
  background: #fff;
  color: var(--dl-navy);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  text-align: right;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.dl-opt:hover:not(:disabled) { border-color: var(--dl-blue); background: var(--dl-blue-soft); }
.dl-opt.sel { border-color: var(--dl-blue); background: var(--dl-blue-soft); }
.dl-opt.correct { border-color: var(--dl-success); background: #eaf7ef; color: var(--dl-success); }
.dl-opt.wrong { border-color: var(--dl-danger); background: #fff0f1; color: var(--dl-danger); }
.dl-opt:disabled { cursor: default; }

.dl-fb { min-height: 1.4em; margin-top: 12px; font-size: 14px; line-height: 1.6; }
.dl-fb.ok { color: var(--dl-success); font-weight: 750; }
.dl-fb.bad { color: var(--dl-danger); font-weight: 750; }

.dl-passage {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--dl-line);
  border-radius: 12px;
  background: #f8fafc;
  color: var(--dl-ink);
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.dl-fb .dl-fb-status { margin-bottom: 8px; font-weight: 850; }
.dl-fb .dl-exp,
.dl-fb .dl-why,
.dl-fb .dl-why-choice,
.dl-fb .dl-steps,
.dl-fb .dl-faster,
.dl-fb .dl-elim,
.dl-fb .dl-sanity,
.dl-fb .dl-rule { margin-top: 8px; color: var(--dl-ink); font-weight: 500; }
.dl-fb.ok .dl-fb-status { color: var(--dl-success); }
.dl-fb.bad .dl-fb-status { color: var(--dl-danger); }
.dl-demo-actions { display: flex; margin-top: 12px; flex-wrap: wrap; gap: 10px; }
.dl-btn-sm { min-height: 40px; padding: 0 14px; font-size: 14px; }

/* Comparison */
.dl-compare-toolbar { display: flex; margin: 0 0 14px; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.dl-compare-label { color: var(--dl-navy); font-size: 15px; font-weight: 850; }

.dl-compare-select {
  min-height: 46px;
  max-width: 100%;
  padding: 8px 12px;
  flex: 1 1 220px;
  border: 1px solid #c8d5e1;
  border-radius: 12px;
  background: #fff;
  color: var(--dl-navy);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
}

.dl-compare-select:focus { border-color: var(--dl-blue); outline: 3px solid rgba(23, 105, 224, 0.14); }
.dl-table-wrap { overflow-x: auto; }
.dl-table-wrap-compare { overflow-x: visible; }
.dl-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14px; }
.dl-table-compare { min-width: 0; table-layout: fixed; }
.dl-table th, .dl-table td { padding: 12px 14px; border-bottom: 1px solid var(--dl-line); text-align: center; vertical-align: middle; }
.dl-table th:first-child, .dl-table td:first-child { color: var(--dl-navy); font-weight: 750; text-align: right; white-space: nowrap; }
.dl-table-compare th:first-child, .dl-table-compare td:first-child { width: 28%; white-space: normal; }
.dl-table-compare th:nth-child(2), .dl-table-compare td:nth-child(2), .dl-table-compare .dl-comp-col:not([hidden]), .dl-table-compare .dl-comp-placeholder:not([hidden]) { width: 36%; }
.dl-table-compare .dl-comp-placeholder[hidden], .dl-table-compare .dl-comp-col[hidden] { display: none !important; }
.dl-table thead th { background: var(--dl-navy); color: #fff; font-size: 13px; font-weight: 850; }
.dl-table thead th.hl { background: var(--dl-blue-dark); }
.dl-table tbody tr:last-child td { border-bottom: 0; }
.dl-table td.hl { background: var(--dl-blue-soft); color: var(--dl-navy); font-weight: 850; }
.dl-table-compare td.dl-taken-at { direction: ltr; font-variant-numeric: tabular-nums; text-align: left; unicode-bidi: isolate; }
.dl-compare-neg { color: #c62828; font-weight: 800; }
.dl-note { margin-top: 14px; color: var(--dl-muted); font-size: 13px; line-height: 1.65; }

.dl-honest { max-width: 720px; }
.dl-honest ul { margin: 0; padding: 0; list-style: none; }
.dl-honest li { position: relative; padding: 10px 0; padding-inline-start: 28px; border-bottom: 1px solid var(--dl-line); color: var(--dl-muted); font-size: 15px; line-height: 1.6; }
.dl-honest li::before { position: absolute; top: 16px; inset-inline-start: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--dl-blue); box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--dl-blue); content: ""; }

.dl-callout {
  padding: 24px 22px;
  border-radius: 21px;
  background: var(--dl-navy);
  box-shadow: 0 14px 34px rgba(18, 50, 79, 0.16);
  color: #fff;
}

.dl-callout-under-demo { max-width: 640px; margin: 20px auto 0; text-align: center; }
.dl-callout h3 { margin: 0 0 10px; font-size: 20px; font-weight: 900; }
.dl-callout p { margin: 0 0 18px; font-size: 14px; line-height: 1.65; opacity: 0.9; }
.dl-callout .dl-btn-primary { background: var(--dl-lime); color: var(--dl-navy); }

.dl-final {
  padding: 76px 20px 92px;
  border-top: 1px solid var(--dl-line);
  background: var(--dl-blue-soft);
  text-align: center;
}

.dl-final h2 { margin: 0 0 12px; color: var(--dl-navy); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; }
.dl-final p { max-width: 42ch; margin: 0 auto 24px; color: var(--dl-muted); font-size: 16px; line-height: 1.65; }
.dl-final .dl-cta-row { justify-content: center; }

@media (max-width: 900px) {
  .dl-hero { min-height: auto; padding: 28px 16px 44px; }
  .dl-demos, .dl-features, .dl-features-6, .dl-audience { grid-template-columns: 1fr; }
  .dl-hero-inner { gap: 20px; }
  .dl-hero h1 { max-width: none; }
  .dl-hero-lead { max-width: none; }
  .dl-section { padding: 54px 16px; }
}

@media (max-width: 640px) {
  .dl-cta-row { align-items: stretch; flex-direction: column; }
  .dl-btn { width: 100%; }
  .dl-demo-actions .dl-btn { width: auto; flex: 1 1 140px; }
  .dl-table-compare th, .dl-table-compare td { padding: 10px 8px; font-size: 13px; }
  .dl-table-compare th:first-child, .dl-table-compare td:first-child { width: 32%; }
}

@media (prefers-reduced-motion: reduce) {
  .dl-btn { transition: none; }
}

/* 2026 visual uplift: stronger hierarchy, depth and a more product-led hero. */
.dl-hero {
  min-height: 590px;
  padding: 76px 24px 82px;
  background: radial-gradient(circle at 10% 15%, rgba(23,105,224,.16), transparent 32%), radial-gradient(circle at 92% 82%, rgba(197,238,69,.2), transparent 30%), var(--dl-canvas);
}
.dl-hero-inner { width: min(880px,100%); flex-direction: column; gap: 0; text-align: center; }
.dl-hero-copy { max-width: 820px; align-items: center; flex: none; }
.dl-eyebrow { display: inline-flex; margin-bottom: 18px; padding: 8px 13px; align-items: center; gap: 8px; border: 1px solid rgba(23,105,224,.18); border-radius: 999px; background: rgba(255,255,255,.78); color: var(--dl-blue-dark); box-shadow: 0 8px 24px rgba(18,50,79,.06); font-size: 14px; font-weight: 800; backdrop-filter: blur(8px); }
.dl-eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--dl-lime); box-shadow: 0 0 0 4px rgba(197,238,69,.24); }
.dl-hero h1 { max-width: none; margin-bottom: 22px; font-size: clamp(2.55rem,4.6vw,4rem); line-height: 1.08; letter-spacing: -.045em; white-space: nowrap; }
.dl-hero-lead { max-width: 58ch; margin-bottom: 28px; font-size: clamp(1.05rem,1.8vw,1.25rem); }
.dl-cta-row { margin-top: 30px; justify-content: center; }
.dl-btn-primary span { font-size: 20px; transition: transform .15s ease; }
.dl-btn-primary:hover span { transform: translateX(-3px); }
.dl-stage { position: relative; max-width: 560px; flex: 1 1 52%; isolation: isolate; }
.dl-hero-banner { position: relative; z-index: 2; border-radius: 28px; box-shadow: 0 30px 70px rgba(18,50,79,.2); transform: rotate(-1.5deg); }
.dl-orbit { position: absolute; border: 1px solid rgba(23,105,224,.16); border-radius: 50%; pointer-events: none; }
.dl-orbit-one { width: 420px; height: 420px; inset: 50% auto auto 50%; transform: translate(-50%,-50%); }
.dl-orbit-two { width: 520px; height: 520px; inset: 50% auto auto 50%; border-style: dashed; transform: translate(-50%,-50%); }
.dl-float-card { position: absolute; z-index: 3; display: flex; padding: 12px 15px; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.75); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: 0 16px 35px rgba(18,50,79,.16); color: var(--dl-navy); backdrop-filter: blur(10px); }
.dl-float-card-top { top: -38px; inset-inline-start: -24px; inset-inline-end: auto; }
.dl-float-card-bottom { bottom: -28px; inset-inline-start: -22px; }
.dl-float-card b,.dl-float-card small { display: block; white-space: nowrap; }
.dl-float-card b { font-size: 14px; }.dl-float-card small { margin-top: 2px; color: var(--dl-muted); font-size: 11px; }
.dl-float-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: var(--dl-lime); font-weight: 900; }
.dl-mini-bars { display: flex; width: 34px; height: 34px; padding: 7px; align-items: flex-end; gap: 3px; border-radius: 11px; background: var(--dl-blue-soft); }
.dl-mini-bars i { width: 5px; border-radius: 3px 3px 1px 1px; background: var(--dl-blue); }.dl-mini-bars i:nth-child(1){height:9px}.dl-mini-bars i:nth-child(2){height:14px}.dl-mini-bars i:nth-child(3){height:20px}
.dl-proof { display: flex; margin-top: 0; flex-wrap: wrap; justify-content: center; color: var(--dl-muted); font-size: 13px; }
.dl-proof span { min-width: 150px; padding: 4px 24px; border-inline-start: 1px solid var(--dl-line); }.dl-proof span:first-child { border-inline-start: 0; }.dl-proof b { display: block; margin-bottom: 2px; color: var(--dl-navy); font-size: 17px; font-weight: 900; }
.dl-hero-note { margin: 13px 0 0; color: var(--dl-muted); font-size: 12px; }
.dl-section { padding-block: 86px; }.dl-inner { width: min(1120px,100%); }
.dl-feat { position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.dl-feat::after { position: absolute; width: 80px; height: 80px; inset-block-start: -42px; inset-inline-end: -42px; border-radius: 50%; background: var(--dl-blue-soft); content: ""; transition: transform .25s ease; }
.dl-feat:hover { border-color: #c6d8e9; box-shadow: 0 16px 38px rgba(18,50,79,.11); transform: translateY(-4px); }.dl-feat:hover::after { transform: scale(1.35); }
.dl-callout { background: linear-gradient(135deg,var(--dl-navy),#164f7e); }
.dl-final { background: radial-gradient(circle at 20% 50%,rgba(197,238,69,.2),transparent 28%), radial-gradient(circle at 85% 20%,rgba(23,105,224,.14),transparent 30%), var(--dl-blue-soft); }

@media (max-width: 900px) {
  .dl-hero-inner { flex-direction: column; gap: 0; text-align: center; }
  .dl-hero-copy { max-width: 680px; align-items: center; }
  .dl-hero h1 { max-width: none; }.dl-cta-row,.dl-proof { justify-content: center; }
}
@media (max-width: 640px) {
  .dl-hero { min-height: auto; padding: 46px 20px 58px; }.dl-hero h1 { font-size: clamp(1.82rem,8.1vw,2.25rem); letter-spacing: -.035em; }
  .dl-hero-banner { border-radius: 20px; transform: none; }.dl-float-card { padding: 9px 11px; }
  .dl-float-card-top { top: -42px; inset-inline-start: -10px; inset-inline-end: auto; }.dl-float-card-bottom { bottom: -24px; inset-inline-start: -10px; }
  .dl-orbit-two { display: none; }.dl-proof { width: 100%; gap: 8px; }.dl-proof span { min-width: 0; padding: 8px 5px; flex: 1; border: 0; border-radius: 12px; background: rgba(255,255,255,.72); }
  .dl-hero .dl-cta-row { width: 100%; margin-top: 24px; }.dl-hero-note { line-height: 1.5; }
}
