:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --surface: rgba(255, 255, 255, 0.92);
  --ink: #06142e;
  --text: #24304a;
  --muted: #66738a;
  --line: rgba(9, 32, 67, 0.13);
  --navy: #06142e;
  --navy-2: #0b2347;
  --blue: #0072ce;
  --blue-2: #005aa3;
  --blue-soft: #e8f3fc;
  --sky: #4aa3df;
  --shadow: 0 24px 70px rgba(10, 31, 68, 0.12);
  --soft-shadow: 0 14px 36px rgba(10, 31, 68, 0.09);
  --radius: 8px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Hebrew", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 248, 251, 0.8), rgba(255, 255, 255, 0) 28rem),
    var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font-family: var(--font);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(0, 114, 206, 0.35);
  outline-offset: 4px;
}

.page-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--blue);
}

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

.brand-copy {
  display: grid;
  gap: 1px;
  text-align: start;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.5rem;
  letter-spacing: 0;
}

.brand-copy strong span {
  color: var(--blue);
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.top-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 38px;
  color: var(--text);
  font-weight: 750;
}

.top-nav a,
.site-footer nav a {
  transition: color 0.18s ease;
}

.top-nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--blue);
}

.header-cta {
  justify-self: end;
  min-width: 138px;
  padding: 13px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(6, 20, 46, 0.18);
}

.hero-section {
  position: relative;
  min-height: min(760px, calc(100svh - 120px));
  overflow: hidden;
  padding: 50px 0 28px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 56%;
  background: linear-gradient(90deg, rgba(245, 248, 251, 0.92), rgba(255, 255, 255, 0.55), #fff 76%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  max-width: 560px;
  padding: 12px 0 24px;
}

.hero-copy h1,
.section-copy h2,
.demo-copy h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.35vw, 4.85rem);
}

.hero-copy p,
.section-copy > p,
.demo-copy > p {
  margin: 28px 0 0;
  color: var(--text);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.85;
}

.hero-actions,
.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #0784df, var(--blue-2));
  box-shadow: 0 18px 38px rgba(0, 114, 206, 0.24);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(6, 20, 46, 0.28);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: var(--navy);
  border-bottom: 2px solid currentColor;
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.screenshot-showcase::before {
  content: "";
  position: absolute;
  inset: 56px 34px 44px 26px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(0, 114, 206, 0.1), rgba(245, 248, 251, 0.92)),
    #f6f9fd;
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(10, 31, 68, 0.11);
  pointer-events: none;
}

.screenshot-card {
  overflow: hidden;
  background: #0b1220;
  border: 8px solid #0b1220;
  border-radius: 34px;
  box-shadow: 0 26px 50px rgba(6, 20, 46, 0.28);
}

.screenshot-card {
  position: absolute;
  background: #0b1220;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshot-card img {
  width: 100%;
  border-radius: 25px;
}

.main-screen {
  right: 72px;
  top: 28px;
  z-index: 4;
  width: 216px;
}

.report-screen {
  right: 292px;
  top: 118px;
  z-index: 3;
  width: 164px;
}

.payment-screen {
  left: 112px;
  top: 76px;
  z-index: 2;
  width: 146px;
}

.updates-screen {
  left: 50px;
  bottom: 72px;
  z-index: 3;
  width: 158px;
}

.canvas-top,
.dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.canvas-top strong,
.dashboard-toolbar strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.canvas-top span {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(760px, calc(100% - 48px));
  min-height: 58px;
  margin: 10px auto 0;
  color: var(--muted);
  font-weight: 850;
}

.hero-preview i {
  display: block;
  width: 54px;
  height: 1px;
  background: rgba(9, 32, 67, 0.2);
}

.workflow-section,
.bi-section,
.demo-section {
  padding: 96px 0;
}

.workflow-section {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  padding-top: 16px;
}

.workflow-grid,
.bi-grid,
.demo-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.section-copy h2,
.demo-copy h2 {
  font-size: clamp(2.25rem, 4.1vw, 4.35rem);
}

