:root {
  --font-sans: "Segoe UI", Arial, "Noto Sans", "Noto Sans Hebrew", "Helvetica Neue", sans-serif;
  --bg: #08090c;
  --bg-2: #0d0f14;
  --surface: rgba(17, 19, 24, 0.74);
  --surface-solid: #111318;
  --surface-soft: #171a21;
  --line: rgba(216, 221, 229, 0.14);
  --line-strong: rgba(215, 181, 109, 0.38);
  --text: #f4f6f8;
  --muted: #a8afba;
  --muted-2: #747c89;
  --gold: #d7b56d;
  --gold-soft: rgba(215, 181, 109, 0.14);
  --silver: #d8dde5;
  --green: #35e89a;
  --green-soft: rgba(53, 232, 154, 0.12);
  --danger: #ff7373;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --max: 1160px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(215, 181, 109, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 0%, rgba(53, 232, 154, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--bg), #050608 72%, #07080b);
  line-height: 1.6;
}


html[lang="he"] {
  --font-sans: Arial, "Noto Sans Hebrew", "Segoe UI", sans-serif;
}

html[lang="ru"],
html[lang="en"] {
  --font-sans: "Segoe UI", Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--font-sans);
}

button {
  cursor: pointer;
}

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


body,
button,
input,
textarea,
select,
.custom-select-options li,
.custom-select-value,
.btn,
.nav-link,
.language-btn {
  font-family: var(--font-sans);
}

::selection {
  background: rgba(215, 181, 109, 0.35);
  color: var(--text);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 12, 0.42);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 9, 12, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(216, 221, 229, 0.16), rgba(215, 181, 109, 0.16));
  color: var(--gold);
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 40px rgba(215, 181, 109, 0.1);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.nav-panel {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}


.language-switch {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 4px;
  margin-left: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-btn {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.language-btn:hover,
.language-btn.is-active,
.language-btn[aria-pressed="true"] {
  background: rgba(215, 181, 109, 0.18);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(215, 181, 109, 0.2);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  padding: 104px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-height) + 70px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, #000, transparent 74%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -32% -20%;
  height: 440px;
  background: radial-gradient(ellipse at center, rgba(215, 181, 109, 0.16), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 9vw, 7.75rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(215, 181, 109, 0.64);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.98), rgba(185, 141, 58, 0.98));
  color: #11100d;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(215, 181, 109, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(215, 181, 109, 0.25);
}

.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(53, 232, 154, 0.56);
  outline-offset: 3px;
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.88rem;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(216, 221, 229, 0.32);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 246, 248, 0.78);
  white-space: nowrap;
}

.hero-meta span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(215, 181, 109, 0.48);
  opacity: 0.82;
}

.hero-card {
  justify-self: end;
  width: min(100%, 420px);
}

.signal-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(17, 19, 24, 0.9), rgba(10, 11, 15, 0.94));
  box-shadow: var(--shadow);
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(215, 181, 109, 0.16);
  border-radius: 26px;
  pointer-events: none;
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -24% -40%;
  height: 230px;
  background: radial-gradient(circle, rgba(215, 181, 109, 0.18), transparent 66%);
}

.signal-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px var(--green-soft), 0 0 24px rgba(53, 232, 154, 0.72);
}

.signal-mark {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(216, 221, 229, 0.14), rgba(215, 181, 109, 0.12));
  color: var(--gold);
  font-size: 5rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
}

.signal-card h2 {
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.signal-card p {
  color: var(--muted);
}


.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow),
.about-copy,
.studio-panel p,
.creative-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.capability-item,
.timeline-step,
.contact-form,
.creative-card,
.studio-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.026));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 265px;
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 181, 109, 0.42);
  background: linear-gradient(180deg, rgba(215, 181, 109, 0.11), rgba(255, 255, 255, 0.028));
}

.card-index {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card p,
.timeline-step p,
.capability-item span,
.form-status,
.contact-note {
  color: var(--muted);
}

.section-split {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.026), transparent);
}

.split-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 900;
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  width: 100%;
  padding: 22px;
  border-radius: 20px;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.capability-item:hover,
.capability-item:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(215, 181, 109, 0.5);
  background: linear-gradient(180deg, rgba(215, 181, 109, 0.11), rgba(255, 255, 255, 0.03));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(215, 181, 109, 0.08);
  outline: none;
}

.capability-item:active {
  transform: translateY(-1px);
}

