:root {
  color-scheme: light;
  --blue: #0066cc;
  --blue-dark: #004c99;
  --blue-pale: #eff6ff;
  --blue-faint: #f7fbff;
  --navy: #071d49;
  --ink: #16233d;
  --muted: #5d6980;
  --line: #d7e0ee;
  --soft-line: #e8eef6;
  --surface: #ffffff;
  --shadow: 0 18px 44px rgb(20 49 96 / 11%);
  --shadow-soft: 0 8px 24px rgb(20 49 96 / 8%);
  --radius-lg: 24px;
  --radius: 14px;
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, "Noto Sans Hebrew", "Heebo", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-align: start;
}

button,
input,
select {
  font: inherit;
}

a {
  color: var(--blue-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

:focus-visible {
  outline: 3px solid #003f7d;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #fff;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  inset-inline-start: 10px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  padding: 0.65rem 1rem;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgb(215 224 238 / 75%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img,
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgb(0 122 255 / 18%);
}

.brand-mark {
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  color: #33425d;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.28em;
}

.site-nav .nav-cta {
  border: 1px solid var(--blue);
  border-radius: 9px;
  color: var(--blue);
  padding: 0.42rem 0.76rem;
}

.site-nav .language-link {
  color: var(--blue-dark);
  white-space: nowrap;
}

.site-nav .nav-cta:hover {
  background: var(--blue);
  color: #fff;
}

.hero {
  overflow: hidden;
  padding: 82px 0 66px;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
}

.hero-copy {
  max-width: 570px;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1.17;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.8vw, 4.55rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 3.05rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}

.hero-copy p {
  max-width: 47ch;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  padding: 0.74rem 1.05rem;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
  color: #fff;
}

.button svg {
  width: 21px;
  height: 21px;
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--blue-dark);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  color: var(--blue-dark);
}

.hero-note {
  margin: 19px 0 0;
  color: #758199;
  font-size: 0.88rem;
}

.phone-wrap {
  display: grid;
  place-items: center;
}

.phone {
  width: min(100%, 352px);
  overflow: hidden;
  border: 10px solid #151a27;
  border-radius: 43px;
  background: #fff;
  box-shadow: 0 30px 58px rgb(8 33 74 / 21%);
}

.phone-top {
  display: flex;
  min-height: 60px;
  align-items: end;
  justify-content: space-between;
  padding: 20px 20px 12px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.phone-top span:first-child {
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.phone-screen {
  border-radius: 28px 28px 33px 33px;
  background: #f7f9fc;
  padding: 17px;
}

.phone-heading {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #cfdced;
  border-radius: 9px;
  background: #fff;
}

.phone-tabs span {
  padding: 0.45rem 0.15rem;
  color: #68758a;
  font-size: 0.65rem;
  text-align: center;
}

.phone-tabs .selected {
  background: var(--blue);
  color: #fff;
}

.phone-field {
  display: grid;
  gap: 5px;
  margin-top: 14px;
}

.phone-field label {
  color: #4a5870;
  font-size: 0.7rem;
  font-weight: 700;
}

.phone-input {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d4deeb;
  border-radius: 9px;
  background: #fff;
  padding: 0 10px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.phone-result {
  margin-top: 15px;
  border: 1px solid #c6ddff;
  border-radius: 12px;
  background: #f1f7ff;
  padding: 12px;
}

.phone-result > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: #526079;
  font-size: 0.7rem;
}

.phone-result > div + div {
  margin-top: 8px;
  border-top: 1px solid #d7e6fb;
  padding-top: 8px;
}

.phone-result strong {
  color: var(--blue);
  font-size: 1.05rem;
}

.phone-button {
  width: 100%;
  min-height: 42px;
  margin-top: 15px;
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 47px;
}

.section-heading p,
.section-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}

.feature-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--soft-line);
}

.feature-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--soft-line);
  padding: 22px 0;
}

.feature-icon,
.outline-icon {
  display: grid;
  place-items: center;
  border: 1px solid #bdd7fa;
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
}

.feature-icon {
  width: 52px;
  height: 52px;
}

