@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@300;400;500;600;700;800&display=swap");

:root {
  --color-navy: #071b3a;
  --color-navy-2: #0b2448;
  --color-blue: #0057d9;
  --color-blue-2: #0b66f0;
  --color-cyan: #00c2ff;
  --color-purple: #7c3aed;
  --color-purple-2: #9b5cff;
  --color-purple-soft: #f2eaff;
  --color-bg: #f4f8ff;
  --color-surface: #ffffff;
  --color-text: #101828;
  --color-muted: #546179;
  --color-border: #d9e4f5;
  --color-line: #b8c8df;
  --color-success: #087f5b;
  --color-error: #b42318;
  --shadow-soft: 0 18px 48px rgba(7, 27, 58, 0.12);
  --shadow-panel: 0 24px 70px rgba(35, 18, 88, 0.3);
  --radius-card: 8px;
  --radius-small: 6px;
  --container: 1180px;
  --header-height: 76px;
  --focus: 0 0 0 3px rgba(124, 58, 237, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Noto Sans Hebrew", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  direction: ltr;
}

body.menu-open {
  overflow: hidden;
}

body.lang-he .site-header,
body.lang-he main,
body.lang-he .site-footer,
body.lang-he .skip-link {
  direction: rtl;
}

body:not(.lang-he) .site-header,
body:not(.lang-he) main,
body:not(.lang-he) .site-footer,
body:not(.lang-he) .skip-link {
  direction: ltr;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--color-cyan);
  color: var(--color-navy);
  padding: 10px 14px;
  border-radius: var(--radius-small);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  max-width: 100vw;
  overflow-x: clip;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 228, 245, 0.9);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1320px, calc(100% - 32px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  color: var(--color-navy);
}

.brand-link img {
  flex: 0 0 auto;
}

.brand-logo-img {
  display: block;
  width: clamp(148px, 14vw, 186px);
  height: auto;
}

.header-logo-img {
  width: clamp(184px, 16vw, 228px);
}

.brand-text {
  display: grid;
  line-height: 1.12;
}

.brand-text strong {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--color-muted);
  font-size: 0.78rem;
  max-width: 220px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
}

.nav-list a,
.mobile-nav-list a,
.nav-dropdown summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-small);
  color: #26364f;
  font-weight: 700;
  font-size: 0.94rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  gap: 5px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.nav-dropdown[open] summary svg {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  z-index: 55;
  width: 236px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(7, 27, 58, 0.18);
}

.nav-submenu a {
  width: 100%;
  justify-content: flex-start;
  font-weight: 600;
}