.proof-list {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.proof-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 18px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.proof-list .proof-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue);
  background: rgba(0, 114, 206, 0.09);
  border: 1px solid rgba(0, 114, 206, 0.18);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-list strong {
  color: var(--navy);
  font-size: 1.13rem;
}

.proof-list p {
  margin: 0;
  color: var(--muted);
}

.operations-canvas,
.bi-dashboard,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.operations-canvas {
  padding: 24px;
}

.stage-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.stage {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.stage span {
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid rgba(9, 32, 67, 0.2);
  border-radius: 50%;
}

.stage.done span,
.stage.active span {
  background: var(--blue);
  border-color: var(--blue);
}

.stage.active span {
  box-shadow: 0 0 0 7px rgba(0, 114, 206, 0.12);
}

.stage strong {
  color: var(--navy);
}

.stage small {
  font-size: 0.8rem;
}

.canvas-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  margin-top: 24px;
}

.location-rail {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
}

.location-rail strong {
  margin-bottom: 4px;
}

.location-rail span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.location-rail span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.location-rail .warn::after {
  background: var(--sky);
}

.work-detail {
  display: grid;
  gap: 12px;
}

.detail-row,
.budget-approval {
  display: grid;
  grid-template-columns: minmax(95px, auto) 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-row span,
.budget-approval span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.budget-approval {
  grid-column: 2;
  grid-template-columns: auto 1fr auto;
}

.budget-approval button {
  min-width: 82px;
  min-height: 38px;
  color: var(--blue);
  background: rgba(0, 114, 206, 0.09);
  border: 1px solid rgba(0, 114, 206, 0.26);
  border-radius: var(--radius);
  font-weight: 900;
}

.bi-section {
  background: #fff;
}

.bi-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.bi-dashboard {
  padding: 24px;
}

.dashboard-toolbar > div {
  display: flex;
  gap: 10px;
}

.dashboard-toolbar span {
  padding: 8px 10px;
  color: var(--muted);
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.kpi-row div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.kpi-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.kpi-row strong {
  color: var(--navy);
  font-size: 1.6rem;
}

.report-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 18px;
}

.report-bars,
.workload {
  min-height: 260px;
  padding: 20px;
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.report-bars {
  display: flex;
  align-items: end;
  gap: 22px;
  padding-top: 54px;
  position: relative;
}

.report-bars > strong,
.workload > strong {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--navy);
}

.bar-group {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 170px;
}

.bar-group span,
.bar-group i {
  width: 22px;
  height: var(--h);
  background: var(--navy);
  border-radius: 4px 4px 0 0;
}

.bar-group i {
  background: var(--blue);
}

.workload {
  position: relative;
  display: grid;
  align-content: end;
  gap: 20px;
}

.workload span {
  display: grid;
  gap: 8px;
}

.workload b {
  color: var(--text);
  font-size: 0.92rem;
}

.workload i {
  display: block;
  width: var(--w);
  height: 9px;
  background: var(--blue);
  border-radius: 999px;
}

.capability-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.capability-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list span {
  color: var(--blue);
  font-weight: 900;
}

.capability-list strong {
  color: var(--text);
  font-weight: 750;
}

.demo-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.demo-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(46vw, 620px);
  background:
    linear-gradient(90deg, rgba(232, 243, 252, 0.25), var(--bg-soft) 88%),
    linear-gradient(180deg, rgba(0, 114, 206, 0.08), rgba(6, 20, 46, 0.03));
  opacity: 1;
}

.demo-grid {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.88fr);
}

.demo-copy {
  max-width: 570px;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 850;
}

.contact-lines a {
  direction: ltr;
  unicode-bidi: embed;
}

.product-bridge {
  display: grid;
  grid-template-columns: 64px auto 54px auto 104px;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  color: var(--navy);
  font-weight: 900;
}

