:root {
  --ink: #111c26;
  --ink-2: #1e2c38;
  --muted: #65727e;
  --line: #dbe4ea;
  --surface: #ffffff;
  --surface-2: #f4f8fa;
  --blue: #64c7f3;
  --blue-strong: #2aace5;
  --blue-soft: #e6f6fd;
  --silver: #cad5dc;
  --shadow: 0 20px 60px rgba(17, 28, 38, .10);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Noto Sans Hebrew", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.section {
  padding: 100px 0;
}

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

.hidden {
  display: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 228, 234, .7);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 160px;
  height: 66px;
  object-fit: contain;
  object-position: right center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  left: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--blue-strong);
  transition: left .2s ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after {
  left: 0;
}

.nav-cta {
  color: var(--ink);
  background: var(--blue);
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(42, 172, 229, .22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 740px;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background:
    radial-gradient(circle at 13% 25%, rgba(100, 199, 243, .20), transparent 31%),
    linear-gradient(180deg, #fff 0%, #f6fbfd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(17,28,38,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,28,38,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: -.055em;
  max-width: 720px;
}

.hero h1 span {
  color: var(--blue-strong);
}

.hero-copy {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  max-width: 660px;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(42, 172, 229, .28);
}

.button-primary:hover {
  background: #78d0f5;
  box-shadow: 0 18px 40px rgba(42, 172, 229, .34);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.76);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-points span::before {
  content: "●";
  color: var(--blue-strong);
  font-size: 9px;
  margin-left: 8px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-card {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 46px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  isolation: isolate;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(42, 172, 229, .15);
  border-radius: 34px;
}

.logo-card img {
  position: relative;
  z-index: 2;
  width: 86%;
  filter: drop-shadow(0 18px 20px rgba(17, 28, 38, .14));
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  z-index: -1;
}

.glow-one {
  width: 240px;
  height: 240px;
  background: rgba(100,199,243,.36);
  top: -35px;
  left: -30px;
}

.glow-two {
  width: 180px;
  height: 180px;
  background: rgba(202,213,220,.34);
  bottom: -30px;
  right: -20px;
}

.metric {
  position: absolute;
  z-index: 3;
  min-width: 150px;
  padding: 12px 16px;
  border: 1px solid rgba(219,228,234,.85);
  background: rgba(255,255,255,.88);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(17,28,38,.10);
  backdrop-filter: blur(12px);
}

.metric small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric strong {
  display: block;
  font-size: 15px;
}

.metric-one {
  right: -35px;
  top: 78px;
}

.metric-two {
  left: -25px;
  bottom: 72px;
}

.trust-strip {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.trust-items span {
  opacity: .83;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2,
.why-copy h2,
.about-card h2,
.contact h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.services {
  background: #fff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42,172,229,.5);
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.service-card svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 23px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.why-us {
  background: var(--surface-2);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}

.why-copy > p {
  color: var(--muted);
  font-size: 18px;
  margin: 22px 0 0;
  max-width: 650px;
}

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

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
}

.check-list li span {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  font-size: 14px;
  margin-top: 1px;
}

.feature-panel {
  background: var(--ink);
  color: #fff;
  border-radius: 34px;
  padding: 38px 42px;
  box-shadow: var(--shadow);
}

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

.feature-stat span:last-child {
  max-width: 170px;
  color: rgba(255,255,255,.72);
}

.stat-number {
  color: var(--blue);
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.feature-divider {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 28px 0;
}

.process {
  background: #fff;
}

.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid li {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid transparent;
}

.process-grid li:hover {
  border-color: var(--line);
}

.step-number {
  display: block;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.about {
  padding-top: 20px;
}

.about-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
  padding: 70px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(100,199,243,.22), transparent 30%),
    linear-gradient(135deg, var(--ink) 0%, #1f3241 100%);
}

.about-card p {
  margin: 0;
  color: rgba(255,255,255,.77);
  font-size: 18px;
}

.about-card .content-note {
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
}

.contact {
  background: var(--surface-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
  padding: 70px;
  border-radius: 36px;
  color: #fff;
  background: var(--ink);
}

.eyebrow-light {
  color: var(--blue);
}

.contact-copy > p {
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.contact-details {
  margin-top: 34px;
  display: grid;
  gap: 10px;
}

.contact-details a,
.contact-details span {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfe;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-strong);
  box-shadow: 0 0 0 4px rgba(42,172,229,.12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-form .consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 18px;
}

.contact-form .consent span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.contact-form .consent a {
  color: var(--blue-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form .consent a:hover {
  color: var(--ink);
}

.button-full {
  width: 100%;
  border: 0;
}

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

.site-footer {
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 35px;
}

.footer-inner img {
  width: 150px;
  height: 58px;
  object-fit: contain;
  object-position: right center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid rgba(42,172,229,.45);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .section {
    padding: 80px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 12px;
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-grid {
    gap: 50px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .metric-one {
    right: 12px;
  }

  .metric-two {
    left: 12px;
  }

  .trust-items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card,
  .contact-grid {
    padding: 48px;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-inner img {
    object-position: center;
  }

  .footer-links {
    justify-content: center;
  }
}

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

  .section {
    padding: 68px 0;
  }

  .header-inner {
    height: 72px;
  }

  .brand img {
    width: 132px;
    height: 55px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .logo-card {
    border-radius: 30px;
  }

  .metric {
    min-width: 128px;
    padding: 9px 12px;
  }

  .metric strong {
    font-size: 13px;
  }

  .metric-one {
    top: 28px;
  }

  .metric-two {
    bottom: 28px;
  }

  .cards-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .feature-panel {
    padding: 28px 24px;
  }

  .stat-number {
    font-size: 44px;
  }

  .about-card,
  .contact-grid {
    padding: 32px 22px;
    border-radius: 26px;
  }

  .contact-form {
    padding: 22px 18px;
  }
}

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