.nav-list a:hover,
.mobile-nav-list a:hover,
.nav-dropdown summary:hover,
.nav-list a.is-active,
.mobile-nav-list a.is-active,
.nav-dropdown.is-active summary,
.nav-dropdown[open] summary {
  color: var(--color-blue);
  background: linear-gradient(135deg, #eaf3ff, var(--color-purple-soft));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #c7d6eb;
  border-radius: var(--radius-small);
  background: #ffffff;
  color: var(--color-navy);
  padding: 8px 11px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.phone-link svg {
  width: 17px;
  height: 17px;
}

.phone-link:hover {
  color: var(--color-blue);
  border-color: #b8cdf0;
  background: #f7fbff;
}

.phone-link-mobile {
  width: 100%;
  justify-content: center;
  margin-block-end: 12px;
}

.language-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.language-trigger {
  min-width: 46px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: #ffffff;
  color: var(--color-navy);
  padding: 8px 10px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  color: var(--color-blue);
  border-color: #b8cdf0;
  background: #f7fbff;
}

.language-trigger:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.language-trigger-icon svg {
  width: 19px;
  height: 19px;
}

.language-trigger-chevron svg {
  width: 14px;
  height: 14px;
}

.language-menu {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  z-index: 50;
  width: 230px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(7, 27, 58, 0.18);
}

.language-menu[hidden] {
  display: none;
}

.language-option {
  min-height: 46px;
  display: grid;
  gap: 1px;
  width: 100%;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--color-text);
  padding: 8px 10px;
  font: inherit;
  text-align: start;
  text-decoration: none;
}

.language-option span {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.2;
}

.language-option small {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
}

a.language-option:hover,
.language-option.is-active {
  color: var(--color-blue);
  background: linear-gradient(135deg, #eaf3ff, var(--color-purple-soft));
}

.language-option.is-disabled {
  color: #728097;
  cursor: not-allowed;
  opacity: 0.76;
}

.language-option.is-disabled small {
  color: #8896aa;
}

.language-dropdown-mobile {
  margin-block-start: 12px;
}

.language-dropdown-mobile .language-trigger {
  width: 100%;
  justify-content: space-between;
  padding-inline: 13px;
}

.language-dropdown-mobile .language-menu {
  position: static;
  width: 100%;
  margin-block-start: 8px;
  box-shadow: none;
}

.menu-button {
  min-width: 46px;
  min-height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: #ffffff;
  color: var(--color-navy);
  cursor: pointer;
}

.mobile-menu {
  border-top: 1px solid var(--color-border);
  background: #ffffff;
  max-height: calc(100svh - var(--header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px 20px 20px;
}

.mobile-nav-list {
  display: grid;
  gap: 4px;
}

.mobile-nav-list .nav-dropdown {
  position: static;
}

.mobile-nav-list .nav-dropdown summary {
  width: 100%;
  justify-content: space-between;
}

.mobile-nav-list .nav-submenu {
  position: static;
  width: auto;
  margin-block: 6px 8px;
  padding: 6px;
  border-radius: var(--radius-small);
  box-shadow: none;
  background: #f7fbff;
}

.mobile-nav-list .nav-submenu a {
  min-height: 40px;
  font-weight: 600;
}

.mobile-menu-cta {
  width: 100%;
  margin-block-start: 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(83, 64, 210, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-blue-2), var(--color-purple-2));
}

.btn-secondary {
  background: #ffffff;
  color: var(--color-navy);
  border-color: #bfd4ef;
}

.btn-secondary:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.btn-light {
  background: #ffffff;
  color: var(--color-navy);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-small {
  min-height: 44px;
  padding: 9px 13px;
  font-size: 0.94rem;
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height) - 58px);
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100vw;
  background: var(--color-navy);
  color: #ffffff;
  isolation: isolate;
}

.hero-home {
  min-height: calc(100dvh - var(--header-height) - 50px);
}

.hero-home .hero-image-panel {
  width: min(53vw, 760px);
  -webkit-mask-image: linear-gradient(90deg, #000000 0%, #000000 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, #000000 0%, #000000 70%, rgba(0, 0, 0, 0) 100%);
}

.hero-page .hero-image-panel {
  width: min(53vw, 760px);
  -webkit-mask-image: linear-gradient(90deg, #000000 0%, #000000 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, #000000 0%, #000000 70%, rgba(0, 0, 0, 0) 100%);
}

.hero-home .hero-image-panel::before,
.hero-page .hero-image-panel::before {
  background: linear-gradient(90deg, rgba(7, 27, 58, 0.02) 0%, rgba(7, 27, 58, 0.05) 54%, rgba(7, 27, 58, 0.16) 100%);
}

.hero-home .hero-image-panel::after,
.hero-page .hero-image-panel::after {
  opacity: 0.16;
}

.hero-home .hero-image-panel img,
.hero-page .hero-image-panel img {
  object-position: left center;
}

.hero-home .hero-copy {
  max-width: 580px;
}

.hero-page .hero-copy {
  max-width: 620px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(7, 27, 58, 0.96) 0%, rgba(7, 27, 58, 0.9) 42%, rgba(0, 87, 217, 0.68) 78%, rgba(124, 58, 237, 0.55) 100%),
    #071b3a;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
}

.hero-image-panel {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
  opacity: 1;
}

.hero-image-panel::before,
.hero-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-image-panel::before {
  background: linear-gradient(90deg, rgba(7, 27, 58, 0.02) 0%, rgba(7, 27, 58, 0.12) 42%, rgba(7, 27, 58, 0.7) 70%, rgba(7, 27, 58, 0.86) 100%);
}

.hero-image-panel::after {
  background: radial-gradient(circle at 46% 42%, rgba(0, 194, 255, 0.06), rgba(124, 58, 237, 0.16) 48%, rgba(7, 27, 58, 0.3) 100%);
  mix-blend-mode: screen;
  opacity: 0.34;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.hero-inner {
  position: relative;
  padding-block: 64px;
}

.hero-copy {
  width: 100%;
  max-width: 735px;
  margin-left: auto;
  text-align: right;
  position: relative;
  z-index: 2;
}

body:not(.lang-he) .hero-copy {
  margin-right: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-blue);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero .eyebrow,
.section-navy .eyebrow,
.footer-cta .eyebrow {
  color: var(--color-cyan);
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-block-end: 18px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 800;
}

.hero-page h1 {
  font-size: clamp(2.35rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
}

h3 {
  font-size: 1.24rem;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 710px;
  margin-block-end: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-end: 24px;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.hero .btn-secondary:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-metrics span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  color: #ffffff;
  font-size: 1rem;
}

.section {
  padding-block: 88px;
  background: #ffffff;
  max-width: 100vw;
  overflow-x: clip;
}

.section-light {
  background: var(--color-bg);
}

.section-navy {
  background:
    linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-2) 54%, #053e8e 82%, #3d1a86 100%),
    var(--color-navy);
  color: #ffffff;
}

.section-cta {
  background: linear-gradient(180deg, var(--color-bg), #ffffff);
}

.section-heading {
  max-width: 790px;
  margin-block-end: 34px;
}

.section-heading h2 {
  margin-block-end: 14px;
  color: var(--color-navy);
}

.section-heading p:last-child,
.split-section p,
.feature-card p,
.industry-card p,
.case-card p,
.client-project-card p,
.blog-card span,
.contact-card p {
  color: var(--color-muted);
}

.section-navy .section-heading h2,
.section-navy .split-section h2,
.section-navy .split-section p {
  color: #ffffff;
}

.feature-grid,
.service-detail-grid,
.industry-grid,
.case-grid,
.client-project-grid,
.blog-grid,
.module-grid,
.steps-grid,
.metric-dashboard {
  display: grid;
  gap: 18px;
}

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

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-detail-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-grid,
.case-grid,
.module-grid,
.metric-dashboard {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.client-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.industry-card,
.case-card,
.client-project-card,
.blog-card,
.steps-grid article,
.module-grid article,
.resource-card,
.contact-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(7, 27, 58, 0.06);
}

.feature-card {
  min-height: 248px;
}

.feature-card h3,
.industry-card h3,
.blog-card h3,
.module-grid h3,
.steps-grid h3,
.case-card h3,
.client-project-card h3 {
  margin-block: 12px 10px;
  color: var(--color-navy);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--color-blue);
  border-radius: var(--radius-card);
  background: #eaf4ff;
}

.feature-card:nth-child(3n) .icon-box,
.industry-card:nth-child(4n) .icon-box,
.module-grid article:nth-child(3n) .icon-box {
  color: var(--color-purple);
  background: var(--color-purple-soft);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #33435c;
  font-weight: 600;
}

.check-list svg {
  width: 18px;
  height: 18px;
  margin-block-start: 4px;
  color: var(--color-success);
  flex: 0 0 auto;
}

.check-list.large {
  margin: 0;
}

.check-list.large li {
  font-size: 1.08rem;
}

.section-action {
  margin-block-start: 28px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  font-weight: 800;
}

.text-link:hover {
  color: var(--color-purple);
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.home-workflow-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 87, 217, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 87, 217, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 48%, #f2eaff 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.home-workflow-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.24fr);
  gap: 42px;
  align-items: center;
}

.workflow-copy h2 {
  color: var(--color-navy);
  font-size: clamp(2.05rem, 3.35vw, 3.1rem);
  margin-block-end: 16px;
}

.workflow-copy > p:not(.eyebrow) {
  color: var(--color-muted);
  max-width: 620px;
}

.workflow-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-block: 26px;
}

.workflow-mini-metrics div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(0, 87, 217, 0.13);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 26px rgba(7, 27, 58, 0.05);
}

.workflow-mini-metrics strong {
  color: var(--color-blue);
  font-size: 1.08rem;
  line-height: 1.1;
}

.workflow-mini-metrics span {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.workflow-visual {
  position: relative;
  overflow: hidden;
  min-height: 536px;
  border: 1px solid rgba(0, 87, 217, 0.16);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 194, 255, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(7, 27, 58, 0.98), rgba(8, 44, 99, 0.96) 54%, rgba(61, 26, 134, 0.94));
  box-shadow: var(--shadow-panel);
}

.workflow-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
  pointer-events: none;
}

.workflow-board {
  position: relative;
  z-index: 1;
  min-height: 536px;
  padding: 28px;
}

.workflow-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: url("#workflow-line");
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  opacity: 0.72;
}

