/* Mobile-first. Everything below is written for a phone; the wider layout
   arrives in one @media block at the bottom, so the small screen is the
   default rather than a set of overrides bolted on after.

   RTL throughout — the document is dir="rtl", so `start`/`end` logical
   properties are used instead of left/right wherever direction matters. */

:root {
  --brand: #1f6feb;
  --brand-dark: #1657bd;
  --brand-soft: #eaf1fe;
  --ink: #111827;
  --ink-2: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --radius: 14px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Heebo, "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3 { line-height: 1.25; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: 30px; letter-spacing: -.02em; }
h2 { font-size: 24px; letter-spacing: -.01em; }
h3 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em; background: var(--brand-soft); color: var(--brand-dark);
  padding: 1px 5px; border-radius: 5px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* --- buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 20px; border-radius: 10px;
  font-weight: 700; font-size: 15px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-alt); }
.btn-nav { padding: 8px 16px; font-size: 14px; background: var(--brand); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 17px; }

/* --- nav ---------------------------------------------------------------- */
.mark { display: inline-flex; align-items: center; justify-content: center; flex: none; }
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; gap: 14px; height: 62px; }
.nav-brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -.01em;
}
.nav-brand:hover { text-decoration: none; }
/* Hidden on a phone rather than crammed into a hamburger: the page is short
   enough to scroll, and a menu for four anchors is more chrome than help. */
.nav-links { display: none; }
.nav .btn-nav { margin-inline-start: auto; }

/* --- hero --------------------------------------------------------------- */
.hero { padding: 44px 0 32px; background: linear-gradient(180deg, var(--brand-soft), #fff 70%); }
.hero h1 { font-size: 32px; }
.hl { color: var(--brand); }
.lede { font-size: 17px; color: var(--ink-2); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 12px; }
.hero-free { font-size: 14px; color: var(--muted); margin: 0; }

/* A mock-up, not a screenshot. Four PNGs would weigh hundreds of KB and
   freeze one real business's data into the page; this is markup, weighs
   nothing, and cannot leak anything. */
.hero-shot { margin-top: 30px; }
.shot {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: 0 12px 30px rgba(17,24,39,.09);
}
.shot-bar { display: flex; gap: 6px; padding: 10px 12px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.shot-bar span { width: 9px; height: 9px; border-radius: 50%; background: #d7dbe2; }
.shot-head { padding: 12px 14px 8px; font-weight: 700; font-size: 13px; color: var(--muted); }
.shot-tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.shot-tbl th {
  text-align: start; font-size: 11px; font-weight: 700; color: var(--muted);
  padding: 8px 14px; border-bottom: 1px solid var(--line);
}
.shot-tbl td { padding: 10px 14px; border-bottom: 1px solid #f1f3f7; vertical-align: top; }
.shot-tbl tr:last-child td { border-bottom: none; }
.shot-tbl td span { display: block; font-size: 11px; color: var(--muted); direction: ltr; text-align: start; }

/* --- trust strip -------------------------------------------------------- */
.strip { background: var(--ink); color: #fff; }
.strip-in { display: grid; gap: 16px; padding: 22px 20px; }
.strip strong { display: block; font-size: 15px; }
.strip span { font-size: 13px; color: #b8c0cc; }

/* --- sections ----------------------------------------------------------- */
.sec { padding: 48px 0; }
.sec-alt { background: var(--bg-alt); }
.sec-narrow { max-width: 760px; }
.sec-lede { font-size: 17px; color: var(--ink-2); }
.sec-foot { font-size: 14px; color: var(--muted); }

.steps { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 22px; }
.steps li { position: relative; padding-inline-start: 48px; }
.step-n {
  position: absolute; inset-inline-start: 0; top: 2px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.steps p { color: var(--ink-2); margin: 0; }

.cards { display: grid; gap: 16px; margin-top: 26px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.card h3 { color: var(--brand-dark); }
.card p { color: var(--ink-2); margin: 0; font-size: 15px; }

.checks { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 14px; }
.checks li { position: relative; padding-inline-start: 30px; color: var(--ink-2); }
.checks li::before {
  content: "✓"; position: absolute; inset-inline-start: 0; top: 0;
  color: var(--brand); font-weight: 800;
}

.faq { margin-top: 22px; display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.faq summary { font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: inline-end; color: var(--brand); font-weight: 800; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 10px 0 0; color: var(--ink-2); font-size: 15px; }

/* --- cta ---------------------------------------------------------------- */
.cta { background: var(--brand); color: #fff; padding: 46px 0; text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: #d8e5fd; }
.cta .btn-primary { background: #fff; color: var(--brand); }
.cta .btn-primary:hover { background: #eef4ff; }
.cta-note { font-size: 14px; margin-top: 16px; }
.cta-note a { color: #fff; text-decoration: underline; }

/* --- footer ------------------------------------------------------------- */
.foot { background: var(--ink); color: #9aa4b2; padding: 30px 0; font-size: 14px; }
.foot-brand { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; }
.foot-links { display: flex; flex-wrap: wrap; gap: 16px; margin: 14px 0; }
.foot-links a { color: #cbd3de; }
.foot-note { margin: 0; color: #6f7987; }

/* --- legal -------------------------------------------------------------- */
.legal { padding: 40px 0 56px; }
.legal-in { max-width: 760px; }
.legal h1 { font-size: 28px; }
.legal-meta { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.legal-intro { font-size: 17px; color: var(--ink-2); }
.legal-sec { margin-top: 28px; }
.legal-sec h2 { font-size: 19px; }
.legal-sec p { color: var(--ink-2); }
.legal-foot { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }

.nf { text-align: center; padding: 40px 0; }
.nf h1 { font-size: 56px; color: var(--brand); }

/* --- wider screens ------------------------------------------------------ */
@media (min-width: 900px) {
  h1 { font-size: 44px; }
  h2 { font-size: 30px; }
  .hero { padding: 72px 0 60px; }
  .hero h1 { font-size: 46px; }
  .hero-in { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .hero-shot { margin-top: 0; }
  .lede { font-size: 18px; }

  .nav-links { display: flex; gap: 22px; font-size: 15px; margin-inline-start: 26px; }
  .nav-links a { color: var(--ink-2); font-weight: 500; }

  .strip-in { grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 26px 20px; }
  .sec { padding: 72px 0; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .foot-in { display: flex; align-items: center; gap: 24px; }
  .foot-links { margin: 0; margin-inline-start: auto; }
  .foot-note { width: 100%; margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
