/* ============================================================
   Wemore — Cinematic landing
   ============================================================ */

:root {
  --bg: #00030B;
  --bg-alt: #010A14;
  --text: #F9F9F9;
  --text-soft: #E6EAEB;
  --muted: #C4C4C4;
  --faint: #76838A;
  --purple: #00C7BA;
  --purple-light: #01DFAB;
  --cyan: #00ABC9;
  --green: #01DFAB;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Heebo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: rgba(0, 199, 186, .35); color: #fff; }

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

.container { max-width: 1280px; margin: 0 auto; width: 100%; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; top: -48px; right: 16px; z-index: 200;
  background: var(--purple); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 10px; text-decoration: none; font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 100px; text-decoration: none; cursor: pointer;
  font-family: 'Heebo', sans-serif; font-weight: 700; border: none;
  transition: box-shadow .2s, background .2s, border-color .2s;
}
.btn-gradient {
  background: linear-gradient(135deg, #01DFAB 0%, #00C7BA 50%, #00ABC9 100%);
  color: var(--bg);
  box-shadow: 0 0 36px rgba(0, 199, 186, .32);
}
.btn-gradient:hover { box-shadow: 0 0 52px rgba(0, 199, 186, .55); }
.btn-ghost {
  background: rgba(255, 255, 255, .05); color: var(--text); font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .16);
}
.btn-ghost:hover { border-color: var(--cyan); background: rgba(0, 171, 201, .06); }
.btn-outline-green {
  background: rgba(255, 255, 255, .05); color: var(--text); font-weight: 600;
  border: 1px solid rgba(1, 223, 171, .4);
}
.btn-outline-green:hover { background: rgba(1, 223, 171, .1); }
.btn-sm { height: 40px; padding: 0 20px; font-size: 14.5px; }
.btn-md { height: 56px; padding: 0 32px; font-size: 16.5px; }
.btn-lg { height: 58px; padding: 0 34px; font-size: 17px; }
.btn-arrow { font-size: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0, 3, 11, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.is-solid {
  background: rgba(0, 3, 11, .82);
  border-bottom-color: rgba(255, 255, 255, .08);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 34px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 38px); }
.nav-link { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-link:hover, .nav-link:focus-visible { color: var(--text); }

/* ---------- Decorative ---------- */
.orb { position: absolute; pointer-events: none; will-change: transform; }
.orb-purple {
  top: -12%; right: -6%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(0, 199, 186, .30) 0%, rgba(0, 199, 186, .10) 38%, transparent 66%);
}
.orb-cyan {
  bottom: -18%; left: -10%; width: 55vw; height: 55vw; max-width: 680px; max-height: 680px;
  background: radial-gradient(circle, rgba(0, 171, 201, .22) 0%, rgba(1, 223, 171, .10) 40%, transparent 68%);
}
.dot-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .035) 1px, transparent 0);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000, transparent 80%);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px clamp(20px, 4vw, 48px) 80px;
}
.hero-content { position: relative; }
.hero-title {
  margin: 0; font-size: clamp(44px, 8.6vw, 138px); line-height: .98;
  font-weight: 800; letter-spacing: -2px; text-wrap: balance;
}
.gradient-text {
  background: linear-gradient(135deg, #01DFAB 0%, #00C7BA 50%, #00ABC9 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  margin: 30px 0 44px; font-size: clamp(17px, 2.2vw, 23px); line-height: 1.55;
  color: var(--muted); max-width: 560px; font-weight: 300;
}
.hero-stanza {
  margin: 0 0 40px; padding-right: 22px;
  border-right: 2px solid transparent;
  border-image: linear-gradient(to bottom, var(--purple), var(--cyan)) 1;
  max-width: 580px;
}
.hero-stanza p { margin: 0 0 8px; font-size: clamp(14.5px, 1.8vw, 17px); line-height: 1.6; color: var(--faint); font-weight: 300; }
.hero-stanza .stanza-strong { margin-top: 14px; color: var(--text-soft); font-weight: 400; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Intro (מתחת ל-Hero) ---------- */
.intro {
  position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 100px clamp(20px, 4vw, 48px);
}
.manifesto-glow {
  position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%);
  width: 90vw; height: 70vw; max-width: 1100px;
  background: radial-gradient(ellipse at center, rgba(0, 199, 186, .20) 0%, rgba(0, 171, 201, .08) 40%, transparent 70%);
  pointer-events: none;
}
.intro-content { position: relative; max-width: 860px; }
.intro-title {
  margin: 0 0 34px; font-size: clamp(38px, 7.5vw, 104px); line-height: 1.02;
  font-weight: 900; letter-spacing: -2.5px;
}
.intro-text {
  margin: 0 auto 18px; font-size: clamp(16px, 2.1vw, 21px); line-height: 1.7;
  color: var(--muted); max-width: 680px; font-weight: 300;
}
.intro-text b { color: var(--text-soft); font-weight: 600; }

/* ---------- Statement (משפט מעבר) ---------- */
.statement {
  position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 100px clamp(20px, 4vw, 48px);
}
.statement-glow {
  position: absolute; top: -25%; left: 50%; transform: translateX(-50%);
  width: 85vw; height: 60vw; max-width: 1000px;
  background: radial-gradient(ellipse at center, rgba(0, 171, 201, .14) 0%, rgba(0, 199, 186, .10) 45%, transparent 72%);
  pointer-events: none;
}
.statement-content { position: relative; max-width: 980px; }
.statement-title {
  margin: 0 0 32px; font-size: clamp(30px, 5.6vw, 76px); line-height: 1.12;
  font-weight: 800; letter-spacing: -2px; text-wrap: balance;
}
.statement-text {
  margin: 0 auto 22px; font-size: clamp(16px, 2vw, 20px); line-height: 1.7;
  color: var(--muted); max-width: 640px; font-weight: 300;
}
.statement-kicker {
  margin: 0; font-size: clamp(17px, 2.2vw, 23px); font-weight: 700;
  background: linear-gradient(120deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- About ---------- */
.about {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  overflow: hidden; padding: 100px clamp(20px, 4vw, 48px); background: var(--bg-alt);
}
.about-glow {
  position: absolute; top: 0; right: 0; width: 40vw; height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(0, 199, 186, .10), transparent 60%);
  pointer-events: none;
}
.about-grid {
  position: relative; display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 6vw, 90px); align-items: center;
}
.section-title { margin: 0; font-size: clamp(34px, 5vw, 66px); line-height: 1.05; font-weight: 800; letter-spacing: -1.5px; }
.section-title-lg { font-size: clamp(34px, 5.4vw, 76px); line-height: 1; letter-spacing: -1.8px; }
.about-lead { margin: 0 0 22px; font-size: clamp(19px, 2.4vw, 28px); line-height: 1.5; color: var(--text-soft); font-weight: 400; }
.about-body { margin: 0; font-size: clamp(16px, 2vw, 19px); line-height: 1.7; color: var(--muted); font-weight: 300; max-width: 560px; }

/* ---------- Work ---------- */
.work { position: relative; overflow: hidden; padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px); }
.work-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vh, 72px);
}
.work-head-sub { margin: 0; font-size: 17px; line-height: 1.6; color: var(--muted); font-weight: 300; max-width: 320px; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.work-card { text-decoration: none; color: inherit; display: block; }
.work-card-inner {
  position: relative; aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .35s, border-color .35s;
}
.work-card-purple .work-card-inner { background: repeating-linear-gradient(135deg, #03191F, #03191F 11px, #052730 11px, #052730 22px); }
.work-card-cyan   .work-card-inner { background: repeating-linear-gradient(135deg, #04141F, #04141F 11px, #07202D 11px, #07202D 22px); }
.work-card-green  .work-card-inner { background: repeating-linear-gradient(135deg, #031A14, #031A14 11px, #062A20 11px, #062A20 22px); }
.work-card-purple:hover .work-card-inner { box-shadow: 0 30px 60px -30px rgba(0, 199, 186, .6); border-color: rgba(0, 199, 186, .4); }
.work-card-cyan:hover   .work-card-inner { box-shadow: 0 30px 60px -30px rgba(0, 171, 201, .6); border-color: rgba(0, 171, 201, .4); }
.work-card-green:hover  .work-card-inner { box-shadow: 0 30px 60px -30px rgba(1, 223, 171, .6); border-color: rgba(1, 223, 171, .4); }
.work-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.work-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.work-placeholder span { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #5E6E76; letter-spacing: 1px; }
.work-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 3, 11, .92) 0%, transparent 55%); }
.work-meta { position: absolute; bottom: 0; right: 0; left: 0; padding: 24px; }
.work-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 1px; }
.work-tag-purple { color: var(--purple); }
.work-tag-cyan { color: var(--cyan); }
.work-tag-green { color: var(--green); }
.work-title { margin-top: 6px; font-size: 21px; font-weight: 700; }
.work-desc {
  margin: 8px 0 0; font-size: 13px; line-height: 1.55;
  color: var(--muted); font-weight: 300;
}

/* ---------- Services ---------- */
.service {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: clamp(90px, 12vh, 140px) clamp(20px, 4vw, 48px);
}
.service-build { background: var(--bg-alt); }
.orb-service-purple {
  top: -10%; left: -8%; width: 50vw; height: 50vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, rgba(0, 199, 186, .26), transparent 66%);
}
.orb-service-green {
  bottom: -12%; right: -8%; width: 52vw; height: 52vw; max-width: 660px; max-height: 660px;
  background: radial-gradient(circle, rgba(1, 223, 171, .22), rgba(0, 171, 201, .10) 40%, transparent 68%);
}
.service .container { position: relative; }
.service-title {
  margin: 0; font-size: clamp(48px, 11vw, 168px); line-height: .94;
  font-weight: 900; letter-spacing: -3px; max-width: 11ch;
}
.service-title-sm { font-size: clamp(44px, 9.5vw, 150px); line-height: .96; letter-spacing: -2.5px; max-width: none; }
.service-sub {
  margin: 30px 0 34px; font-size: clamp(16px, 2vw, 20px); line-height: 1.65;
  color: var(--muted); max-width: 620px; font-weight: 300;
}
.service-custom { background: var(--bg-alt); }
.orb-service-cyan {
  top: -14%; right: -10%; width: 50vw; height: 50vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(0, 171, 201, .20), transparent 66%);
}

/* רשימת יכולות בשירות */
.service-list {
  margin: 0 0 36px; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 28px; max-width: 720px;
}
.service-list li {
  position: relative; padding-right: 26px;
  font-size: clamp(14.5px, 1.7vw, 16.5px); line-height: 1.5;
  color: var(--text-soft); font-weight: 400;
}
.service-list li::before {
  content: '✓'; position: absolute; right: 0; top: 0;
  font-size: 14px; font-weight: 700;
}
.service-list-purple li::before { color: var(--purple-light); }
.service-list-green li::before { color: var(--green); }
.service-list-cyan li::before { color: var(--cyan); }
.service-note {
  margin: 0 0 32px; font-size: clamp(15px, 1.9vw, 18px); line-height: 1.6;
  color: var(--muted); font-weight: 300; max-width: 560px;
}
.service-note b { color: var(--text); font-weight: 700; }

/* ---------- Process (איך אנחנו עובדים) ---------- */
.process { position: relative; overflow: hidden; padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px); }
.process-head { margin-bottom: clamp(40px, 6vh, 64px); }
.process-steps {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px;
  counter-reset: step;
}
.process-step {
  position: relative; background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .08); border-radius: 18px;
  padding: 26px 24px; transition: border-color .25s;
}
.process-step:hover { border-color: rgba(0, 199, 186, .4); }
.step-num {
  display: inline-block; font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; letter-spacing: 2px; margin-bottom: 14px;
  background: linear-gradient(120deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.process-step h3 { margin: 0 0 10px; font-size: clamp(17px, 2vw, 20px); font-weight: 700; }
.process-step p { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* כרטיס סיום — CTA שמשלים את הרשת */
.process-cta {
  display: flex; flex-direction: column; align-items: flex-start;
  background: linear-gradient(150deg, rgba(0, 199, 186, .14), rgba(0, 171, 201, .07));
  border-color: rgba(0, 199, 186, .35);
}
.process-cta:hover { border-color: rgba(0, 171, 201, .55); }
.process-cta .step-num { -webkit-text-fill-color: initial; color: var(--green); background: none; }
.process-cta-btn { margin-top: auto; }
.process-cta p { margin-bottom: 18px; color: var(--text-soft); }

/* ---------- Why Wemore ---------- */
.why {
  position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: clamp(90px, 12vh, 140px) clamp(20px, 4vw, 48px);
  background: var(--bg-alt);
}
.why-glow {
  position: absolute; bottom: -25%; left: 50%; transform: translateX(-50%);
  width: 85vw; height: 55vw; max-width: 1000px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 199, 186, .16) 0%, rgba(1, 223, 171, .07) 45%, transparent 72%);
}
.why-content { position: relative; max-width: 840px; }
.why-title {
  margin: 0 0 30px; font-size: clamp(36px, 6.5vw, 92px); line-height: 1.04;
  font-weight: 900; letter-spacing: -2.5px;
}
.why-text {
  margin: 0 auto 18px; font-size: clamp(16px, 2vw, 20px); line-height: 1.7;
  color: var(--muted); max-width: 640px; font-weight: 300;
}
.why-text b { color: var(--text-soft); font-weight: 600; }

/* ---------- Fit (למי זה מתאים) ---------- */
.fit { position: relative; overflow: hidden; padding: clamp(80px, 12vh, 130px) clamp(20px, 4vw, 48px); }
.fit-grid {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 6vw, 80px); align-items: center;
}
.fit-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 18px; }
.fit-list li {
  position: relative; padding: 18px 50px 18px 22px;
  background: rgba(255, 255, 255, .025); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px; font-size: clamp(15px, 1.9vw, 17.5px); line-height: 1.6;
  color: var(--muted); font-weight: 300;
}
.fit-list li::before {
  content: '←'; position: absolute; right: 20px; top: 17px;
  color: var(--cyan); font-size: 16px;
}
.fit-list li b { color: var(--text); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { position: relative; overflow: hidden; padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px); }
.faq-container { max-width: 820px; }
.faq-title { margin-bottom: clamp(32px, 5vh, 52px); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  transition: border-color .25s, background .25s;
}
.faq-item[open] { border-color: rgba(0, 199, 186, .45); background: rgba(0, 199, 186, .05); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  font-size: clamp(16px, 2vw, 18.5px); font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255, 255, 255, .07);
  color: var(--cyan); font-size: 18px; font-weight: 400;
  transition: background .25s;
}
.faq-item[open] summary::after { content: '−'; background: rgba(0, 199, 186, .2); }
.faq-item p {
  margin: 0; padding: 0 22px 20px;
  font-size: clamp(14.5px, 1.8vw, 16px); line-height: 1.75;
  color: var(--muted); font-weight: 300; max-width: 660px;
}