body.lang-he .workflow-circuit {
  transform: scaleX(-1);
  transform-origin: center;
}

.workflow-node,
.workflow-output-card,
.workflow-agent-console {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-navy);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.workflow-node {
  position: absolute;
  width: min(186px, 28%);
  min-height: 94px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 13px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.workflow-node:hover,
.workflow-node:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.78);
  box-shadow: 0 24px 54px rgba(0, 194, 255, 0.22);
}

.workflow-node-1 {
  inset-block-start: 34px;
  inset-inline-start: 28px;
}

.workflow-node-2 {
  inset-block-start: 172px;
  inset-inline-start: 28px;
}

.workflow-node-3 {
  inset-block-end: 42px;
  inset-inline-start: 28px;
}

.workflow-node-4 {
  inset-block-start: 38px;
  inset-inline-end: 30px;
}

.workflow-node-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-small);
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
}

.workflow-node-icon svg {
  width: 19px;
  height: 19px;
}

.workflow-node strong,
.workflow-output-card strong {
  display: block;
  color: var(--color-navy);
  font-size: 0.94rem;
  line-height: 1.25;
}

.workflow-node small,
.workflow-output-card span {
  display: block;
  margin-block-start: 4px;
  color: var(--color-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.workflow-agent-console {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: min(230px, 35%);
  min-height: 272px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94)),
    #ffffff;
}

