:root{
  --bg0:#F7F7FB;
  --bg1:#EEF0F6;
  --card:#FFFFFF;
  --card2:#F3F4F6;
  --stroke:rgba(17,24,39,.12);
  --text:#111827;
  --muted:#4B5563;
  --muted2:#6B7280;
  --accent:#FF7A00;
  --accent2:#9CA3AF; /* אפור */
  --danger:#DC2626;
  --shadow: 0 18px 55px rgba(17,24,39,.12);
  --radius:18px;
  --radius2:14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Helvetica Neue", Helvetica, "Noto Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(255,122,0,.20), transparent 55%),
    radial-gradient(700px 500px at 80% 20%, rgba(156,163,175,.25), transparent 50%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit; text-decoration:none}
.container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(17,24,39,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.brand__logo{
  height:40px;
  width:auto;
  display:block;
}
.brand__mark{
  color:var(--accent2);
  font-size:20px;
}
.topbar__nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.topbar__nav .link{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.65);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.topbar__nav .link:hover{
  transform: translateY(-1px);
  border-color: rgba(255,122,0,.55);
  background: rgba(255,122,0,.10);
}

.countdownStrip{
  border-bottom: 1px solid rgba(17,24,39,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  padding:18px 0 20px;
}
.countdownStrip__inner{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
  text-align:center;
}
.countdownStrip__head{
  max-width: 52ch;
}
.countdownStrip__title{
  margin:0 0 6px;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -.2px;
}
.countdownStrip__meta{
  margin:0;
  font-size:13px;
  color: var(--muted2);
  line-height:1.45;
}
.countdown{
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  width:100%;
  max-width: 640px;
}
.countdown__cell{
  flex:1 1 72px;
  min-width:72px;
  max-width:120px;
  padding:12px 10px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.9);
  border:1px solid rgba(17,24,39,.10);
  box-shadow: 0 8px 24px rgba(17,24,39,.06);
}
.countdown__val{
  display:block;
  font-size: clamp(26px, 4vw, 34px);
  font-weight:900;
  letter-spacing: -.5px;
  line-height:1;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
.countdown__unit{
  display:block;
  margin-top:8px;
  font-size:12px;
  font-weight:700;
  color: var(--muted);
  letter-spacing:.2px;
}
.countdown__sep{
  display:flex;
  align-items:center;
  font-weight:900;
  color: rgba(17,24,39,.25);
  font-size:22px;
  padding:0 2px;
  user-select:none;
}
.countdownStrip__done{
  margin:0;
  font-weight:800;
  color: var(--accent);
  font-size:16px;
}
.countdownStrip--ended .countdown{
  display:none;
}
.countdownStrip--ended .countdownStrip__head{
  display:none;
}

.hero{
  padding:46px 0 22px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:22px;
  align-items:start;
}

.hero__copy{
  padding:8px 0;
}
.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,122,0,.10);
  border:1px solid rgba(255,122,0,.28);
  color: rgba(17,24,39,.86);
  font-weight:600;
  font-size:14px;
  margin:0 0 14px;
}
.h1{
  margin:0 0 14px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.accent{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px;
  font-size:17px;
  line-height:1.7;
  color:var(--muted);
}
.checks{
  margin:0 0 20px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.checks li{
  padding:10px 12px;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(17,24,39,.10);
  border-radius: 14px;
  color: rgba(17,24,39,.84);
}
.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.fineprint{
  margin:14px 0 0;
  color:var(--muted2);
  font-size:13px;
  line-height:1.5;
}

.hero__card{
  background: var(--card);
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.hero__card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(300px 200px at 20% 0%, rgba(255,122,0,.20), transparent 60%),
    radial-gradient(220px 160px at 90% 10%, rgba(156,163,175,.25), transparent 55%);
  opacity:.85;
  pointer-events:none;
}
.hero__card > *{position:relative}

.h2{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.3px;
}
.h3{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.3;
}
.muted{color:var(--muted)}
.small{font-size:13px}
.statrow{
  display:grid;
  gap:10px;
  grid-template-columns: 1fr;
}
.stat{
  padding:12px;
  border-radius: 14px;
  border:1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.70);
}
.stat__value{
  font-weight:800;
  letter-spacing:-.3px;
}
.stat__value--xl{
  font-size: clamp(26px, 3.2vw, 32px);
  line-height:1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.stat__label{
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
}
.hero__cardFoot{
  margin:14px 0 0;
  font-size:14px;
}
.hero__divider{
  height:1px;
  background: rgba(17,24,39,.10);
  margin:16px 0;
}

.section{
  padding:34px 0;
}
.section--form{padding-bottom:56px}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.step{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: var(--radius2);
  padding:16px;
}
.step__num{
  width:34px;
  height:34px;
  border-radius: 12px;
  background: rgba(255,122,0,.12);
  border: 1px solid rgba(255,122,0,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.formwrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}

.callout{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius: var(--radius2);
  background: rgba(255,122,0,.08);
  border:1px solid rgba(255,122,0,.20);
  margin-top:14px;
}
.callout__icon{
  width:30px;
  height:30px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--accent2);
  background: rgba(255,122,0,.10);
  border:1px solid rgba(255,122,0,.20);
  font-weight:900;
}
.callout__text{
  color: rgba(17,24,39,.85);
  line-height:1.6;
}

.form{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: var(--radius);
  padding:18px;
}
.formgrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field__label{
  color: rgba(17,24,39,.84);
  font-size:14px;
  font-weight:600;
}
.field__input, .field__textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.95);
  color: var(--text);
  padding:12px 12px;
  outline:none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field__textarea{resize: vertical}
.field__input::placeholder, .field__textarea::placeholder{color: rgba(17,24,39,.35)}
.field__input:focus, .field__textarea:focus{
  border-color: rgba(255,122,0,.65);
  box-shadow: 0 0 0 4px rgba(255,122,0,.18);
}
.field--textarea{
  grid-column: 1 / -1;
  margin-top:12px;
}
.field--checkbox{
  margin-top:14px;
}
.field__checkboxRow{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.field__checkbox{
  width:18px;
  height:18px;
  margin-top:3px;
  flex:0 0 auto;
  accent-color: var(--accent);
  cursor:pointer;
}
.field__checkboxLabel{
  font-size:14px;
  line-height:1.55;
  color: rgba(17,24,39,.88);
  font-weight:500;
}
.inlineLink{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inlineLink:hover{
  text-decoration-thickness: 2px;
}

.section--legal{
  padding-top:0;
}
.legalCard{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: var(--radius);
  padding:22px 20px;
  box-shadow: 0 10px 40px rgba(17,24,39,.06);
}
.legalLead{
  margin:0 0 18px;
  line-height:1.7;
}
.legalCard .h2{margin-bottom:12px}
.legalCard .h3{margin:22px 0 10px}
.legalCard .muted{margin:0 0 8px; line-height:1.7}
.legalList{
  margin:0;
  padding:0 22px 0 0;
  color: var(--muted);
  line-height:1.75;
}
.legalList li{margin:6px 0}
.legalList strong{color: rgba(17,24,39,.92)}

.form__bottom{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:stretch;
}
.formStatus{
  color: rgba(17,24,39,.85);
  font-size:14px;
  min-height: 18px;
}
.formStatus--ok{color: rgba(255,122,0,.95)}
.formStatus--err{color: rgba(220,38,38,.95)}

.btn{
  border:1px solid rgba(17,24,39,.14);
  border-radius: 999px;
  padding:12px 16px;
  font-weight:800;
  letter-spacing:.1px;
  cursor:pointer;
  display:inline-flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  user-select:none;
}
.btn:disabled{opacity:.7; cursor:not-allowed}
.btn--primary{
  background: linear-gradient(90deg, rgba(255,122,0,.98), rgba(255,179,102,.92));
  border-color: rgba(255,122,0,.35);
  color:#FFFFFF;
}
.btn--primary:hover{transform: translateY(-1px)}
.btn--ghost{
  background: rgba(255,255,255,.78);
  border-color: rgba(17,24,39,.16);
  color: var(--text);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(255,122,0,.55);
  background: rgba(255,122,0,.10);
}
.btn--full{width:100%}

.footer{
  padding:26px 0 44px;
  border-top: 1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.55);
}
.footer__inner{
  display:grid;
  gap:10px;
}
.footerLinks{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px;
}
.footerLinks__sep{
  color: rgba(17,24,39,.35);
  user-select:none;
}

.skipLink{
  position:absolute;
  inset-inline-start:12px;
  top:12px;
  z-index:100;
  padding:10px 14px;
  background:#111827;
  color:#fff;
  font-weight:700;
  border-radius:10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skipLink:focus{
  transform: translateY(0);
  outline:3px solid var(--accent);
  outline-offset:2px;
}

html[data-a11y-font="1"]{font-size:112.5%}
html[data-a11y-font="2"]{font-size:125%}
html[data-a11y-font="3"]{font-size:137.5%}
html[data-a11y-font="4"]{font-size:150%}

html.a11y-readable body{
  font-family: Arial, Helvetica, "Segoe UI", sans-serif !important;
}

html.a11y-ul a:not(.skipLink){
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

html.a11y-hc body{
  background:#fff !important;
  color:#0a0a0a !important;
}
html.a11y-hc .topbar,
html.a11y-hc .countdownStrip,
html.a11y-hc .hero__card,
html.a11y-hc .step,
html.a11y-hc .form,
html.a11y-hc .legalCard,
html.a11y-hc .footer,
html.a11y-hc .stat{
  background:#fff !important;
  color:#0a0a0a !important;
  border-color:#000 !important;
}
html.a11y-hc .muted,
html.a11y-hc .fineprint,
html.a11y-hc .small,
html.a11y-hc .stat__label,
html.a11y-hc .countdownStrip__meta{
  color:#222 !important;
}
html.a11y-hc .accent{
  background:none !important;
  -webkit-background-clip:initial !important;
  background-clip:initial !important;
  color:#b45309 !important;
}
html.a11y-hc .pill{
  background:#fff7ed !important;
  border-color:#000 !important;
}
html.a11y-hc .btn--primary{
  background:#c2410c !important;
  color:#fff !important;
  border-color:#000 !important;
}
html.a11y-hc .btn--ghost{
  background:#fff !important;
  color:#000 !important;
  border-color:#000 !important;
}
html.a11y-hc .field__input,
html.a11y-hc .field__textarea{
  background:#fff !important;
  color:#000 !important;
  border-color:#000 !important;
}
html.a11y-hc .inlineLink,
html.a11y-hc .countdown__val{
  color:#b45309 !important;
}

.a11yWidget{
  position:fixed;
  z-index:9999;
  inset-inline-start:16px;
  bottom:16px;
  font-size:16px;
}
.a11yWidget__toggle{
  min-height:48px;
  min-width:48px;
  padding:12px 18px;
  border-radius:999px;
  border:2px solid #111827;
  background:#111827;
  color:#fff;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 8px 28px rgba(0,0,0,.25);
}
.a11yWidget__toggle:hover{
  background:#1f2937;
}
.a11yWidget__toggle:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:3px;
}
.a11yWidget__panel{
  position:absolute;
  bottom:calc(100% + 10px);
  inset-inline-start:0;
  width:min(320px, calc(100vw - 32px));
  max-height:min(70vh, 420px);
  overflow:auto;
  padding:14px;
  border-radius:16px;
  border:2px solid #111827;
  background:#fff;
  color:#111827;
  box-shadow:0 16px 50px rgba(0,0,0,.2);
}
.a11yWidget__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.a11yWidget__title{
  margin:0;
  font-size:17px;
  line-height:1.2;
}
.a11yWidget__close{
  flex:0 0 auto;
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid #111827;
  background:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.a11yWidget__close:focus-visible,
.a11yWidget__btn:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:2px;
}
.a11yWidget__hint{
  margin:0 0 10px;
  font-size:13px;
  color:#4b5563;
  line-height:1.45;
}
.a11yWidget__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.a11yWidget__btn{
  width:100%;
  text-align:center;
  min-height:44px;
  padding:10px 12px;
  border-radius:12px;
  border:2px solid #111827;
  background:#fff;
  color:#111827;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
}
.a11yWidget__btn:hover{
  background:#f3f4f6;
}
.a11yWidget__btn--on{
  background:#111827;
  color:#fff;
}
.a11yWidget__link{
  display:block;
  margin-top:12px;
  font-weight:700;
  font-size:14px;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px){
  .hero__grid{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .formwrap{grid-template-columns: 1fr}
  .formgrid{grid-template-columns: 1fr}
}