/* ---------- Contact ---------- */
.contact { position: relative; overflow: hidden; padding: clamp(90px, 14vh, 160px) clamp(20px, 4vw, 48px); background: var(--bg-alt); }
.contact-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 90vw; height: 60vw; max-width: 1100px;
  background: radial-gradient(ellipse at center, rgba(0, 199, 186, .20) 0%, rgba(0, 171, 201, .08) 45%, transparent 72%);
  pointer-events: none;
}
.contact-grid {
  position: relative; max-width: 1180px; display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.contact-title { margin: 0 0 22px; font-size: clamp(40px, 7vw, 96px); line-height: .98; font-weight: 900; letter-spacing: -2.5px; }
.contact-sub { margin: 0 0 30px; font-size: clamp(16px, 2vw, 19px); line-height: 1.65; color: var(--muted); font-weight: 300; max-width: 440px; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.contact-channel { display: flex; align-items: center; gap: 12px; color: var(--text-soft); text-decoration: none; font-size: 16px; }
.channel-icon {
  width: 34px; height: 34px; border-radius: 9px; background: rgba(255, 255, 255, .06);
  display: flex; align-items: center; justify-content: center; color: var(--cyan); font-size: 15px;
}

/* ---------- Lead form ---------- */
.lead-form {
  background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 24px; padding: clamp(24px, 3vw, 38px);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: flex; flex-direction: column; gap: 8px; }
.form-label > span { font-size: 13px; color: var(--muted); font-weight: 500; }
.form-label input, .form-label textarea, .form-label select {
  border-radius: 12px; border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04); color: var(--text);
  font-family: 'Heebo', sans-serif; font-size: 15.5px; outline: none;
  transition: border-color .2s;
}
.form-label input { height: 50px; padding: 0 16px; }
.form-label select {
  height: 50px; padding: 0 16px; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A39FB8' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: left 16px center;
}
.form-label select option { background: #041018; color: var(--text); }
.form-label textarea { padding: 14px 16px; resize: vertical; min-height: 110px; }
.form-label input:focus, .form-label textarea:focus, .form-label select:focus { border-color: var(--purple); }
.form-label input.is-invalid, .form-label textarea.is-invalid { border-color: #FF6B81; }
.input-ltr { text-align: right; }
.btn-submit { height: 56px; justify-content: center; font-size: 17px; box-shadow: 0 0 36px rgba(0, 199, 186, .32); }
.btn-submit.is-success { background: linear-gradient(120deg, var(--green), var(--cyan)); }
.btn-submit:disabled { opacity: .7; cursor: wait; transform: none; }
.form-status { margin: 0; font-size: 14px; min-height: 20px; color: var(--muted); }
.form-status.is-error { color: #FF6B81; }
.form-status.is-success { color: var(--green); }
.hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Success Modal ---------- */
.modal-backdrop[hidden] { display: none; }
.modal-backdrop {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(0, 2, 8, .75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.success-modal {
  position: relative; width: 100%; max-width: 440px;
  background: linear-gradient(165deg, #06222B, #02101A);
  border: 1px solid rgba(0, 199, 186, .35);
  border-radius: 26px; padding: 46px 36px 38px;
  text-align: center; overflow: hidden;
  box-shadow: 0 40px 90px -20px rgba(0, 199, 186, .45);
}
.modal-close {
  position: absolute; top: 14px; left: 14px;
  width: 34px; height: 34px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .07); color: var(--muted);
  font-size: 14px; cursor: pointer; transition: background .2s, color .2s;
}
.modal-close:hover { background: rgba(255, 255, 255, .14); color: var(--text); }

/* נקודות עיטור סטטיות */
.sm-dot { position: absolute; border-radius: 50%; pointer-events: none; }
.sm-dot-1 { top: 26px; right: 38px; width: 10px; height: 10px; background: var(--green); box-shadow: 0 0 14px var(--green); }
.sm-dot-2 { bottom: 90px; right: 24px; width: 7px; height: 7px; background: var(--purple-light); box-shadow: 0 0 12px var(--purple); }
.sm-dot-3 { top: 90px; left: 30px; width: 8px; height: 8px; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

/* סימן וי */
.sm-check { width: 92px; height: 92px; margin: 0 auto 22px; display: block; }
.sm-circle { fill: none; stroke: var(--green); stroke-width: 4; }
.sm-tick {
  fill: none; stroke: var(--cyan); stroke-width: 5;
  stroke-linecap: round; stroke-linejoin: round;
}

.sm-title {
  margin: 0 0 12px; font-size: clamp(24px, 4vw, 30px); font-weight: 800; letter-spacing: -.5px;
  background: linear-gradient(135deg, #01DFAB 0%, #00C7BA 50%, #00ABC9 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sm-text { margin: 0 0 16px; font-size: 15.5px; line-height: 1.7; color: var(--muted); font-weight: 300; }
.sm-text b { color: var(--text); font-weight: 600; }
.sm-small { margin: 0 0 26px; font-size: 13px; color: var(--faint); }
.sm-small a { color: var(--cyan); text-decoration: none; }
.sm-btn { width: 100%; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid rgba(255, 255, 255, .07); background: var(--bg); }
.footer-inner {
  padding: 54px clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand .logo-img { height: 30px; }
.footer-tagline { font-size: 14px; color: var(--faint); border-right: 1px solid rgba(255, 255, 255, .12); padding-right: 16px; }
.footer-copy { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: #5E6E76; }

/* ---------- Responsive ---------- */
/* svh = גובה ה-viewport הקטן: מונע קפיצות כששורת הכתובת במובייל נפתחת/נסגרת */
@supports (height: 100svh) {
  .hero { min-height: 100svh; }
  .intro, .statement { min-height: 88svh; }
  .about { min-height: 88svh; }
  .why { min-height: 80svh; }
}

@media (max-width: 920px) {
  .about-grid, .contact-grid, .fit-grid { grid-template-columns: 1fr; gap: 34px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
}

/* מובייל / מכשירי מגע */
@media (max-width: 820px), (hover: none) {
  .site-header { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  /* סקשנים קצרים יותר בטלפון — פחות שטח ריק בגלילה */
  .intro, .statement, .why { min-height: auto; }
  .service { min-height: auto; }
  .about { min-height: auto; }
  .service-list { grid-template-columns: 1fr; gap: 9px; }
}

@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav .nav-link { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
}