body.lang-he .workflow-agent-console {
  transform: translate(50%, -50%);
}

.agent-core {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-block-end: 14px;
  border-radius: 50%;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--color-cyan), var(--color-blue), var(--color-purple)) border-box;
  border: 3px solid transparent;
  box-shadow: 0 14px 34px rgba(0, 87, 217, 0.22);
}

.agent-core span {
  color: var(--color-blue);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.workflow-agent-console p {
  margin: 0 0 4px;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-agent-console h3 {
  margin: 0 0 13px;
  color: var(--color-navy);
  font-size: 1.08rem;
}

.console-step-list {
  display: grid;
  gap: 7px;
}

.console-step-list span {
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(0, 87, 217, 0.11);
  border-radius: var(--radius-small);
  background: #f7fbff;
  color: #2d3d56;
  font-size: 0.82rem;
  font-weight: 700;
}

.console-bars {
  display: grid;
  gap: 8px;
  margin-block-start: 16px;
}

.console-bars span {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-purple)) 0 / var(--bar) 100% no-repeat, #dce8f8;
}

.workflow-output-stack {
  position: absolute;
  inset-inline-end: 30px;
  inset-block-end: 36px;
  width: min(220px, 32%);
  display: grid;
  gap: 11px;
}

.workflow-output-card {
  padding: 14px;
}

.workflow-output-card:nth-child(2) {
  transform: translateX(-18px);
}

body.lang-he .workflow-output-card:nth-child(2) {
  transform: translateX(18px);
}

.home-workflow-section .btn {
  margin-block-start: 2px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.split-section-reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.1);
}

.process-list li::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  inset-block-start: 18px;
  inset-inline-end: 20px;
  color: var(--color-cyan);
  font-weight: 800;
}

.process-list li:nth-child(even)::before {
  color: var(--color-purple-2);
}

.process-list strong {
  padding-inline-end: 52px;
  color: #ffffff;
  font-size: 1.08rem;
}

.process-list span {
  color: rgba(255, 255, 255, 0.78);
}

.process-list.compact li {
  background: #ffffff;
  border-color: var(--color-border);
}

.process-list.compact li::before {
  color: var(--color-purple);
}

.process-list.compact strong {
  color: var(--color-navy);
}

.process-list.compact span {
  color: var(--color-muted);
}

.industry-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-pill {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: #ffffff;
  color: var(--color-navy);
  padding: 10px 14px;
  font-weight: 800;
}

.industry-pill:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: #dce8f8;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 14px;
}

.metric-list li {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.metric-list span {
  color: var(--color-muted);
}

.cta-panel,
.audit-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.cta-panel {
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 255, 0.95) 58%, rgba(242, 234, 255, 0.72)),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.cta-panel h2,
.audit-layout h2,
.contact-layout h2 {
  color: var(--color-navy);
  margin-block-end: 14px;
}

.lead-form {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(7, 27, 58, 0.1);
}

.form-header {
  margin-block-end: 18px;
}