.mini-phone {
  width: 64px;
  height: 108px;
  overflow: hidden;
  background: #0b1220;
  border: 4px solid #0b1220;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.mini-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-bridge i {
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 114, 206, 0));
}

.mini-screen {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.mini-screen b {
  display: block;
  height: 10px;
  background: #dfe7f1;
  border-radius: 999px;
}

.mini-screen b:first-child {
  width: 76px;
  background: var(--navy);
}

.mini-screen b:nth-child(2) {
  width: 52px;
  background: var(--blue);
}

.mini-screen b:nth-child(3) {
  width: 64px;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--navy);
  font-weight: 850;
}

.form-row input {
  min-height: 50px;
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(9, 32, 67, 0.2);
  border-radius: var(--radius);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-row input:focus {
  border-color: rgba(0, 114, 206, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.1);
  outline: 0;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 22px 40px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: var(--muted);
  font-weight: 800;
}

.footer-brand {
  justify-self: start;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .hero-grid,
  .workflow-grid,
  .bi-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .screenshot-showcase::before {
    inset: 36px 0 34px;
  }

  .workflow-grid,
  .bi-grid,
  .demo-grid {
    gap: 44px;
  }

  .bi-dashboard {
    order: 2;
  }

  .bi-copy {
    order: 1;
  }

  .demo-section::before {
    width: 100%;
    height: 42%;
    opacity: 0.28;
  }
}

@media (max-width: 760px) {
  .page-grid {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    min-height: 66px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 1.22rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .header-cta {
    min-width: auto;
    padding: 11px 13px;
    font-size: 0.9rem;
  }

  .hero-section {
    min-height: auto;
    padding: 24px 0 0;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-copy {
    padding: 6px 0 8px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 9.2vw, 3.15rem);
  }

  .hero-copy p,
  .section-copy > p,
  .demo-copy > p {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions,
  .demo-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 280px;
  }

  .screenshot-card {
    border-width: 5px;
    border-radius: 24px;
  }

  .screenshot-card img {
    border-radius: 18px;
  }

  .screenshot-showcase::before {
    inset: 18px 0 14px;
  }

  .main-screen {
    right: 18px;
    top: 22px;
    width: 108px;
  }

  .report-screen {
    right: 112px;
    top: 74px;
    width: 90px;
  }

  .payment-screen {
    left: 18px;
    top: 44px;
    width: 84px;
  }

  .updates-screen {
    left: 92px;
    bottom: 22px;
    width: 88px;
  }

  .hero-preview {
    display: none;
  }

  .workflow-section,
  .bi-section,
  .demo-section {
    padding: 70px 0;
  }

  .section-copy h2,
  .demo-copy h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .proof-list div {
    grid-template-columns: 42px 1fr;
    gap: 4px 14px;
  }

  .proof-list .proof-icon {
    width: 38px;
    height: 38px;
  }

  .operations-canvas,
  .bi-dashboard,
  .lead-form {
    padding: 18px;
  }

  .stage-line,
  .canvas-body,
  .kpi-row,
  .report-grid,
  .capability-list li,
  .budget-approval {
    grid-template-columns: 1fr;
  }

  .stage-line {
    gap: 18px;
  }

  .canvas-body {
    gap: 14px;
  }

  .budget-approval {
    grid-column: auto;
  }

  .dashboard-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .dashboard-toolbar > div {
    flex-wrap: wrap;
  }

  .report-bars,
  .workload {
    min-height: 220px;
  }

  .contact-lines {
    font-size: 1.1rem;
  }

  .product-bridge {
    grid-template-columns: 58px 1fr;
  }

  .product-bridge i,
  .product-bridge span:nth-of-type(2),
  .mini-screen {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .site-footer nav {
    gap: 16px 22px;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 280px;
  }

  .main-screen {
    width: 108px;
  }

  .report-screen {
    right: 112px;
    width: 90px;
  }

  .payment-screen {
    width: 84px;
  }

  .updates-screen {
    width: 88px;
  }
}

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