.feature-icon svg,
.outline-icon svg {
  width: 25px;
  height: 25px;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid #cfdced;
  border-radius: var(--radius-lg);
  background: var(--blue-faint);
  box-shadow: var(--shadow-soft);
  padding: 25px;
}

.feature-preview::after {
  position: absolute;
  top: -58px;
  inset-inline-end: -66px;
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background: rgb(0 122 255 / 9%);
  content: "";
}

.preview-header,
.preview-total,
.preview-row {
  position: relative;
  z-index: 1;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--navy);
  font-weight: 800;
}

.preview-total {
  border: 1px solid #c7ddff;
  border-radius: 15px;
  background: #fff;
  padding: 20px;
}

.preview-total span,
.preview-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.preview-total strong {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  direction: ltr;
  font-size: 2rem;
  text-align: start;
}

.preview-breakdown {
  margin-top: 14px;
  border: 1px solid #d6e1f0;
  border-radius: 15px;
  background: #fff;
  padding: 0 17px;
}

.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
}

.preview-row + .preview-row {
  border-top: 1px solid var(--soft-line);
}

.preview-row strong {
  color: var(--navy);
  direction: ltr;
  font-size: 0.95rem;
}

.privacy-band {
  overflow: hidden;
  background: var(--blue-pale);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}

.privacy-copy p {
  max-width: 54ch;
  color: #4e5f7a;
}

.privacy-points {
  display: grid;
  gap: 15px;
}

.privacy-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: center;
  border: 1px solid #c9dffb;
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}

.privacy-point .outline-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.privacy-point strong,
.privacy-point span {
  display: block;
}

.privacy-point strong {
  color: var(--navy);
}

.privacy-point span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.demo-section {
  padding: 96px 0;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 1.05fr);
  gap: 56px;
  align-items: start;
}

.calculator-copy p {
  max-width: 45ch;
  color: var(--muted);
}

.calculator-note {
  margin-top: 18px;
  color: #6b7890;
  font-size: 0.9rem;
}

.calculator-panel {
  border: 1px solid #cbd9ea;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 25px;
}

.calculator-panel h3 {
  margin-bottom: 20px;
}

.mode-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #cfdaea;
  border-radius: 11px;
}

.mode-picker button {
  min-height: 47px;
  border: 0;
  background: #fff;
  color: #52617a;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
}

.mode-picker button + button {
  border-inline-start: 1px solid #cfdaea;
}

.mode-picker button[aria-pressed="true"] {
  background: var(--blue);
  color: #fff;
}

.calculator-fields {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 16px;
  margin-top: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #3d4d67;
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select {
  min-width: 0;
  min-height: 50px;
  border: 1px solid #cbd7e8;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  padding: 0 12px;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  outline: 3px solid rgb(0 122 255 / 16%);
}

.demo-result {
  display: grid;
  gap: 11px;
  margin-top: 22px;
  border-radius: 15px;
  background: var(--blue-pale);
  padding: 20px;
}

.demo-result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: #475a78;
  font-size: 0.92rem;
}

.demo-result-row + .demo-result-row {
  border-top: 1px solid #c9dffb;
  padding-top: 11px;
}

.demo-result-row strong {
  color: var(--navy);
  direction: ltr;
}

.demo-result-row.final {
  color: var(--navy);
  font-weight: 800;
}

.demo-result-row.final strong {
  color: var(--blue);
  font-size: 1.45rem;
}

.support-strip {
  padding: 84px 0;
  background: var(--navy);
  color: #fff;
}

.support-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.support-strip h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
}

.support-strip p {
  max-width: 55ch;
  margin: 0;
  color: #d7e6ff;
}

.support-strip .button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--blue-dark);
}

.support-strip .button:hover {
  background: #eaf4ff;
}

.page-hero {
  padding: 72px 0 59px;
  border-bottom: 1px solid #d9e5f4;
  background: var(--blue-faint);
}