.form-header h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  margin-block-end: 8px;
  color: var(--color-navy);
}

.form-header p:last-child,
.form-privacy {
  color: var(--color-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: block;
  color: #26364f;
  font-weight: 800;
  line-height: 1.35;
}

.field > span[aria-hidden="true"] {
  color: var(--color-error);
  margin-inline-start: 4px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-block-start: 7px;
  border: 1px solid #c7d6eb;
  border-radius: var(--radius-small);
  background: #fbfdff;
  color: var(--color-text);
  font-weight: 400;
  padding: 10px 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder,
.field select option {
  font-weight: 400;
}

.field textarea {
  resize: vertical;
  min-height: 128px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-purple);
  background: #ffffff;
  box-shadow: var(--focus);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--color-error);
}

.field-error {
  display: block;
  min-height: 20px;
  margin-block-start: 7px;
  color: var(--color-error);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-submit {
  width: 100%;
  margin-block-start: 8px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-weight: 800;
}

.form-status.is-error {
  color: var(--color-error);
}

.form-status.is-success {
  color: var(--color-success);
}

.form-privacy {
  margin: 8px 0 0;
  font-size: 0.88rem;
}

.deliverables,
.pricing-style-list,
.language-panel,
.principles,
.audit-list {
  display: grid;
  gap: 14px;
}

.deliverables div,
.pricing-style-list div,
.language-panel div,
.principles div,
.audit-list div {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
}

.deliverables strong,
.pricing-style-list strong,
.language-panel strong,
.principles strong,
.audit-list strong {
  display: block;
  margin-block-end: 6px;
  color: var(--color-navy);
  font-size: 1.05rem;
}

.deliverables span,
.pricing-style-list span,
.language-panel span,
.principles span,
.audit-list p {
  margin: 0;
  color: var(--color-muted);
}

.section-navy .language-panel div {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.section-navy .language-panel strong,
.section-navy .language-panel span {
  color: #ffffff;
}

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

.steps-grid article span,
.module-grid article span,
.metric-dashboard div span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  border-radius: var(--radius-small);
  background: linear-gradient(135deg, #eaf4ff, var(--color-purple-soft));
  color: var(--color-purple);
  font-weight: 800;
}

.industry-card,
.blog-card {
  min-height: 230px;
}

.industry-card {
  display: flex;
  flex-direction: column;
}

.industry-card .text-link {
  margin-block-start: auto;
}

.language-panel {
  color: var(--color-text);
}

.case-card {
  display: grid;
  gap: 14px;
}

.client-project-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.client-project-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.client-project-card-head span {
  padding: 7px 10px;
  border: 1px solid rgba(0, 87, 217, 0.14);
  border-radius: 999px;
  background: #f4f8ff;
  color: var(--color-blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.client-project-details {
  list-style: none;
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 2px 0 0;
}

.client-project-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #33435c;
  font-weight: 650;
}

.client-project-details li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-block-start: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
}

.client-project-card .text-link {
  margin-block-start: auto;
}

.project-deep-dive .section-heading {
  max-width: 980px;
}

.project-deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-deep-dive-card,
.project-deep-dive-note {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(7, 27, 58, 0.06);
}

.project-deep-dive-card h3,
.project-deep-dive-note h3 {
  margin-block-end: 10px;
  color: var(--color-navy);
}

.project-deep-dive-card p,
.project-deep-dive-note p {
  color: var(--color-muted);
}

.project-deep-dive-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.project-deep-dive-card li {
  position: relative;
  padding-inline-start: 18px;
  color: #33435c;
  font-weight: 560;
}

.project-deep-dive-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
}

.project-deep-dive-note {
  margin-block-start: 18px;
  background:
    linear-gradient(135deg, rgba(0, 87, 217, 0.08), rgba(124, 58, 237, 0.1)),
    #ffffff;
}

.case-tag,
.blog-card p {
  margin: 0;
  color: var(--color-purple);
  font-weight: 800;
  font-size: 0.9rem;
}

.case-card div {
  padding-block-start: 14px;
  border-top: 1px solid var(--color-border);
}

.case-card div strong {
  color: var(--color-navy);
}

.metric-dashboard div {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
}

.metric-dashboard strong {
  color: var(--color-navy);
  font-size: 1.16rem;
}

.metric-dashboard p {
  color: var(--color-muted);
}

.resource-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 255, 0.96)),
    #ffffff;
}

