﻿/* ==========================================================================
   Set It Up — Business Services
   Light, quiet, credibility-first. No motion, no gradients, no noise.
   ========================================================================== */

:root {
  --navy:        #0B2545;
  --navy-soft:   #16385f;
  --blue:        #1E88E5;
  --blue-dark:   #1668B8;
  --sky:         #4FC3F7;
  --sky-wash:    #EAF4FD;

  --ink:         #0B2545;
  --ink-muted:   #566B84;
  --ink-faint:   #7C8CA1;

  --bg:          #FFFFFF;
  --bg-alt:      #F6F9FC;
  --line:        #E1E9F2;
  --line-strong: #C9D6E6;

  --ok:          #157347;
  --warn:        #B54708;

  --radius:      10px;
  --radius-lg:   14px;

  --wrap:        1120px;
  --shadow-sm:   0 1px 2px rgba(11, 37, 69, .06);
  --shadow-md:   0 2px 8px rgba(11, 37, 69, .07);

  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-he: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font-en);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html[lang="he"] body { font-family: var(--font-he); }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; letter-spacing: -0.015em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: 56px; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section__head { max-width: 660px; margin-bottom: 32px; }
.section__head p { color: var(--ink-muted); margin: 0; }
h2 { font-size: 28px; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 10px;
}
html[lang="he"] .eyebrow { letter-spacing: .04em; }

/* ---------- opening curtain ----------
   Hidden unless the inline head script opts this load in, so a visitor with
   JavaScript off never sees a blank navy screen. The fade-out lives in CSS,
   which means the page uncovers itself even if main.js never runs. */
.intro { display: none; }

html.intro-on .intro {
  display: grid; place-items: center;
  position: fixed; inset: 0; z-index: 999;
  background:
    radial-gradient(520px 340px at 50% 42%, #16406b 0%, transparent 70%),
    var(--navy);
  animation: introOut .5s cubic-bezier(.65, 0, .35, 1) .95s forwards;
}
.intro__inner { text-align: center; padding: 24px; }
.intro__logo {
  width: 116px; height: 116px; margin: 0 auto 20px;
  opacity: 0; transform: scale(.84);
  animation: introLogo .62s cubic-bezier(.2, .8, .3, 1) .05s forwards;
}
.intro__rule {
  width: 0; height: 2px; border-radius: 2px; margin: 0 auto 16px;
  background: var(--sky);
  animation: introRule .42s cubic-bezier(.65, 0, .35, 1) .42s forwards;
}
.intro__name {
  color: #fff; font-weight: 800; font-size: 23px; letter-spacing: -.02em;
  opacity: 0; animation: introFade .4s ease .56s forwards;
}
.intro__tag {
  color: var(--sky); font-size: 11.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; margin-top: 6px;
  opacity: 0; animation: introFade .4s ease .68s forwards;
}

@keyframes introLogo { to { opacity: 1; transform: scale(1); } }
@keyframes introRule { to { width: 108px; } }
@keyframes introFade { to { opacity: 1; } }
@keyframes introOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  html.intro-on .intro { display: none; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
/* Phone: a three-slot app bar — menu at one edge, logo dead centre,
   language at the other edge. Desktop switches back to a flex row. */
.header-bar {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 8px; min-height: 66px;
}
.header-bar > .menu-btn { justify-self: start; }
.header-bar > .brand { justify-self: center; }
.header-bar > .header-actions { justify-self: end; }

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand__fallback {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px; letter-spacing: -.02em;
}
.brand__name { font-weight: 800; font-size: 16px; color: var(--navy); line-height: 1.1; }
.brand__tag { font-size: 11px; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; }
html[lang="he"] .brand__tag { letter-spacing: 0; text-transform: none; }

.nav { display: none; gap: 4px; }
.nav a {
  color: var(--ink-muted); font-size: 15px; font-weight: 600;
  padding: 8px 12px; border-radius: 8px;
}
.nav a:hover { color: var(--navy); background: var(--bg-alt); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--navy); background: var(--sky-wash); }

.header-actions { display: flex; align-items: center; gap: 8px; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line-strong); background: #fff; color: var(--navy);
  border-radius: 8px; padding: 7px 11px; font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--blue); color: var(--blue); }

.menu-btn {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--line-strong); background: #fff; cursor: pointer; color: var(--navy);
}
.menu-btn:hover { border-color: var(--blue); }