.capability-item strong {
  color: var(--text);
}

.studio-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(53, 232, 154, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.studio-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

.timeline-step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius);
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.creative-mode {
  padding-block: 70px;
}

.creative-card {
  padding: 44px;
  border-color: rgba(53, 232, 154, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(53, 232, 154, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.026));
}

.creative-card h2 {
  max-width: 860px;
}

.creative-card p {
  max-width: 820px;
  margin-bottom: 0;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  margin: 0;
}

.contact-section {
  padding-bottom: 80px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 30px;
}

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

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

.contact-form span {
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.custom-select-value {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.custom-select.has-value .custom-select-value {
  color: var(--text);
}

.custom-select-arrow {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-trigger:focus-visible,
.custom-select.is-open .custom-select-trigger {
  border-color: rgba(215, 181, 109, 0.54);
  background: rgba(0, 0, 0, 0.32);
  box-shadow: 0 0 0 4px rgba(215, 181, 109, 0.1);
}

.custom-select.is-invalid .custom-select-trigger {
  border-color: rgba(255, 115, 115, 0.72);
}

.custom-select-options {
  position: absolute;
  inset: calc(100% + 8px) 0 auto 0;
  z-index: 10;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(216, 221, 229, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(17, 19, 24, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  max-height: 248px;
  overflow-y: auto;
}

.custom-select.is-open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-options li {
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  padding: 10px 11px;
  transition: background 140ms ease, color 140ms ease;
}

.custom-select-options li:hover,
.custom-select-options li:focus,
.custom-select-options li[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(215, 181, 109, 0.24), rgba(53, 232, 154, 0.1));
  color: var(--text);
  outline: none;
}


.contact-form select {
  appearance: none;
  background-color: rgba(0, 0, 0, 0.24);
  color: var(--text);
  color-scheme: dark;
}

.contact-form select option {
  background: #111318;
  color: #f4f6f8;
}

.contact-form select option:checked {
  background: #2a2418;
  color: #f4f6f8;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(215, 181, 109, 0.54);
  background: rgba(0, 0, 0, 0.32);
}

.contact-form .is-invalid {
  border-color: rgba(255, 115, 115, 0.72);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

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

.form-status.is-success,
.contact-note.is-success {
  color: var(--green);
}

.contact-note {
  margin-top: 16px;
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted-2);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--muted);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .brand-copy,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .about-copy,
html[dir="rtl"] .contact-form,
html[dir="rtl"] .capability-item,
html[dir="rtl"] .timeline-step,
html[dir="rtl"] .creative-card,
html[dir="rtl"] .studio-panel,
html[dir="rtl"] .signal-card {
  direction: rtl;
}

html[dir="rtl"] .brand-name,
html[dir="rtl"] .signal-topline,
html[dir="rtl"] .studio-tags {
  direction: ltr;
}

html[dir="rtl"] .hero-meta {
  direction: rtl;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-actions {
  justify-content: flex-start;
}

html[dir="rtl"] .custom-select-trigger {
  text-align: right;
}

html[dir="rtl"] .text-link span[aria-hidden="true"] {
  transform: rotate(180deg);
}

html[dir="rtl"] .skip-link {
  right: 12px;
  left: auto;
}


.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.preview-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 5, 0.78);
  backdrop-filter: blur(18px);
}

.preview-dialog {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 181, 109, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(23, 26, 33, 0.98), rgba(8, 9, 12, 0.98));
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.62);
  transform: translateY(18px) scale(0.975);
  transition: transform 260ms ease;
}

.preview-modal.is-open .preview-dialog {
  transform: translateY(0) scale(1);
}

.preview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 72px 18px 28px;
  border-bottom: 1px solid var(--line);
}

.preview-head .eyebrow {
  margin: 0;
}

.preview-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
}

.preview-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.preview-close:hover,
.preview-close:focus-visible {
  transform: rotate(90deg);
  border-color: rgba(215, 181, 109, 0.5);
  background: rgba(215, 181, 109, 0.12);
  outline: none;
}

.preview-image-frame {
  overflow: hidden;
  padding: 18px;
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
}

.preview-image-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 48px - 94px - 36px);
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

html[dir="rtl"] .preview-head {
  direction: rtl;
  padding: 24px 28px 18px 72px;
}

html[dir="rtl"] .preview-close {
  right: auto;
  left: 18px;
}