.resource-lines {
  display: block;
  height: 116px;
  margin-block-end: 24px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(#cddcf0 0 0) 0 20px / 100% 2px no-repeat,
    linear-gradient(#cddcf0 0 0) 0 54px / 74% 2px no-repeat,
    linear-gradient(#cddcf0 0 0) 0 88px / 88% 2px no-repeat,
    linear-gradient(90deg, var(--color-blue), var(--color-purple), var(--color-cyan));
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.contact-card a {
  color: var(--color-purple);
  font-weight: 800;
}

.audit-layout {
  align-items: stretch;
}

.audit-list div {
  position: relative;
  padding-inline-start: 58px;
}

.audit-list svg {
  position: absolute;
  inset-inline-start: 20px;
  inset-block-start: 23px;
  color: var(--color-success);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 16px 20px;
  color: var(--color-navy);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--color-muted);
}

body:not(.home-page) main > .section {
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
  color: var(--color-text);
  border-top: 1px solid rgba(217, 228, 245, 0.78);
}

body:not(.home-page) main > .section.section-light,
body:not(.home-page) main > .section.section-cta {
  background: linear-gradient(180deg, var(--color-bg) 0%, #ffffff 100%);
}

body:not(.home-page) main > .section:nth-of-type(odd) {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 87, 217, 0.34), transparent 34%),
    radial-gradient(circle at 94% 100%, rgba(124, 58, 237, 0.36), transparent 36%),
    linear-gradient(135deg, #071b3a 0%, #0a2348 48%, #074b9c 82%, #3d1a86 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.home-page) main > .section:nth-of-type(odd).section-light,
body:not(.home-page) main > .section:nth-of-type(odd).section-cta {
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 194, 255, 0.18), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(124, 58, 237, 0.28), transparent 34%),
    linear-gradient(135deg, #061733 0%, #092654 58%, #073f86 100%);
}

body:not(.home-page) main > .section:nth-of-type(odd) .eyebrow {
  color: var(--color-cyan);
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(
  .section-heading h2,
  .split-section h2,
  .cta-panel h2,
  .audit-layout h2,
  .contact-layout h2,
  .feature-card h3,
  .industry-card h3,
  .blog-card h3,
  .module-grid h3,
  .steps-grid h3,
  .case-card h3,
  .client-project-card h3,
  .project-deep-dive-card h3,
  .project-deep-dive-note h3,
  .metric-dashboard strong,
  .case-card div strong,
  .deliverables strong,
  .pricing-style-list strong,
  .language-panel strong,
  .principles strong,
  .audit-list strong,
  .faq-list summary,
  .process-list.compact strong
) {
  color: #ffffff;
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(
  .section-heading p:last-child,
  .split-section p,
  .cta-panel p:not(.eyebrow),
  .feature-card p,
  .industry-card p,
  .case-card p,
  .client-project-card p,
  .client-project-details li,
  .project-deep-dive-card p,
  .project-deep-dive-card li,
  .project-deep-dive-note p,
  .blog-card span,
  .contact-card p,
  .deliverables span,
  .pricing-style-list span,
  .language-panel span,
  .principles span,
  .audit-list p,
  .metric-dashboard p,
  .faq-list p,
  .process-list.compact span,
  .check-list li,
  .metric-list span
) {
  color: rgba(255, 255, 255, 0.76);
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(
  .feature-card,
  .industry-card,
  .case-card,
  .client-project-card,
  .project-deep-dive-card,
  .project-deep-dive-note,
  .blog-card,
  .steps-grid article,
  .module-grid article,
  .resource-card,
  .contact-card,
  .metric-dashboard div,
  .deliverables div,
  .pricing-style-list div,
  .language-panel div,
  .principles div,
  .audit-list div,
  .faq-list details,
  .process-list.compact li,
  .industry-pill,
  .cta-panel
) {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(3, 12, 29, 0.18);
  backdrop-filter: blur(14px);
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(.icon-box, .steps-grid article span, .module-grid article span, .metric-dashboard div span) {
  border: 1px solid rgba(0, 194, 255, 0.28);
  background: rgba(0, 194, 255, 0.14);
  color: var(--color-cyan);
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(.feature-card:nth-child(3n) .icon-box, .industry-card:nth-child(4n) .icon-box, .module-grid article:nth-child(3n) .icon-box) {
  border-color: rgba(155, 92, 255, 0.34);
  background: rgba(124, 58, 237, 0.18);
  color: #b886ff;
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(.case-card div, .metric-list li) {
  border-color: rgba(255, 255, 255, 0.16);
}

body:not(.home-page) main > .section:nth-of-type(odd) .client-project-card-head span {
  border-color: rgba(0, 194, 255, 0.28);
  background: rgba(0, 194, 255, 0.14);
  color: var(--color-cyan);
}

body:not(.home-page) main > .section:nth-of-type(odd) .client-project-details li::before {
  background: linear-gradient(135deg, var(--color-cyan), #b886ff);
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(.metric-list strong, .industry-pill) {
  color: #ffffff;
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(.case-tag, .blog-card p, .text-link, .contact-card a) {
  color: var(--color-cyan);
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(.text-link:hover, .industry-pill:hover) {
  color: #c5a4ff;
}

body:not(.home-page) main > .section:nth-of-type(odd) :is(.check-list svg, .audit-list svg) {
  color: var(--color-cyan);
}

body:not(.home-page) main > .section:nth-of-type(odd) .resource-lines {
  opacity: 0.72;
}

body:not(.home-page) main > .section:nth-of-type(odd) .image-panel {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 58px rgba(3, 12, 29, 0.22);
}

body:not(.home-page) main > .section:nth-of-type(odd) .lead-form {
  border-color: rgba(217, 228, 245, 0.9);
  background: #ffffff;
  color: var(--color-text);
}

body:not(.home-page) main > .section:nth-of-type(odd) .lead-form .form-header h2 {
  color: var(--color-navy);
}

body:not(.home-page) main > .section:nth-of-type(odd) .lead-form :is(.form-header p:last-child, .form-privacy) {
  color: var(--color-muted);
}

.site-footer {
  background:
    linear-gradient(135deg, var(--color-navy) 0%, #071b3a 62%, #351574 100%),
    var(--color-navy);
  color: #ffffff;
  max-width: 100vw;
  overflow-x: clip;
}

.footer-cta {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-block: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta h2 {
  max-width: 820px;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-grid {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.8fr;
  gap: 34px;
  padding-block: 44px;
}

.footer-brand p,
.footer-note,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-logo {
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: var(--radius-small);
  background: #ffffff;
  color: #ffffff;
  margin-block-end: 18px;
}

.footer-logo .brand-logo-img {
  width: clamp(158px, 20vw, 196px);
}

.footer-logo .brand-text small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h3 {
  margin-block-end: 12px;
  font-size: 1rem;
  color: #ffffff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .btn-light {
  color: var(--color-navy);
}

.site-footer .btn-outline-light {
  color: #ffffff;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer .btn-light:hover {
  color: var(--color-blue);
}

.footer-bottom {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .nav-list,
  .header-actions .btn-small,
  .header-actions > .language-dropdown {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .header-shell {
    justify-content: space-between;
  }
}

@media (max-width: 1024px) {
  .hero-image-panel {
    width: 100%;
    opacity: 0.82;
  }

  .hero-home,
  .hero-page {
    display: block;
    min-height: auto;
  }

  .hero-home .hero-background,
  .hero-page .hero-background {
    position: relative;
    inset: auto;
    z-index: 0;
    height: clamp(330px, 48vw, 440px);
    overflow: hidden;
  }

  .hero-home .hero-inner,
  .hero-page .hero-inner {
    padding-block: 42px 58px;
  }

  .hero-home .hero-image-panel,
  .hero-page .hero-image-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  .hero-home .hero-copy,
  .hero-page .hero-copy {
    max-width: min(640px, calc(100vw - 40px));
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  body:not(.lang-he) .hero-home .hero-copy,
  body:not(.lang-he) .hero-page .hero-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .feature-grid,
  .service-detail-grid,
  .industry-grid,
  .case-grid,
  .client-project-grid,
  .project-deep-dive-grid,
  .blog-grid,
  .module-grid,
  .metric-dashboard,
  .feature-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-workflow-layout {
    grid-template-columns: 1fr;
  }

  .workflow-copy {
    max-width: 720px;
  }

  .workflow-visual {
    min-height: 500px;
  }

  .split-section,
  .split-section-reverse,
  .cta-panel,
  .audit-layout,
  .contact-layout,
  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 16px;
  }

  .container,
  .header-shell,
  .footer-cta,
  .footer-grid,
  .footer-bottom {
    width: auto;
    max-width: none;
    margin-left: 12px;
    margin-right: 12px;
  }

  .brand-text small {
    display: none;
  }

  .header-shell {
    direction: ltr;
  }

  .brand-link {
    order: 2;
    direction: ltr;
    min-width: 0;
  }

  .brand-logo-img {
    width: 138px;
  }

  .header-logo-img {
    width: 156px;
  }

  .brand-text strong {
    display: none;
  }

  .header-actions {
    order: 1;
    direction: ltr;
  }

  .header-actions > .phone-link {
    display: none;
  }

  body:not(.lang-he) .brand-link {
    order: 1;
  }

  body:not(.lang-he) .header-actions {
    order: 2;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 64px);
  }

  .hero-inner {
    padding-block: 46px;
  }

  .hero-copy {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .footer-cta-actions {
    display: grid;
  }

  .hero-actions .btn,
  .footer-cta-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-image-panel {
    inset: 0;
    width: 100%;
    opacity: 0.48;
  }

  .hero-home .hero-image-panel,
  .hero-page .hero-image-panel {
    width: 100%;
    opacity: 0.48;
  }

  .hero-home .hero-copy,
  .hero-page .hero-copy {
    max-width: 340px;
  }

  .hero-image-panel::before {
    background: linear-gradient(180deg, rgba(7, 27, 58, 0.42) 0%, rgba(7, 27, 58, 0.78) 56%, rgba(7, 27, 58, 0.92) 100%);
  }

  .hero-image-panel::after {
    opacity: 0.26;
  }

  .hero-image-panel img {
    object-position: center;
  }

  .hero-home,
  .hero-page {
    display: block;
    min-height: auto;
  }

  .hero-home .hero-background,
  .hero-page .hero-background {
    height: clamp(238px, 62vw, 310px);
  }

  .hero-home .hero-inner,
  .hero-page .hero-inner {
    padding-block: 32px 44px;
  }

  .hero-home .hero-image-panel,
  .hero-page .hero-image-panel {
    -webkit-mask-image: linear-gradient(90deg, #000000 0%, #000000 72%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(90deg, #000000 0%, #000000 72%, rgba(0, 0, 0, 0) 100%);
  }

  .hero-home .hero-image-panel::before,
  .hero-page .hero-image-panel::before {
    background: linear-gradient(180deg, rgba(7, 27, 58, 0.06) 0%, rgba(7, 27, 58, 0.24) 100%);
  }

  .hero-home .hero-image-panel::after,
  .hero-page .hero-image-panel::after {
    opacity: 0.18;
  }

  .hero-home .hero-image-panel img,
  .hero-page .hero-image-panel img {
    object-position: left center;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    margin-block-end: 24px;
  }

  .workflow-mini-metrics {
    grid-template-columns: 1fr;
  }

  .workflow-visual {
    min-height: auto;
  }

  .workflow-board {
    min-height: 0;
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .workflow-circuit {
    display: none;
  }

  .workflow-node,
  .workflow-node-1,
  .workflow-node-2,
  .workflow-node-3,
  .workflow-node-4,
  .workflow-agent-console,
  .workflow-output-stack {
    position: static;
    inset: auto;
    width: 100%;
    transform: none;
  }

  body.lang-he .workflow-agent-console,
  .workflow-output-card:nth-child(2),
  body.lang-he .workflow-output-card:nth-child(2) {
    transform: none;
  }

  .workflow-node {
    min-height: 76px;
  }

  .workflow-agent-console {
    min-height: 0;
  }

  .feature-grid,
  .service-detail-grid,
  .industry-grid,
  .case-grid,
  .client-project-grid,
  .project-deep-dive-grid,
  .blog-grid,
  .module-grid,
  .metric-dashboard,
  .feature-grid.four,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .industry-card,
  .case-card,
  .client-project-card,
  .project-deep-dive-card,
  .project-deep-dive-note,
  .blog-card,
  .steps-grid article,
  .module-grid article,
  .resource-card,
  .contact-card,
  .lead-form,
  .cta-panel {
    padding: 20px;
  }

  .cta-panel,
  .audit-layout,
  .contact-layout {
    gap: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .metric-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .image-panel {
    aspect-ratio: 1 / 0.86;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.65rem;
  }

  .hero-page h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .btn {
    padding-inline: 14px;
  }
}

@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;
  }
}