.mobile-nav { display: none; border-top: 1px solid var(--line); padding: 8px 0 14px; }
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 11px 4px; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav a:hover { text-decoration: none; color: var(--blue); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: 16px; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer; text-align: center;
}
.btn:hover { text-decoration: none; }
.btn svg { flex-shrink: 0; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-soft); color: #fff; }
.btn--sm { padding: 9px 14px; font-size: 14px; border-radius: 8px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.header-actions .btn { display: none; }

/* ---------- hero ---------- */
.hero {
  padding-block: 40px 48px;
  border-bottom: 1px solid var(--line);
}
.hero__grid { display: grid; gap: 26px; align-items: center; }
.hero__media img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 34px rgba(11, 37, 69, .16);
}
.hero h1 { font-size: 34px; margin-bottom: 16px; letter-spacing: -0.025em; }
.hero__lead { font-size: 18px; color: var(--ink-muted); max-width: 620px; margin-bottom: 24px; }
.hero__note {
  margin-top: 18px; font-size: 14px; color: var(--ink-faint);
  display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.hero__note span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- trust strip ---------- */
.trust-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.trust-item { background: #fff; padding: 20px; }
.trust-item h3 { font-size: 16px; margin-bottom: 4px; }
.trust-item p { font-size: 14.5px; color: var(--ink-muted); margin: 0; }
.trust-item__icon { color: var(--blue); margin-bottom: 10px; }

/* ---------- service cards ---------- */
.cards { display: grid; gap: 16px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; display: flex; flex-direction: column;
}
.card__icon {
  width: 40px; height: 40px; border-radius: 9px; background: var(--sky-wash); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 14px;
}
.card h3 { font-size: 18px; margin-bottom: 6px; }
.card p { font-size: 15px; color: var(--ink-muted); margin-bottom: 16px; }
.card__price {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line-strong);
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.card__total { font-size: 22px; font-weight: 800; color: var(--navy); }
.card__breakdown { font-size: 13px; color: var(--ink-faint); }
.card__quote { font-size: 17px; font-weight: 700; color: var(--navy); }
.card .btn { margin-top: 14px; }

/* ---------- steps ---------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step__num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
}
.step h3 { font-size: 17px; margin-bottom: 3px; }
.step p { font-size: 15px; color: var(--ink-muted); margin: 0; }

/* ---------- do / don't ---------- */
.split { display: grid; gap: 16px; }
.panel { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; background: #fff; }
.panel--no { background: var(--bg-alt); }
.panel h3 { font-size: 17px; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.panel li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; font-size: 15.5px; border-bottom: 1px solid var(--line);
}
.panel li:last-child { border-bottom: 0; }
.panel--yes .tick { color: var(--ok); font-weight: 800; flex-shrink: 0; }
.panel--no .tick { color: var(--ink-faint); font-weight: 800; flex-shrink: 0; }
.panel--no li { color: var(--ink-muted); }

/* ---------- pricing table ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
table.price { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 15.5px; }
table.price th, table.price td { padding: 15px 16px; text-align: start; border-bottom: 1px solid var(--line); vertical-align: top; }
table.price thead th {
  background: var(--bg-alt); font-size: 12.5px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 700; white-space: nowrap;
}
html[lang="he"] table.price thead th { letter-spacing: 0; text-transform: none; font-size: 14px; }
table.price tbody tr:last-child td { border-bottom: 0; }
table.price .svc { font-weight: 700; color: var(--navy); }
table.price .svc small { display: block; font-weight: 400; font-size: 13px; color: var(--ink-faint); margin-top: 2px; }
table.price .num { white-space: nowrap; font-variant-numeric: tabular-nums; }
table.price .total { font-weight: 800; color: var(--navy); white-space: nowrap; font-variant-numeric: tabular-nums; }
table.price .free { color: var(--ok); font-weight: 700; }
table.price td[colspan] { white-space: normal; font-weight: 700; }
.table-note { font-size: 14px; color: var(--ink-muted); margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  padding: 16px 18px; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
  color: var(--navy); font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-alt); }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--blue); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq .faq__body { padding: 0 18px 18px; color: var(--ink-muted); font-size: 15.5px; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; }
.cta-band h2 { color: #fff; font-size: 26px; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; }
.cta-band .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.cta-band .btn--ghost:hover { border-color: #fff; color: #fff; }

/* ---------- contact ---------- */
.contact-list { display: grid; gap: 14px; }
.contact-row {
  display: flex; gap: 14px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; background: #fff;
}
.contact-row__icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--sky-wash); color: var(--blue);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-row__label { font-size: 13px; color: var(--ink-faint); }
.contact-row__value { font-weight: 700; color: var(--navy); font-size: 17px; word-break: break-word; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding-block: 36px 28px; font-size: 14.5px; }
.footer-grid { display: grid; gap: 26px; }
.site-footer h4 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
html[lang="he"] .site-footer h4 { letter-spacing: 0; text-transform: none; font-size: 14px; }
.site-footer li { padding: 3px 0; }
.site-footer a { color: var(--ink-muted); }
.site-footer a:hover { color: var(--blue); }
.disclaimer {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-strong);
  color: var(--ink-faint); font-size: 13px; line-height: 1.6;
}
.disclaimer strong { color: var(--ink-muted); }

/* ---------- inner page head ---------- */
.page-head {
  padding-block: 40px;
  border-bottom: 1px solid var(--line); background: var(--bg-alt);
}
.page-head h1 { font-size: 32px; margin-bottom: 10px; }
.page-head p { color: var(--ink-muted); max-width: 640px; margin: 0; font-size: 17px; }

/* ---------- services page ---------- */
.card__list { margin: 0 0 16px; }
.card__list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-muted); padding: 4px 0;
}
.card__list .tick { color: var(--blue); font-weight: 800; flex-shrink: 0; }

