@font-face {
  font-family: "Assistant Local";
  src: url("assets/fonts/assistant-hebrew-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #071630;
  --ink-soft: #142743;
  --blue: #2458f5;
  --blue-bright: #2e6cff;
  --ice: #dce9ff;
  --paper: #f4f1e9;
  --white: #ffffff;
  --muted: #657084;
  --line: rgba(7, 22, 48, .14);
  --dark-line: rgba(255, 255, 255, .16);
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Assistant Local", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 126px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: -80px; right: 18px; padding: 10px 16px; color: var(--ink); background: var(--white); }
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 94px;
  padding-inline: max(24px, calc((100vw - var(--shell)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; font-size: .78rem; font-weight: 800; letter-spacing: -.04em; direction: ltr; }
.brand-name { font-weight: 750; }
.main-nav {
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .14);
  backdrop-filter: blur(18px);
}
.main-nav a {
  min-height: 42px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.main-nav a:not(.nav-contact) { color: rgba(255, 255, 255, .88); }
.main-nav a:not(.nav-contact):hover {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .13);
  transform: translateY(-1px);
}
.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 9px 24px rgba(0, 0, 0, .15);
}
.nav-contact:hover { color: var(--white); background: var(--blue); transform: translateY(-1px); }
.nav-contact i { width: 7px; height: 7px; border-radius: 50%; background: #6ce6a9; box-shadow: 0 0 0 5px rgba(108, 230, 169, .14); }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .2s ease; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / calc(100% / 8) 100%,
    var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 50%;
  width: 50%;
  height: 100%;
  background: var(--blue);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 150px);
  padding-top: 132px;
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  gap: 64px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.overline { margin: 0 0 30px; display: flex; gap: 19px; color: rgba(255, 255, 255, .64); font-size: .67rem; font-weight: 800; letter-spacing: .15em; direction: ltr; }
.overline span { display: inline-flex; align-items: center; gap: 19px; }
.overline span:not(:last-child)::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--blue-bright); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4rem, 7.1vw, 7.8rem);
  font-weight: 740;
  letter-spacing: -.07em;
  line-height: .85;
}
h1 em, h2 em {
  color: transparent;
  -webkit-text-stroke: 1.4px currentColor;
  font-style: normal;
  font-weight: 620;
}
.hero h1 em { display: block; margin-top: 18px; color: var(--ice); -webkit-text-stroke: 0; }
.hero-intro { max-width: 600px; margin: 31px 0 0; color: rgba(255, 255, 255, .68); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.button { min-height: 54px; padding: 13px 24px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--white); box-shadow: 0 18px 45px rgba(0, 0, 0, .16); }
.button-primary span, .button-light span { font-size: 1.2em; }
.text-link { color: rgba(255, 255, 255, .72); text-underline-offset: 5px; font-size: .82rem; font-weight: 700; }
.chat-demo-cta {
  min-height: 43px;
  margin-top: 18px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  cursor: pointer;
  font-size: .76rem;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.chat-demo-cta:hover, .chat-demo-cta:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .13);
  transform: translateY(-2px);
}
.chat-demo-cta b { color: #91b3ff; margin-inline-end: 3px; }
.chat-demo-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #6ce6a9;
  box-shadow: 0 0 0 5px rgba(108, 230, 169, .13);
  animation: chat-live-pulse 2s ease-in-out infinite;
}
.chat-demo-arrow { color: #91b3ff; font-size: 1rem; line-height: 1; }

@keyframes chat-live-pulse {
  50% { box-shadow: 0 0 0 8px rgba(108, 230, 169, 0); }
}

.hero-portrait { position: relative; min-width: 0; }
.portrait-field { position: relative; height: min(650px, 68vh); min-height: 510px; overflow: hidden; border-radius: 38px 38px 120px 38px; background: #d6e4ff; box-shadow: 0 42px 100px rgba(0, 0, 0, .25); }
.portrait-field::before { content: ""; position: absolute; z-index: 1; inset: 24px; border: 1px solid rgba(7, 22, 48, .16); border-radius: 22px 22px 92px 22px; }
.portrait-field img { position: absolute; z-index: 3; right: 50%; bottom: -1px; width: min(96%, 650px); max-width: none; transform: translateX(50%); filter: drop-shadow(0 26px 28px rgba(7, 22, 48, .2)); }
.portrait-word { position: absolute; z-index: 2; top: 7%; left: -2%; color: rgba(7, 22, 48, .08); font-size: clamp(7rem, 13vw, 13.5rem); font-weight: 800; letter-spacing: -.09em; line-height: 1; direction: ltr; }
.portrait-caption { position: absolute; z-index: 4; right: 44px; bottom: 35px; color: var(--ink); font-size: .66rem; font-weight: 800; line-height: 1.35; letter-spacing: .09em; text-align: left; direction: ltr; }
.hero-instagram {
  position: absolute;
  z-index: 6;
  top: 24px;
  left: 24px;
  min-height: 78px;
  padding: 14px 17px;
  display: grid;
  grid-template-columns: 32px auto 28px;
  gap: 14px;
  align-items: center;
  color: var(--ink);
  border: 2px solid transparent;
  border-radius: 23px;
  background:
    linear-gradient(rgba(255, 255, 255, .94), rgba(247, 249, 255, .9)) padding-box,
    linear-gradient(135deg, #833ab4, #e1306c 52%, #f6a33a) border-box;
  box-shadow: 0 24px 58px rgba(7, 22, 48, .23);
  backdrop-filter: blur(18px);
  text-decoration: none;
  direction: ltr;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hero-instagram:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 30px 68px rgba(7, 22, 48, .28); }
.instagram-mark {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 10px;
}
.instagram-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.instagram-mark::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.hero-instagram-copy b, .hero-instagram-copy small { display: block; }
.hero-instagram .instagram-mark { color: #d72f76; }
.hero-instagram-copy b { font-size: .88rem; line-height: 1; }
.hero-instagram-copy small { margin-top: 7px; color: var(--muted); font-size: .66rem; font-weight: 750; direction: rtl; }
.social-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-size: .84rem;
}
.portrait-foot { min-height: 50px; padding: 0 4px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: rgba(255, 255, 255, .68); font-size: .62rem; font-weight: 700; letter-spacing: .05em; direction: ltr; }

.proof-row {
  position: relative;
  z-index: 4;
  bottom: 0;
  margin-bottom: 38px;
  min-height: 0;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  color: var(--ink);
  border-radius: 30px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
}
.experience-proof { padding-inline-end: 27px; display: flex; align-items: center; gap: 15px; border-inline-end: 1px solid var(--line); }
.experience-proof > strong { color: var(--blue); font-size: 3.25rem; font-weight: 760; letter-spacing: -.055em; line-height: 1; direction: ltr; }
.experience-proof span { max-width: 105px; color: var(--muted); font-size: .72rem; line-height: 1.35; }
.experience-proof span b { display: block; color: var(--ink); font-size: .84rem; }
.delivery-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
.delivery-proof article { min-width: 0; padding: 5px 22px; display: grid; grid-template-columns: 30px 1fr; gap: 11px; align-items: start; border-inline-start: 1px solid var(--line); }
.delivery-proof article:first-child { border-inline-start: 0; }
.delivery-proof i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: rgba(36, 88, 245, .09); font-size: .56rem; font-style: normal; font-weight: 800; direction: ltr; }
.delivery-proof strong, .delivery-proof span { display: block; }
.delivery-proof strong { margin-top: 2px; color: var(--ink); font-size: .84rem; line-height: 1.2; }
.delivery-proof span { margin-top: 6px; color: var(--muted); font-size: .68rem; line-height: 1.35; }

.section-intro { margin-bottom: 76px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; align-items: end; }
.section-number { margin: 0 0 22px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .13em; direction: ltr; text-align: right; }
.section-intro .section-number { grid-column: 1 / -1; }
.section-intro h2, .process-heading h2, .about-heading h2, .contact-title h2 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  font-weight: 740;
  letter-spacing: -.065em;
  line-height: .82;
}
.section-intro h2 em, .process-heading h2 em, .about-heading h2 em { color: var(--blue); }
.section-intro > p:last-child { max-width: 500px; margin: 0 0 6px; color: var(--muted); }

.featured-ai {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 5%, rgba(36, 88, 245, .1), transparent 29rem),
    var(--paper);
}
.featured-ai::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(7, 22, 48, .08);
}
.featured-ai-intro {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}
.featured-ai-intro .section-number { margin-bottom: 0; }
.featured-ai-intro > p:last-child {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 700;
}
.featured-ai .project-ai { margin-top: 0; }

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 17%, rgba(36, 88, 245, .1), transparent 25rem),
    #edf3ff;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(7, 22, 48, .08);
}
.services-intro {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  gap: 78px;
  align-items: end;
}
.services-intro h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.25rem, 5.8vw, 6.25rem);
  font-weight: 740;
  letter-spacing: -.065em;
  line-height: .88;
}
.services-intro h2 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}
.services-intro-copy {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(7, 22, 48, .18);
}
.services-intro-copy p { margin: 0 0 17px; color: var(--muted); font-size: .9rem; }
.services-intro-copy p:first-child { color: var(--ink); font-size: 1.06rem; font-weight: 700; }
.featured-services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  position: relative;
  min-width: 0;
  min-height: 390px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(7, 22, 48, .1);
  border-radius: 30px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 55px rgba(7, 22, 48, .06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 88, 245, .3);
  box-shadow: 0 28px 70px rgba(7, 22, 48, .1);
}
.service-card-accent { color: var(--white); border-color: transparent; background: var(--blue); }
.service-card-accent:hover { border-color: transparent; box-shadow: 0 28px 70px rgba(36, 88, 245, .28); }
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.service-index { color: #8a95a7; font-size: .61rem; font-weight: 800; letter-spacing: .08em; direction: ltr; }
.service-card-accent .service-index { color: rgba(255, 255, 255, .58); }
.service-icon {
  position: relative;
  width: 64px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--blue);
  border: 1px solid rgba(36, 88, 245, .25);
  border-radius: 15px;
  background: rgba(36, 88, 245, .07);
  direction: ltr;
}
.service-icon::before, .service-icon::after, .service-icon i { content: ""; position: absolute; pointer-events: none; }
.service-icon b { position: relative; z-index: 2; font-size: .64rem; letter-spacing: .04em; }
.service-icon i { right: 7px; bottom: 7px; left: 7px; height: 1px; background: rgba(36, 88, 245, .24); }
.service-icon::before { top: 7px; right: 8px; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); box-shadow: -8px 0 rgba(36, 88, 245, .34); }
.service-icon::after { bottom: 6px; left: 11px; width: 7px; height: 7px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: skew(-22deg); }
.service-card-accent .service-icon { color: var(--white); border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .12); }
.service-card-accent .service-icon::before { background: var(--white); box-shadow: -8px 0 rgba(255, 255, 255, .4); }
.service-card-accent .service-icon i { background: rgba(255, 255, 255, .28); }
.service-icon-flow::after { width: 18px; height: 8px; border: 0; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: none; }
.service-icon-catalog::after { width: 20px; height: 13px; border: 1px solid currentColor; transform: none; }
.service-icon-chart::after { width: 22px; height: 13px; border: 0; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: skewY(-24deg); }
.service-icon-connect::after { width: 22px; height: 10px; border: 0; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: none; }
.service-card h3 { max-width: 300px; margin: 42px 0 12px; font-size: 1.38rem; line-height: 1.08; }
.service-card > p { margin: 0; color: var(--muted); font-size: .82rem; }
.service-card-accent > p { color: rgba(255, 255, 255, .72); }
.service-value { margin-top: auto; padding-top: 28px; }
.service-value span, .service-value strong { display: block; }
.service-value span { margin-bottom: 5px; color: var(--blue); font-size: .61rem; font-weight: 800; }
.service-value strong { font-size: .78rem; line-height: 1.35; }
.service-card-accent .service-value span { color: #c8d8ff; }
.service-card > a {
  margin-top: 22px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  border-top: 1px solid var(--line);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 800;
}
.service-card-accent > a { color: var(--white); border-color: rgba(255, 255, 255, .24); }
.solutions-disclosure { margin-top: 36px; }
.all-solutions-toggle {
  min-height: 58px;
  margin-inline: auto;
  padding: 14px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(7, 22, 48, .16);
  cursor: pointer;
  font-weight: 800;
}
.all-solutions-toggle i { position: relative; width: 16px; height: 16px; }
.all-solutions-toggle i::before, .all-solutions-toggle i::after { content: ""; position: absolute; top: 50%; right: 0; left: 0; height: 2px; background: currentColor; transition: transform .2s ease; }
.all-solutions-toggle i::after { transform: rotate(90deg); }
.all-solutions-toggle[aria-expanded="true"] i::after { transform: rotate(0); }
.all-solutions[hidden] { display: none; }
.all-solutions {
  margin-top: 28px;
  padding: 39px 40px 42px;
  border: 1px solid rgba(7, 22, 48, .12);
  border-radius: 38px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 80px rgba(7, 22, 48, .08);
  animation: solutions-open .35s ease both;
}
.all-solutions-heading {
  padding-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.all-solutions-heading p { max-width: 680px; margin: 0; color: var(--ink); font-size: 1.08rem; font-weight: 700; }
.all-solutions-heading span { color: var(--muted); font-size: .66rem; white-space: nowrap; }
.solution-categories { border-top: 2px solid var(--ink); }
.solution-category { border-bottom: 1px solid var(--line); }
.solution-category summary {
  min-height: 76px;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  list-style: none;
}
.solution-category summary::-webkit-details-marker { display: none; }
.solution-category summary span { display: flex; align-items: baseline; gap: 17px; font-size: 1.07rem; font-weight: 800; }
.solution-category summary b { color: var(--blue); font-size: .6rem; letter-spacing: .08em; direction: ltr; }
.solution-category summary small { color: var(--muted); font-size: .65rem; font-weight: 700; }
.solution-category summary small::after { content: "+"; margin-right: 17px; color: var(--blue); font-size: 1rem; }
.solution-category[open] summary small::after { content: "−"; }
.solution-list { padding: 2px 0 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 42px; }
.solution-list article { min-width: 0; padding: 20px 4px; border-top: 1px solid rgba(7, 22, 48, .08); }
.solution-list h3 { margin: 0 0 6px; font-size: .9rem; }
.solution-list p { margin: 0; color: var(--muted); font-size: .72rem; }
.solution-list a { margin-top: 12px; display: inline-block; color: var(--blue); text-underline-offset: 4px; font-size: .65rem; font-weight: 800; }
.industries {
  margin-top: 37px;
  padding: 33px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 45px;
  border-radius: 27px;
  background: #e9f0ff;
}
.industries .eyebrow { margin: 0 0 10px; color: var(--blue); font-size: .62rem; font-weight: 800; }
.industries h3 { max-width: 390px; margin: 0; font-size: 1.18rem; line-height: 1.25; }
.industries ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-content: flex-start; gap: 8px; list-style: none; }
.industries li { padding: 7px 11px; color: var(--ink-soft); border: 1px solid rgba(7, 22, 48, .12); border-radius: 999px; background: rgba(255, 255, 255, .56); font-size: .65rem; font-weight: 700; }

.project { margin-top: 36px; padding: 34px; border: 0; border-radius: 42px; background: var(--white); box-shadow: 0 24px 70px rgba(7, 22, 48, .08); }
.project + .project { margin-top: 104px; }
.project-topline { padding-bottom: 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.status { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 800; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: #28b77c; box-shadow: 0 0 0 5px rgba(40, 183, 124, .12); }
.status-live { color: #197351; }
.status-progress { color: var(--blue); }
.project-index { color: var(--muted); font-size: .68rem; font-weight: 800; direction: ltr; }
.project-layout { padding: 55px 0 45px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 58px; align-items: center; }
.project-copy { min-width: 0; }
.project-type { margin: 0 0 17px; color: var(--blue); font-size: .64rem; font-weight: 800; letter-spacing: .12em; direction: ltr; text-align: right; }
.project h3, .project-ai h2 { margin: 0; color: var(--ink); font-size: clamp(3.5rem, 6vw, 6.5rem); font-weight: 760; letter-spacing: -.07em; line-height: .78; direction: ltr; text-align: right; }
.project-statement { margin: 35px 0 10px; color: var(--ink); font-size: 1.18rem; font-weight: 750; }
.project-description { max-width: 470px; margin: 0; color: var(--muted); font-size: .9rem; }
.project-tags { margin: 25px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.project-tags li { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: .65rem; font-weight: 700; }
.project-link { margin-top: 31px; display: inline-flex; gap: 9px; color: var(--blue); text-underline-offset: 5px; font-size: .78rem; font-weight: 800; }
.product-window { position: relative; min-width: 0; margin: 0; padding: 40px 10px 10px; overflow: visible; border-radius: 24px; background: var(--ink); box-shadow: 0 35px 75px rgba(7, 22, 48, .2); direction: ltr; }
.window-bar { position: absolute; top: 0; right: 0; left: 0; height: 40px; padding: 0 13px; display: flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, .52); font-size: .56rem; }
.window-bar span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, .3); }
.window-bar b { margin-left: auto; font-weight: 600; }
.product-window > img:not(.phone-proof) { width: 100%; aspect-ratio: 1.5 / 1; border-radius: 0 0 15px 15px; object-fit: cover; object-position: top; }
.phone-proof { position: absolute; right: -24px; bottom: -29px; width: 24%; max-height: 74%; border: 7px solid var(--ink); border-radius: 18px; background: var(--white); box-shadow: 0 25px 50px rgba(7, 22, 48, .3); object-fit: cover; object-position: top; }
.project-result { min-height: 70px; padding-top: 21px; display: flex; align-items: center; justify-content: center; gap: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; font-weight: 700; }
.project-result i { color: var(--blue); font-style: normal; }
.project-result strong { color: var(--ink); }

.project-orna {
  padding: 40px;
  border-radius: 50px;
  background:
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, .48), transparent 22rem),
    #dfe8da;
  box-shadow: 0 30px 80px rgba(39, 57, 47, .12);
}
.project-orna .project-topline { border-color: rgba(39, 57, 47, .16); }
.project-orna .status-progress, .project-orna .project-type { color: #617451; }
.project-orna h3 {
  color: #25372d;
  direction: rtl;
  text-align: right;
}
.project-orna .project-statement { max-width: 430px; color: #25372d; }
.project-orna .project-description { color: #627066; }
.project-orna .project-tags li { color: #344b3c; border-color: rgba(39, 57, 47, .2); background: rgba(255, 255, 255, .22); }
.orna-layout { grid-template-columns: .7fr 1.3fr; padding-block: 62px 50px; }
.orna-scope {
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #506054;
  font-size: .7rem;
  font-weight: 800;
}
.orna-scope span { width: 7px; height: 7px; border-radius: 50%; background: #7f966c; box-shadow: 0 0 0 5px rgba(127, 150, 108, .14); }
.orna-showcase {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 13px;
  overflow: visible;
  border-radius: 31px;
  background: #27392f;
  box-shadow: 0 35px 75px rgba(39, 57, 47, .22);
  direction: ltr;
}
.orna-showcase > img:first-child {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}
.orna-phone-proof {
  position: absolute;
  right: -22px;
  bottom: -25px;
  width: 23%;
  max-height: 79%;
  border: 6px solid #27392f;
  border-radius: 19px;
  background: #f8f5ed;
  box-shadow: 0 24px 54px rgba(39, 57, 47, .3);
  object-fit: cover;
  object-position: top;
}
.orna-result { border-color: rgba(39, 57, 47, .16); }
.orna-result i { color: #718861; }
.orna-result strong { color: #25372d; }

.project-ai { padding: 46px; color: var(--white); border: 0; border-radius: 52px; background: var(--ink); box-shadow: 0 35px 90px rgba(7, 22, 48, .18); }
.project-ai .project-topline { border-color: var(--dark-line); }
.project-ai .status-live { color: #8ff0c4; }
.project-ai .status-progress { color: #8eb1ff; }
.project-ai .project-index { color: rgba(255, 255, 255, .5); }
.ai-heading { padding: 69px 0 62px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.project-ai h3, .project-ai h2 { color: var(--white); }
.project-ai .project-type { color: #8eb1ff; }
.project-ai .project-statement { color: var(--white); }
.project-ai .project-description { color: rgba(255, 255, 255, .57); }
.project-ai .project-link { color: #c8d8ff; text-decoration-color: rgba(200, 216, 255, .45); }
.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(240px, .85fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  direction: ltr;
}
.product-gallery figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 20px; background: #edf4ff; }
.product-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gallery-main { grid-row: 1 / 3; aspect-ratio: 1.23 / 1; }
.gallery-secondary, .gallery-phone { min-height: 280px; }
.gallery-phone { background: var(--blue) !important; }
.gallery-phone img { width: 44%; margin-inline: auto; object-fit: cover; object-position: top; box-shadow: 0 15px 45px rgba(7, 22, 48, .35); }
.product-gallery figcaption { position: absolute; right: 13px; bottom: 13px; padding: 8px 10px; color: var(--ink); background: rgba(255, 255, 255, .92); font-size: .64rem; font-weight: 800; direction: rtl; }
.product-gallery figcaption b { margin-left: 7px; color: var(--blue); direction: ltr; }
.ai-principles { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.ai-principles > p { max-width: 460px; margin: 0; color: rgba(255, 255, 255, .62); font-size: .8rem; }
.ai-principles > p b { color: var(--white); }
.project-ai .project-tags { margin: 0; justify-content: flex-end; direction: ltr; }
.project-ai .project-tags li { color: rgba(255, 255, 255, .67); border-color: var(--dark-line); }

.process { padding-block: 74px 110px; color: var(--ink); background: var(--paper); }
.process .page-shell {
  position: relative;
  overflow: hidden;
  padding: 78px 72px 92px;
  border-radius: 64px;
  background:
    radial-gradient(circle at 4% 100%, rgba(36, 88, 245, .12), transparent 21rem),
    #e8f0ff;
}
.process .page-shell::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border: 58px solid rgba(36, 88, 245, .08);
  border-radius: 50%;
  pointer-events: none;
}
.process-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 48px;
  align-items: end;
}
.process-heading .section-number { margin: 0 0 8px; color: var(--blue); }
.process-heading h2 {
  max-width: 760px;
  font-size: clamp(2.65rem, 3.8vw, 4.1rem);
  line-height: .94;
}
.process-heading h2 em { color: var(--blue); }
.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.process-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 41px;
  right: 4%;
  left: 4%;
  height: 54px;
  border-top: 2px solid rgba(36, 88, 245, .2);
  border-radius: 50%;
  transform: rotate(-1.5deg);
}
.process-grid article {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
}
.process-grid article:nth-child(even) { margin-top: 48px; }
.process-grid span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(36, 88, 245, .2);
  font-size: .67rem;
  font-weight: 800;
  direction: ltr;
}
.process-grid h3 { margin: 24px 0 8px; font-size: 1.25rem; line-height: 1.1; }
.process-grid p { max-width: 220px; margin: 0; color: var(--muted); font-size: .76rem; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 84px; align-items: start; }
.about-heading { grid-column: 1 / -1; }
.about-heading h2 { max-width: 1020px; font-size: clamp(3.4rem, 6.2vw, 6.5rem); line-height: .88; }
.about-copy { max-width: 550px; }
.about-lead { margin: 0 0 22px; color: var(--ink); font-size: 1.3rem; font-weight: 700; line-height: 1.35; }
.about-copy > p:not(.about-lead) { margin: 0; color: var(--muted); }
.availability { margin-top: 34px; display: inline-flex; align-items: center; gap: 9px; color: #16714f; font-size: .73rem; font-weight: 800; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: #28b77c; box-shadow: 0 0 0 5px rgba(40, 183, 124, .12); }
.toolbox { border-top: 3px solid var(--ink); }
.toolbox > p { margin: 0; padding: 14px 0; color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .13em; direction: ltr; text-align: right; }
.toolbox div { padding: 17px 0; border-top: 1px solid var(--line); }
.toolbox b, .toolbox span { display: block; direction: ltr; text-align: right; }
.toolbox b { font-size: .83rem; }
.toolbox span { margin-top: 3px; color: var(--muted); font-size: .68rem; }

.contact { color: var(--white); background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.contact-title .section-number { color: #8eb1ff; }
.contact-title h2 { font-size: clamp(3.8rem, 7vw, 7.5rem); }
.contact-title h2 em { color: #8eb1ff; }
.contact-action { max-width: 450px; padding-bottom: 8px; }
.contact-action > p { margin: 0 0 28px; color: rgba(255, 255, 255, .62); font-size: 1.05rem; }
.button-light { color: var(--ink); background: var(--white); }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 11px; }
.button-whatsapp { color: var(--white); border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .07); }
.button-whatsapp:hover { background: rgba(255, 255, 255, .12); }
.button-instagram {
  color: var(--white);
  border-color: rgba(255, 255, 255, .24);
  background: linear-gradient(135deg, rgba(131, 58, 180, .38), rgba(225, 48, 108, .3) 55%, rgba(252, 175, 69, .22));
  direction: ltr;
}
.button-instagram:hover { background: linear-gradient(135deg, rgba(131, 58, 180, .55), rgba(225, 48, 108, .46) 55%, rgba(252, 175, 69, .35)); }
.button-instagram .instagram-mark { width: 18px; height: 18px; border-width: 1.7px; border-radius: 6px; }
.button-instagram .instagram-mark::before { inset: 4px; border-width: 1.5px; }
.button-instagram .instagram-mark::after { top: 3px; right: 3px; width: 2px; height: 2px; }
.contact-links { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 18px; }
.contact-links button, .contact-links a { padding: 0; border: 0; color: rgba(255, 255, 255, .68); background: transparent; text-decoration: underline; text-underline-offset: 5px; cursor: pointer; font-size: .7rem; font-weight: 700; }
.email { margin-top: 13px; display: block; color: rgba(255, 255, 255, .38); font-size: .68rem; direction: ltr; text-align: right; }

.site-footer { min-height: 150px; padding: 35px 0; display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: center; }
.site-footer .brand { justify-self: start; }
.site-footer .brand-mark { color: var(--ink); }
.site-footer p { margin: 0; color: var(--muted); font-size: .72rem; direction: ltr; }
.site-footer p b { color: var(--ink); }
.site-footer > a:last-child { justify-self: end; color: var(--blue); text-decoration: none; font-size: .72rem; font-weight: 800; }
.mobile-sticky-cta { display: none; }
.chat-widget-guide {
  position: fixed;
  z-index: 2147482999;
  right: 112px;
  bottom: 26px;
  max-width: 230px;
  padding: 12px 40px 12px 16px;
  color: var(--ink);
  border: 1px solid rgba(7, 22, 48, .1);
  border-radius: 18px 18px 5px 18px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 50px rgba(7, 22, 48, .24);
  opacity: 0;
  transform: translateY(8px) scale(.97);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.chat-widget-guide[hidden] { display: none; }
.chat-widget-guide.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.chat-widget-guide span, .chat-widget-guide b { display: block; }
.chat-widget-guide span { color: var(--blue); font-size: .64rem; font-weight: 800; }
.chat-widget-guide b { margin-top: 2px; font-size: .82rem; line-height: 1.25; }
.chat-widget-guide i {
  position: absolute;
  right: 15px;
  bottom: 11px;
  color: var(--blue);
  font-size: 1.2rem;
  font-style: normal;
}
iframe[title="Website chat"].chat-widget-attention {
  filter: drop-shadow(0 0 12px rgba(36, 88, 245, .68));
}
.toast { position: fixed; z-index: 300; right: 50%; bottom: 25px; padding: 11px 17px; color: var(--white); background: var(--blue); opacity: 0; transform: translate(50%, 18px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.visible { opacity: 1; transform: translate(50%, 0); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 3px solid #84a9ff; outline-offset: 4px; }
@keyframes solutions-open {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .main-nav a { padding-inline: 11px; font-size: .78rem; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 40px; }
  .hero h1 { font-size: clamp(3.7rem, 7.4vw, 6.3rem); }
  .project-layout { grid-template-columns: .85fr 1.15fr; gap: 38px; }
  .phone-proof { right: -14px; bottom: -20px; }
  .featured-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .process-grid article, .process-grid article:nth-child(even) { margin-top: 0; padding-bottom: 18px; }
}

@media (max-width: 860px) {
  .page-shell { width: min(var(--shell), calc(100% - 32px)); }
  .section { padding: 105px 0; }
  .site-header { height: 76px; padding-inline: 16px; }
  .brand-mark { width: 38px; height: 38px; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; top: 76px; right: 0; left: 0; padding: 16px 24px 24px; display: grid; gap: 0; color: var(--ink); border: 0; border-radius: 0 0 25px 25px; background: var(--white); box-shadow: 0 28px 70px rgba(7, 22, 48, .3); backdrop-filter: none; opacity: 0; transform: translateY(-15px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a, .main-nav a:not(.nav-contact) { min-height: 50px; padding: 14px 4px; color: var(--ink); border-radius: 0; border-top: 1px solid var(--line); }
  .main-nav a:not(.nav-contact):hover { color: var(--blue); background: transparent; box-shadow: none; transform: none; }
  .main-nav .nav-contact { margin-top: 13px; color: var(--white); border: 0; border-radius: 999px; background: var(--blue); box-shadow: 0 13px 30px rgba(36, 88, 245, .22); }
  .main-nav .nav-contact:hover { color: var(--white); background: var(--ink); }
  .menu-button { position: relative; z-index: 2; }
  .hero::after { top: 47%; right: 0; width: 100%; height: 53%; clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%); }
  .hero-grid { min-height: auto; padding-top: 125px; grid-template-columns: 1fr; gap: 62px; }
  .hero-copy { text-align: center; }
  .overline, .hero-actions { justify-content: center; }
  .hero h1, .hero-intro { margin-inline: auto; }
  .hero-portrait { width: min(620px, 100%); margin-inline: auto; }
  .portrait-field { height: min(670px, 78vw); min-height: 510px; }
  .proof-row { bottom: 0; margin-bottom: 30px; grid-template-columns: 1fr; gap: 18px; }
  .experience-proof { padding: 0 0 18px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .experience-proof span { max-width: none; }
  .section-intro { grid-template-columns: 1fr; gap: 30px; }
  .section-intro .section-number { grid-column: auto; }
  .featured-ai-intro { align-items: flex-start; flex-direction: column; gap: 14px; }
  .services-intro { grid-template-columns: 1fr; gap: 35px; }
  .services-intro h2 { max-width: 720px; }
  .services-intro-copy { max-width: 680px; }
  .all-solutions { padding: 32px 27px 34px; }
  .industries { grid-template-columns: 1fr; gap: 25px; }
  .project { padding: 23px; }
  .project-layout { grid-template-columns: 1fr; gap: 45px; }
  .project-copy { max-width: 650px; }
  .product-window, .orna-showcase { order: -1; }
  .phone-proof { right: 15px; bottom: -23px; }
  .orna-phone-proof { right: 15px; bottom: -23px; }
  .project-orna { padding: 29px; }
  .project-ai { padding: 29px; }
  .ai-heading { grid-template-columns: 1fr; gap: 35px; }
  .product-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .gallery-main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 1.5 / 1; }
  .gallery-secondary, .gallery-phone { min-height: 320px; }
  .ai-principles { align-items: flex-start; flex-direction: column; }
  .project-ai .project-tags { justify-content: flex-start; }
  .process { padding-block: 54px 84px; }
  .process .page-shell { padding: 60px 44px 64px; border-radius: 46px; }
  .process-heading { grid-template-columns: 1fr; gap: 12px; }
  .process-heading h2 { max-width: 680px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-heading { grid-column: auto; }
  .about-copy, .contact-action { max-width: 650px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
  .mobile-sticky-cta { position: fixed; z-index: 90; right: 12px; bottom: 12px; left: 12px; min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--white); background: var(--blue); box-shadow: 0 16px 40px rgba(7, 22, 48, .28); text-decoration: none; font-weight: 800; transition: opacity .2s ease, transform .2s ease; }
  .mobile-sticky-cta.is-hidden { opacity: 0; transform: translateY(75px); pointer-events: none; }
}

@media (max-width: 580px) {
  body { font-size: 16px; }
  .page-shell { width: min(var(--shell), calc(100% - 24px)); }
  .section { padding: 88px 0; }
  .brand-name { font-size: .9rem; }
  .hero-grid { padding-top: 105px; padding-bottom: 35px; }
  .overline { margin-bottom: 22px; gap: 10px; font-size: .56rem; }
  .overline span { gap: 10px; }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 5.1rem); }
  .hero-intro { margin-top: 24px; font-size: 1rem; }
  .hero-actions { margin-top: 27px; gap: 17px; }
  .hero-actions .button { width: 100%; }
  .text-link { width: 100%; }
  .portrait-field { min-height: 420px; height: 118vw; max-height: 560px; }
  .portrait-field::before { inset: 14px; }
  .portrait-field img { width: 112%; }
  .portrait-word { top: 10%; font-size: 7rem; }
  .portrait-caption { right: 25px; bottom: 24px; }
  .hero-instagram { top: 14px; left: 14px; min-height: 68px; padding: 11px 13px; grid-template-columns: 28px auto 24px; gap: 10px; border-radius: 19px; }
  .hero-instagram .instagram-mark { width: 28px; height: 28px; border-radius: 9px; }
  .hero-instagram-copy b { font-size: .78rem; }
  .hero-instagram-copy small { margin-top: 5px; font-size: .58rem; }
  .hero-instagram .social-arrow { width: 24px; height: 24px; }
  .portrait-foot { min-height: 60px; flex-wrap: wrap; justify-content: center; row-gap: 1px; }
  .proof-row { bottom: 0; margin-bottom: 24px; padding: 20px; gap: 15px; border-radius: 24px; }
  .experience-proof { justify-content: flex-start; }
  .experience-proof > strong { font-size: 2.8rem; }
  .delivery-proof { grid-template-columns: 1fr; }
  .delivery-proof article { padding: 14px 0; border-inline-start: 0; border-top: 1px solid var(--line); }
  .delivery-proof article:first-child { border-top: 0; }
  .delivery-proof strong { font-size: .88rem; }
  .delivery-proof span { font-size: .71rem; }
  .section-intro { margin-bottom: 52px; }
  .section-intro h2, .about-heading h2, .contact-title h2 { font-size: clamp(3.3rem, 16vw, 5.4rem); }
  .services-intro { margin-bottom: 40px; }
  .services-intro h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .featured-services { grid-template-columns: 1fr; gap: 13px; }
  .service-card { min-height: 355px; padding: 23px; border-radius: 25px; }
  .service-card h3 { margin-top: 34px; }
  .all-solutions { margin-inline: -4px; padding: 24px 18px 26px; border-radius: 27px; }
  .all-solutions-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .solution-category summary { min-height: 70px; padding: 16px 2px; }
  .solution-category summary span { gap: 10px; font-size: .93rem; }
  .solution-category summary small { white-space: nowrap; }
  .solution-category summary small::after { margin-right: 9px; }
  .solution-list { grid-template-columns: 1fr; }
  .solution-list article { padding: 17px 2px; }
  .industries { margin-top: 25px; padding: 23px 18px; border-radius: 22px; }
  .project, .project-ai, .project-orna { margin-inline: -4px; padding: 18px; }
  .project + .project { margin-top: 70px; }
  .project-layout { padding: 38px 0 34px; }
  .project h3, .project-ai h2 { font-size: 3.8rem; }
  .product-window { margin-inline: -8px; }
  .product-window > img:not(.phone-proof) { aspect-ratio: 1 / 1; }
  .phone-proof { right: 10px; width: 29%; border-width: 5px; }
  .orna-showcase { margin-inline: -8px; padding: 8px; border-radius: 23px; }
  .orna-showcase > img:first-child { aspect-ratio: 1.05 / 1; border-radius: 16px; }
  .orna-phone-proof { right: 10px; bottom: -18px; width: 29%; border-width: 5px; border-radius: 15px; }
  .project-result { flex-wrap: wrap; gap: 9px; }
  .ai-heading { padding: 48px 0 42px; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-main { grid-column: auto; aspect-ratio: 1.05 / 1; }
  .gallery-secondary, .gallery-phone { min-height: 300px; }
  .gallery-phone img { width: 50%; }
  .process { padding-block: 32px 66px; }
  .process .page-shell { padding: 45px 23px 50px; border-radius: 34px; }
  .process .page-shell::after { width: 210px; height: 210px; left: -100px; bottom: -110px; border-width: 38px; }
  .process-heading { margin-bottom: 45px; }
  .process-heading h2 { font-size: clamp(2.7rem, 12vw, 3.8rem); line-height: .98; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-grid::before {
    display: block;
    top: 8px;
    right: 23px;
    bottom: 28px;
    left: auto;
    width: 2px;
    height: auto;
    border: 0;
    border-radius: 0;
    background: rgba(36, 88, 245, .18);
    transform: none;
  }
  .process-grid article, .process-grid article:nth-child(even) { min-height: 0; margin: 0; padding: 0 66px 34px 0; }
  .process-grid article:last-child { padding-bottom: 0; }
  .process-grid span { position: absolute; top: 0; right: 0; width: 46px; height: 46px; }
  .process-grid h3 { margin: 2px 0 7px; font-size: 1.2rem; }
  .process-grid p { max-width: 250px; }
  .about-lead { font-size: 1.15rem; }
  .contact-action .button { width: 100%; }
  .chat-demo-cta { margin-inline: auto; }
  .chat-widget-guide { right: 16px; bottom: 112px; max-width: calc(100vw - 32px); }
  .site-footer { min-height: 170px; padding-bottom: 78px; grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer .brand, .site-footer > a:last-child { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