.page-hero h1 {
  max-width: 18ch;
  margin-bottom: 15px;
  font-size: clamp(2.45rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.09rem;
}

.page-hero-actions {
  margin-top: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  flex: 0 0 auto;
  color: var(--blue);
  content: "+";
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::before {
  content: "−";
}

.faq-answer {
  max-width: 72ch;
  padding: 0 0 23px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.contact-panel {
  margin-top: 48px;
  border: 1px solid #c5dcfa;
  border-radius: var(--radius-lg);
  background: var(--blue-pale);
  padding: clamp(25px, 4vw, 43px);
}

.contact-panel h2 {
  margin-bottom: 11px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.contact-panel p {
  max-width: 66ch;
  margin-bottom: 0;
  color: #4f6180;
}

.steps-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.step-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.doc-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 95px);
}

.doc-toc {
  position: sticky;
  top: 100px;
  border-inline-start: 2px solid #cae0ff;
  padding-inline-start: 16px;
}

.doc-toc strong {
  display: block;
  margin-bottom: 11px;
  color: var(--navy);
}

.doc-toc a {
  display: block;
  margin: 7px 0;
  color: #63718a;
  font-size: 0.92rem;
  text-decoration: none;
}

.doc-toc a:hover {
  color: var(--blue);
}

.doc-content {
  min-width: 0;
}

.doc-section {
  scroll-margin-top: 112px;
  padding: 0 0 36px;
}

.doc-section + .doc-section {
  border-top: 1px solid var(--soft-line);
  padding-top: 36px;
}

.doc-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.7vw, 2rem);
}

.doc-section h3 {
  margin-top: 25px;
}

.doc-section p,
.doc-section li {
  color: #4d5c73;
}

.doc-section ul {
  padding-inline-start: 1.25rem;
}

.doc-section li + li {
  margin-top: 8px;
}

.notice {
  border-inline-start: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue-pale);
  padding: 17px 19px;
}

.notice p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: var(--navy);
  color: #d9e8ff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  padding-top: 49px;
  padding-bottom: 37px;
}

.footer-title {
  color: #fff;
  font-weight: 800;
}

.footer-copy {
  max-width: 52ch;
  margin: 8px 0 0;
  color: #bfd2ef;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 11px 20px;
}

.footer-links a {
  color: #e5f0ff;
  font-size: 0.94rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #7fc2ff;
}

.footer-meta {
  border-top: 1px solid rgb(201 220 250 / 18%);
  padding: 17px 24px;
  color: #a8bddf;
  font-size: 0.84rem;
  text-align: center;
}

.ltr {
  direction: ltr;
  unicode-bidi: plaintext;
}

@media (max-width: 900px) {
  .hero,
  .section,
  .demo-section {
    padding: 72px 0;
  }

  .hero-grid,
  .feature-layout,
  .privacy-grid,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .phone-wrap {
    order: 2;
  }

  .feature-preview {
    max-width: 520px;
  }

  .support-strip-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .doc-toc {
    position: static;
    border-inline-start: 0;
    border-bottom: 2px solid #cae0ff;
    padding: 0 0 17px;
  }

  .doc-toc a {
    display: inline-block;
    margin-inline-end: 14px;
  }
}

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

  .header-inner {
    min-height: 69px;
    align-items: center;
    gap: 11px;
  }

  .brand {
    gap: 8px;
    font-size: 1rem;
  }

  .brand img,
  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 9px;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 12px;
    font-size: 0.82rem;
  }

  .site-nav .nav-secondary {
    display: none;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    min-height: 37px;
    padding: 0.32rem 0.58rem;
    white-space: nowrap;
  }

  .brand {
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero,
  .section,
  .demo-section {
    padding: 56px 0;
  }

  .hero-grid {
    gap: 48px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .phone {
    width: min(100%, 320px);
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .feature-row {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .calculator-panel {
    padding: 18px;
  }

  .mode-picker button {
    padding: 0.3rem;
    font-size: 0.75rem;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .support-strip {
    padding: 58px 0;
  }

  .support-strip .button {
    width: 100%;
  }

  .page-hero {
    padding: 55px 0 46px;
  }

  .faq-list summary {
    min-height: 68px;
    font-size: 1rem;
  }

  .footer-inner {
    padding-top: 38px;
  }
}

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