/* ---------- pricing page ---------- */
.incl { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; background: #fff; }
.incl h3 { font-size: 17px; margin-bottom: 12px; }
.incl li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 7px 0; font-size: 15.5px; color: var(--ink-muted);
}
.incl .tick { color: var(--ok); font-weight: 800; flex-shrink: 0; }

/* ---------- checklist page ---------- */
.reqs { display: grid; gap: 18px; }
.req {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; padding: 22px; display: flex; flex-direction: column;
}
.req__head { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; }
.req__head h3 { margin: 0; font-size: 19px; }
.req__icon {
  width: 38px; height: 38px; border-radius: 9px; background: var(--sky-wash);
  color: var(--blue); display: grid; place-items: center; flex-shrink: 0;
}
.badge-time {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--sky-wash); color: var(--blue-dark);
  border-radius: 999px; padding: 4px 11px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
}
.req__label {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700; margin: 18px 0 4px;
}
html[lang="he"] .req__label { letter-spacing: 0; text-transform: none; font-size: 13.5px; }
.req__list li {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15.5px;
}
.req__list li:last-child { border-bottom: 0; }
.req__list .n {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--sky-wash); color: var(--blue-dark);
  font-size: 12px; font-weight: 800; display: grid; place-items: center; margin-top: 3px;
}
.callout {
  margin-top: 16px; background: var(--bg-alt);
  border-inline-start: 3px solid var(--blue); border-radius: 8px;
  padding: 13px 16px; font-size: 14.5px; color: var(--ink-muted); line-height: 1.6;
}
.callout strong {
  display: block; margin-bottom: 3px; color: var(--navy);
  font-size: 12px; letter-spacing: .09em; text-transform: uppercase;
}
html[lang="he"] .callout strong { letter-spacing: 0; text-transform: none; font-size: 13.5px; }
.callout--warn { border-inline-start-color: var(--warn); background: #FFF8F0; }
.callout--warn strong { color: var(--warn); }
.req .btn { margin-top: 18px; }

/* ---------- helpers ---------- */
.muted { color: var(--ink-muted); }
.hide { display: none !important; }
.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;
}
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ---------- pricing table becomes cards on phones ---------- */
@media (max-width: 619px) {
  .table-scroll { border: 0; background: transparent; overflow: visible; border-radius: 0; }
  table.price { min-width: 0; display: block; font-size: 15.5px; }
  table.price thead { display: none; }
  table.price tbody, table.price tr, table.price td { display: block; width: 100%; }
  table.price tr {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); margin-bottom: 14px;
  }
  table.price td {
    padding: 12px 16px; border-bottom: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  }
  table.price tbody tr td:last-child { border-bottom: 0; padding-top: 14px; }
  table.price td.svc { display: block; background: var(--bg-alt); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  table.price td::before {
    content: attr(data-label);
    color: var(--ink-muted); font-size: 14px; font-weight: 600;
  }
  table.price td.svc::before { content: none; }
  table.price td:last-child::before { content: none; }
  table.price td:last-child .btn { width: 100%; }
  table.price td.total { font-size: 19px; }
  table.price td.total::before { font-size: 14px; font-weight: 700; color: var(--navy); }
}

/* ---------- responsive ---------- */
@media (max-width: 400px) {
  .wrap { padding-inline: 16px; }
  .brand img, .brand__fallback { width: 42px; height: 42px; }
  .brand__name { font-size: 15px; }
  .brand__tag { font-size: 10px; }
  .lang-toggle { padding: 7px 9px; font-size: 13px; }
  .hero h1 { font-size: 30px; }
  .card, .panel, .incl { padding: 18px; }
}

@media (min-width: 620px) {
  .hero h1 { font-size: 42px; }
  .hero__lead { font-size: 19px; }
  h2 { font-size: 32px; }
  .section { padding-block: 72px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: repeat(2, 1fr); }
  .contact-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  body { font-size: 17px; }
  .hero { padding-block: 72px 76px; }
  .hero__grid { grid-template-columns: 1.02fr .98fr; gap: 48px; }
  .hero h1 { font-size: 48px; }
  .section { padding-block: 84px; }
  .header-bar { display: flex; gap: 14px; }
  .nav { display: flex; margin-inline-start: auto; }
  .menu-btn { display: none; }
  .mobile-nav { display: none !important; }
  .header-actions .btn { display: inline-flex; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards--wide { grid-template-columns: repeat(2, 1fr); }
  .reqs { grid-template-columns: repeat(2, 1fr); }
  .page-head { padding-block: 56px; }
  .page-head h1 { font-size: 40px; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
  .cta-inner .btn-row { flex-shrink: 0; }
}