@media (max-width: 640px) {
  .preview-dialog {
    max-height: calc(100vh - 24px);
  }

  .preview-image-frame {
    overflow: auto;
    display: block;
    max-height: calc(100vh - 24px - 96px);
    -webkit-overflow-scrolling: touch;
  }

  .preview-image-frame img {
    width: 100%;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .preview-modal {
    padding: 12px;
  }

  .preview-dialog {
    border-radius: 24px;
  }

  .preview-head {
    display: grid;
    align-items: start;
    padding: 22px 64px 16px 18px;
  }

  html[dir="rtl"] .preview-head {
    padding: 22px 18px 16px 64px;
  }

  .preview-image-frame {
    padding: 12px;
  }

  .preview-image-frame img {
    border-radius: 18px;
  }
}

@media (max-width: 980px) {
  :root {
  --font-sans: "Segoe UI", Arial, "Noto Sans", "Noto Sans Hebrew", "Helvetica Neue", sans-serif;
    --header-height: 76px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(10, 11, 15, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link,
  .nav-panel .btn {
    justify-content: flex-start;
    width: 100%;
  }

  .language-switch {
    justify-content: center;
    width: 100%;
    margin: 8px 0 0;
  }

  .language-btn {
    flex: 1;
  }

  .hero-grid,
  .split-grid,
  .about-grid,
  .contact-grid,
  .studio-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: stretch;
  }

  .four-cols,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-tags {
    justify-content: flex-start;
  }

  .capability-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 38px);
  }

  h1 {
    font-size: clamp(3.1rem, 19vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .four-cols,
  .timeline {
    grid-template-columns: 1fr;
  }

  .signal-card {
    min-height: auto;
    padding: 24px;
  }

  .signal-topline {
    margin-bottom: 42px;
  }

  .signal-mark {
    width: 100px;
    height: 100px;
    font-size: 3.8rem;
  }

  .studio-panel,
  .creative-card,
  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Hebrew typography cleanup: keep Hebrew UI consistent and prevent mixed browser fallback fonts. */
html[lang="he"],
html[lang="he"] body,
html[lang="he"] button,
html[lang="he"] input,
html[lang="he"] textarea,
html[lang="he"] select,
html[lang="he"] .custom-select-trigger,
html[lang="he"] .custom-option,
html[lang="he"] .btn,
html[lang="he"] .nav-link,
html[lang="he"] .brand-text,
html[lang="he"] .contact-form,
html[lang="he"] .contact-form * {
  font-family: Arial, "Segoe UI", sans-serif !important;
  letter-spacing: 0;
}

html[lang="he"] .contact-form span,
html[lang="he"] .custom-select-label,
html[lang="he"] .custom-option,
html[lang="he"] .contact-form input,
html[lang="he"] .contact-form textarea {
  font-weight: 500;
}

html[lang="he"] .contact-form .btn,
html[lang="he"] .contact-form button[type="submit"] {
  font-weight: 700;
  direction: rtl;
  unicode-bidi: plaintext;
}

html[lang="he"] .contact-form input,
html[lang="he"] .contact-form textarea,
html[lang="he"] .custom-select-trigger {
  text-align: right;
}

html[lang="he"] .contact-form input[type="email"] {
  direction: ltr;
  text-align: right;
}

/* Final Hebrew font normalization: force the same Hebrew rendering used by the form across every Hebrew UI element. */
html[lang="he"],
html[lang="he"] body,
html[lang="he"] body *:not(svg):not(path) {
  font-family: Arial, "Segoe UI", sans-serif !important;
  letter-spacing: 0 !important;
}

html[lang="he"] .language-btn,
html[lang="he"] .nav-link,
html[lang="he"] .btn,
html[lang="he"] .btn-small,
html[lang="he"] .btn-ghost,
html[lang="he"] .section-eyebrow,
html[lang="he"] .project-card-title,
html[lang="he"] .service-card-title,
html[lang="he"] .capability-title,
html[lang="he"] .process-step-title,
html[lang="he"] .custom-select-value,
html[lang="he"] .custom-select-label,
html[lang="he"] .custom-option,
html[lang="he"] label,
html[lang="he"] input,
html[lang="he"] textarea {
  font-family: Arial, "Segoe UI", sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html[lang="he"] .language-btn,
html[lang="he"] .nav-link,
html[lang="he"] .btn,
html[lang="he"] .btn-small,
html[lang="he"] .btn-ghost {
  font-weight: 700 !important;
}

html[lang="he"] .section-eyebrow,
html[lang="he"] .project-card-title,
html[lang="he"] .service-card-title,
html[lang="he"] .capability-title,
html[lang="he"] .process-step-title {
  font-weight: 700 !important;
}

/* Hebrew small-text final normalization: match the contact form label rendering. */
html[lang="he"] .eyebrow,
html[lang="he"] .hero-meta,
html[lang="he"] .hero-meta span,
html[lang="he"] .nav-link,
html[lang="he"] .language-btn,
html[lang="he"] .btn,
html[lang="he"] .btn-small,
html[lang="he"] .btn-ghost,
html[lang="he"] .text-link,
html[lang="he"] .brand-name,
html[lang="he"] .section-heading .eyebrow,
html[lang="he"] .section-heading p,
html[lang="he"] .service-card h3,
html[lang="he"] .service-card p,
html[lang="he"] .capability-item h3,
html[lang="he"] .capability-item p,
html[lang="he"] .timeline-step h3,
html[lang="he"] .timeline-step p,
html[lang="he"] .signal-topline,
html[lang="he"] .signal-card h3,
html[lang="he"] .signal-card p,
html[lang="he"] .studio-tags,
html[lang="he"] .studio-tags span,
html[lang="he"] .contact-note,
html[lang="he"] .form-status,
html[lang="he"] .site-footer,
html[lang="he"] .footer-grid,
html[lang="he"] .preview-head,
html[lang="he"] .preview-head .eyebrow,
html[lang="he"] .preview-close,
html[lang="he"] .custom-select-value,
html[lang="he"] .custom-select-label,
html[lang="he"] .custom-option {
  font-family: Arial, "Segoe UI", sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-stretch: normal !important;
  font-kerning: normal !important;
  text-rendering: auto !important;
}

html[lang="he"] .service-card p,
html[lang="he"] .capability-item p,
html[lang="he"] .timeline-step p,
html[lang="he"] .signal-card p,
html[lang="he"] .section-heading p,
html[lang="he"] .contact-note,
html[lang="he"] .site-footer {
  font-weight: 500 !important;
}

/* Exact Hebrew requested UI font normalization. */
html[lang="he"] [data-i18n="hero.eyebrow"],
html[lang="he"] [data-i18n="hero.primaryCta"],
html[lang="he"] [data-i18n="hero.secondaryCta"],
html[lang="he"] [data-i18n="hero.meta.software"],
html[lang="he"] [data-i18n="hero.meta.automation"],
html[lang="he"] [data-i18n="hero.meta.ai"],
html[lang="he"] [data-i18n="nav.services"],
html[lang="he"] [data-i18n="services.eyebrow"],
html[lang="he"] [data-i18n="nav.projects"],
html[lang="he"] [data-i18n="work.eyebrow"],
html[lang="he"] [data-i18n="work.link"],
html[lang="he"] [data-i18n="nav.cta"],
html[lang="he"] [data-i18n="nav.process"],
html[lang="he"] [data-i18n="process.eyebrow"],
html[lang="he"] [data-i18n="nav.about"],
html[lang="he"] [data-i18n="about.eyebrow"],
html[lang="he"] [data-i18n="contact.eyebrow"],
html[lang="he"] [data-i18n="contact.emailCta"],
html[lang="he"] [data-i18n="contact.copyEmail"],
html[lang="he"] [data-i18n="form.submit"],
html[lang="he"] [data-i18n="hero.title"],
html[lang="he"] [data-i18n="footer.tagline"],
html[lang="he"] [data-i18n="footer.top"] {
  font-family: Arial, "Segoe UI", sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-stretch: normal !important;
  font-kerning: auto !important;
  text-rendering: auto !important;
}

/* Match the calmer form label rendering for small Hebrew UI labels. */
html[lang="he"] [data-i18n="hero.eyebrow"],
html[lang="he"] [data-i18n="hero.meta.software"],
html[lang="he"] [data-i18n="hero.meta.automation"],
html[lang="he"] [data-i18n="hero.meta.ai"],
html[lang="he"] [data-i18n="nav.services"],
html[lang="he"] [data-i18n="services.eyebrow"],
html[lang="he"] [data-i18n="nav.projects"],
html[lang="he"] [data-i18n="work.eyebrow"],
html[lang="he"] [data-i18n="work.link"],
html[lang="he"] [data-i18n="nav.process"],
html[lang="he"] [data-i18n="process.eyebrow"],
html[lang="he"] [data-i18n="nav.about"],
html[lang="he"] [data-i18n="about.eyebrow"],
html[lang="he"] [data-i18n="contact.eyebrow"],
html[lang="he"] [data-i18n="footer.tagline"],
html[lang="he"] [data-i18n="footer.top"] {
  font-weight: 500 !important;
}


/* Hebrew final typography reset v3: keep Hebrew readable and consistent. */
html[lang="he"],
html[lang="he"] body,
html[lang="he"] body *:not(svg):not(path) {
  font-family: Arial, "Segoe UI", sans-serif !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-feature-settings: normal !important;
  font-synthesis: weight style !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Small Hebrew UI labels: same font, calmer weight. */
html[lang="he"] .eyebrow,
html[lang="he"] .hero-meta,
html[lang="he"] .hero-meta span,
html[lang="he"] .nav-link,
html[lang="he"] .language-btn,
html[lang="he"] .section-heading .eyebrow,
html[lang="he"] .text-link,
html[lang="he"] .signal-topline,
html[lang="he"] .studio-tags,
html[lang="he"] .studio-tags span,
html[lang="he"] .preview-head .eyebrow,
html[lang="he"] [data-i18n="hero.eyebrow"],
html[lang="he"] [data-i18n="hero.meta.software"],
html[lang="he"] [data-i18n="hero.meta.automation"],
html[lang="he"] [data-i18n="hero.meta.ai"],
html[lang="he"] [data-i18n="hero.meta.production"],
html[lang="he"] [data-i18n="services.eyebrow"],
html[lang="he"] [data-i18n="work.eyebrow"],
html[lang="he"] [data-i18n="work.link"],
html[lang="he"] [data-i18n="nav.services"],
html[lang="he"] [data-i18n="nav.projects"],
html[lang="he"] [data-i18n="nav.process"],
html[lang="he"] [data-i18n="nav.about"],
html[lang="he"] [data-i18n="about.eyebrow"],
html[lang="he"] [data-i18n="process.eyebrow"],
html[lang="he"] [data-i18n="contact.eyebrow"],
html[lang="he"] [data-i18n="footer.top"] {
  font-family: Arial, "Segoe UI", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

/* Hebrew buttons/CTAs: readable, not over-bold. */
html[lang="he"] .btn,
html[lang="he"] .btn-small,
html[lang="he"] .btn-ghost,
html[lang="he"] .contact-form button,
html[lang="he"] [data-i18n="hero.primaryCta"],
html[lang="he"] [data-i18n="hero.secondaryCta"],
html[lang="he"] [data-i18n="nav.cta"],
html[lang="he"] [data-i18n="contact.emailCta"],
html[lang="he"] [data-i18n="contact.copyEmail"],
html[lang="he"] [data-i18n="form.submit"] {
  font-family: Arial, "Segoe UI", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

/* Hebrew form labels and controls: same stack as the requested form-message-label look. */
html[lang="he"] label,
html[lang="he"] .contact-form span,
html[lang="he"] .custom-select-label,
html[lang="he"] .custom-select-value,
html[lang="he"] .custom-option,
html[lang="he"] input,
html[lang="he"] textarea {
  font-family: Arial, "Segoe UI", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

html[lang="he"] input[type="email"] {
  direction: ltr;
  unicode-bidi: plaintext;
}

/* Flag language dropdown */
.language-dropdown {
  position: relative;
  flex: 0 0 auto;
  margin-left: 8px;
  z-index: 80;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-current:hover,
.language-dropdown.is-open .language-current {
  border-color: rgba(215, 181, 109, 0.46);
  background: rgba(215, 181, 109, 0.11);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(215, 181, 109, 0.12);
}

.language-flag {
  width: 22px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 4px 10px rgba(0, 0, 0, 0.22);
}

.language-current-code {
  min-width: 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.language-caret {
  color: var(--gold);
  font-size: 0.75rem;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.language-dropdown.is-open .language-caret {
  transform: translateY(-1px) rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 172px;
  padding: 7px;
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 18px;
  background: rgba(12, 13, 17, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-dropdown.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  font-size: 0.9rem;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease;
}

.language-option:hover,
.language-option.is-active,
.language-option[aria-selected="true"] {
  background: rgba(215, 181, 109, 0.14);
  color: var(--text);
}

html[dir="rtl"] .language-dropdown {
  margin-left: 0;
  margin-right: 8px;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
  transform-origin: top left;
}

html[dir="rtl"] .language-option {
  text-align: right;
}

html[lang="he"] .language-current,
html[lang="he"] .language-current *,
html[lang="he"] .language-option,
html[lang="he"] .language-option * {
  font-family: Arial, "Segoe UI", sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@media (max-width: 820px) {
  .language-dropdown {
    width: 100%;
    margin: 8px 0 0;
  }

  .language-current {
    justify-content: center;
    width: 100%;
  }

  .language-menu {
    position: static;
    display: grid;
    gap: 4px;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.035);
  }

  .language-dropdown:not(.is-open) .language-menu {
    display: none;
  }
}


/* Preview carousel for project examples */
.preview-head > div:first-child {
  min-width: 0;
}

.preview-description {
  margin: 8px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.preview-counter {
  flex: 0 0 auto;
  align-self: start;
  padding: 8px 12px;
  border: 1px solid rgba(215, 181, 109, 0.22);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(215, 181, 109, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.preview-carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 8px;
}

.preview-carousel .preview-image-frame {
  padding: 0;
  width: 100%;
}

.preview-image-frame img {
  opacity: 0;
  transform: translateY(6px) scale(0.992);
  transition: opacity 220ms ease, transform 220ms ease;
}

.preview-image-frame img.is-loaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.preview-nav {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(215, 181, 109, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.preview-nav:hover,
.preview-nav:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 181, 109, 0.56);
  background: rgba(215, 181, 109, 0.14);
  color: var(--gold);
  outline: none;
}

.preview-nav[hidden],
.preview-counter[hidden],
.preview-dots[hidden] {
  display: none !important;
}

.preview-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 4px 18px 18px;
}

.preview-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.preview-dot[aria-current="true"] {
  width: 52px;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  box-shadow: 0 0 22px rgba(215, 181, 109, 0.24);
}

html[dir="rtl"] .preview-description,
html[dir="rtl"] .preview-counter {
  direction: rtl;
}

@media (min-width: 641px) {
  .preview-dialog {
    height: min(900px, calc(100vh - 48px));
  }

  .preview-image-frame img {
    max-height: calc(100vh - 48px - 136px - 54px);
  }
}

@media (max-width: 640px) {
  .preview-description {
    font-size: 0.9rem;
  }

  .preview-counter {
    justify-self: start;
    width: fit-content;
  }

  .preview-carousel {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .preview-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    font-size: 1.65rem;
    background: rgba(8, 9, 12, 0.72);
    backdrop-filter: blur(12px);
  }

  .preview-nav-prev {
    left: 18px;
  }

  .preview-nav-next {
    right: 18px;
  }

  html[dir="rtl"] .preview-nav-prev {
    left: auto;
    right: 18px;
  }

  html[dir="rtl"] .preview-nav-next {
    right: auto;
    left: 18px;
  }

  .preview-dots {
    padding-bottom: 14px;
  }
}

/* Preview modal typography final normalization.
   Keep popup headers/counters/descriptions on the same typography system as the main page. */
.preview-modal,
.preview-modal *:not(svg):not(path) {
  font-family: var(--font-sans) !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-feature-settings: normal !important;
  text-rendering: auto !important;
}

.preview-head,
.preview-head *:not(svg):not(path),
.preview-counter,
.preview-close,
.preview-nav,
.preview-dot {
  font-family: var(--font-sans) !important;
}

.preview-head .eyebrow,
.preview-counter {
  font-weight: 600 !important;
  letter-spacing: normal !important;
}

.preview-head h2 {
  font-weight: 700 !important;
  letter-spacing: normal !important;
}

.preview-description {
  font-weight: 500 !important;
  letter-spacing: normal !important;
}

.preview-close,
.preview-nav {
  font-weight: 700 !important;
}

html[lang="he"] .preview-modal,
html[lang="he"] .preview-modal *:not(svg):not(path) {
  font-family: Arial, "Segoe UI", sans-serif !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

html[lang="he"] .preview-head .eyebrow,
html[lang="he"] .preview-counter {
  font-weight: 600 !important;
}

html[lang="he"] .preview-head h2,
html[lang="he"] .preview-close,
html[lang="he"] .preview-nav {
  font-weight: 700 !important;
}

html[lang="he"] .preview-description {
  font-weight: 500 !important;
}
