/* BRX·DXB shared design system — one file for every public page.
   White report ground, one green accent, Open Sans light display, Noto Sans Arabic for RTL. */

:root {
  --bg: #FFFFFF;
  --bg2: #F5F7F2;
  --ink: #111111;
  --ink2: #333333;
  --ink3: #51574A;
  --line: #E3E3E3;
  --ghost: #CCCCCC;
  --g: #86BC25;          /* accent fill, rules, top borders */
  --g2: #43B02A;         /* hover / secondary green */
  --g-ink: #3F6E0E;      /* green for small text on white (AA contrast) */
  --g-soft: #EEF4E2;
  --display: 'Unbounded', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --en: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --ar: 'Noto Sans Arabic', 'Open Sans', Tahoma, sans-serif;
  --mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --r: 4px;
  --wrap: 1200px;
  --gut: 48px;
  --sec: 120px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--en); font-size: 16px; line-height: 1.7; font-weight: 400;
  background: var(--bg); color: var(--ink2);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html[lang="ar"] body { font-family: var(--ar); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--g2); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--g); color: var(--ink); }
html { accent-color: var(--g); caret-color: var(--g2); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #C9CFC0; border-radius: 5px; border: 2px solid #fff; }
::-webkit-scrollbar-thumb:hover { background: var(--g); }
.skip { position: fixed; inset-inline-start: 8px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 300; }
.skip:not(:focus) { width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── Layout ─────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.wrap--narrow { max-width: 860px; }
.sec { padding: var(--sec) 0; border-top: 1px solid var(--line); }
.sec--alt { background: var(--bg2); }
.sec--flush { border-top: 0; }
.sec-head { max-width: 820px; margin-bottom: 56px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Type ───────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 700; color: var(--g-ink); letter-spacing: .01em;
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--g); flex: none; }
.display, h1, h2 { font-family: var(--display); font-weight: 600; letter-spacing: -.025em; color: var(--ink); line-height: 1.06; text-wrap: balance; }
h1.display, .display--xl { font-size: clamp(34px, 5vw, 76px); line-height: 1.02; }
h2.display, .display { font-size: clamp(28px, 3.5vw, 50px); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] .display { font-family: var(--ar); font-weight: 700; }
h3 { font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.35; }
h4 { font-size: 16px; font-weight: 600; color: var(--ink); }
html[lang="ar"] .display, html[lang="ar"] h1, html[lang="ar"] h2 { letter-spacing: 0; line-height: 1.3; }
.lede { font-size: clamp(17px, 1.5vw, 20px); font-weight: 400; color: var(--ink3); line-height: 1.65; max-width: 62ch; margin-top: 20px; }
.muted { color: var(--ink3); }
.small { font-size: 13px; color: var(--ink3); line-height: 1.6; }
.fine { font-size: 12px; color: var(--ink3); line-height: 1.65; }
.hl { color: var(--g-ink); font-weight: 600; }
p + p { margin-top: 14px; }
.rule { height: 2px; width: 56px; background: var(--g); margin: 28px 0; border: 0; }

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 12px 26px; border-radius: 999px;
  background: var(--g); color: var(--ink); border: 1px solid var(--g);
  font-size: 15px; font-weight: 700; text-decoration: none; letter-spacing: .01em;
  cursor: pointer; transition: background .2s, border-color .2s, color .2s; white-space: nowrap;
}
.btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--ink { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--g); border-color: var(--g); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ghost); }
.btn--ghost:hover { background: var(--bg2); border-color: var(--ink3); color: var(--ink); }
.btn--sm { min-height: 38px; padding: 8px 16px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.link { color: var(--g-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.link:hover { color: var(--ink); }

/* ── Nav ────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  background: rgba(255,255,255,.92); border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: saturate(1.4) blur(16px); backdrop-filter: saturate(1.4) blur(16px);
}
.nav-in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); direction: ltr; flex: none; }
.brand svg { height: 30px; width: auto; aspect-ratio: 108 / 70; }
.brand b { font-size: 22px; font-weight: 800; letter-spacing: -1px; color: #111; line-height: 1; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  position: relative; font-size: 14px; font-weight: 600; color: var(--ink3);
  text-decoration: none; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--g); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 12px; flex: none; }
.lang { display: flex; border: 1px solid var(--ghost); border-radius: var(--r); overflow: hidden; }
.lang button {
  border: 0; background: transparent; color: var(--ink3); cursor: pointer;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; padding: 7px 12px; min-width: 40px;
}
.lang button.active { background: var(--g); color: var(--ink); }
.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--ghost); border-radius: var(--r);
  background: #fff; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); transition: transform .25s, opacity .2s; }
.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sheet {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99; background: #fff;
  padding: 24px var(--gut) 40px; overflow-y: auto;
  display: flex; flex-direction: column;
  transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-open .sheet { opacity: 1; transform: none; visibility: visible; }
.sheet a.sheet-link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 28px; font-weight: 300; color: var(--ink); text-decoration: none;
  padding: 18px 0; border-bottom: 1px solid var(--line); min-height: 64px;
}
.sheet a.sheet-link::after { content: "→"; font-size: 20px; color: var(--g); }
html[dir="rtl"] .sheet a.sheet-link::after { content: "←"; }
.sheet a.sheet-link.is-active { color: var(--g-ink); font-weight: 400; }
.sheet .btn { margin-top: 32px; width: 100%; min-height: 54px; font-size: 17px; }
.sheet .fine { margin-top: 24px; }
.nav-open { overflow: hidden; }

/* ── Cards ──────────────────────────────── */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 28px; position: relative;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--ink3); line-height: 1.65; }
.card .meta { font-size: 12px; font-weight: 700; color: var(--g-ink); letter-spacing: .02em; margin-bottom: 14px; display: block; }
.card .num { font-size: 13px; font-weight: 700; color: var(--g-ink); margin-bottom: 18px; display: block; font-variant-numeric: tabular-nums; }
.card--muted { border-top-color: var(--line); }
a.card { display: block; text-decoration: none; color: inherit; transition: border-color .2s; }
a.card:hover { border-color: var(--g); }
.card .go { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--g-ink); }
.status { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 18px; }
.status--live { background: var(--g); color: var(--ink); }
.status--soon { background: var(--bg2); color: var(--ink3); border: 1px solid var(--line); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: 12px; padding: 3px 10px; border-radius: 2px; background: var(--g-soft); color: var(--g-ink); border: 1px solid #D8E5C0; }
.card--featured { border-color: var(--g); box-shadow: inset 0 0 0 1px var(--g); }
.card .price { font-family: var(--display); font-size: clamp(28px, 3vw, 40px); font-weight: 600; letter-spacing: -.02em; color: var(--ink); line-height: 1.1; margin: 8px 0 4px; font-variant-numeric: tabular-nums; }
.card .price small { font-size: 14px; color: var(--ink3); font-weight: 400; }
.card ul { list-style: none; margin: 18px 0 24px; }
.card ul li { font-size: 14px; color: var(--ink2); padding: 9px 0; border-bottom: 1px solid var(--line); display: flex; gap: 10px; }
.card ul li::before { content: ""; width: 6px; height: 6px; background: var(--g); flex: none; margin-top: 9px; }
.card-stack .btn { width: 100%; }
.card .links { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.card-stack { display: flex; flex-direction: column; height: 100%; }
.card-stack ul { flex: 1; }

/* ── Stats ──────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat { padding-block: 32px 8px; padding-inline: 0 28px; }
.stat + .stat { padding-inline-start: 28px; border-inline-start: 1px solid var(--line); }
.stat .n { font-family: var(--display); font-size: clamp(30px, 3.8vw, 52px); font-weight: 600; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
html[dir="rtl"] .stat .n, html[dir="rtl"] .price { direction: ltr; text-align: right; }
.stat .n em { font-style: normal; color: var(--g); }
.stat .l { font-size: 13px; color: var(--ink3); margin-top: 10px; line-height: 1.45; }

/* ── Report table ───────────────────────── */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 15px; }
.tbl caption { text-align: start; font-size: 12px; color: var(--ink3); padding: 12px 20px; caption-side: bottom; border-top: 1px solid var(--line); background: var(--bg2); }
.tbl thead th { background: var(--g); color: var(--ink); font-size: 13px; font-weight: 700; text-align: start; padding: 14px 20px; letter-spacing: .02em; }
.tbl td, .tbl tbody th { padding: 16px 20px; border-top: 1px solid var(--line); text-align: start; vertical-align: top; color: var(--ink2); }
.tbl tbody th { font-weight: 600; color: var(--ink); width: 38%; }
.tbl .n { font-family: var(--display); font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.tbl tbody tr:nth-child(even) td, .tbl tbody tr:nth-child(even) th { background: #FAFBF8; }

/* ── Log card (light) ───────────────────── */
.log { background: var(--bg2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.log-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 12px 20px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; color: var(--ink3); }
.log-head b { color: var(--g-ink); }
.log ol { list-style: none; margin: 0; padding: 10px 20px 14px; direction: ltr; }
.log li { display: grid; grid-template-columns: 76px 150px 1fr; gap: 12px; font-family: var(--mono); font-size: 13px; line-height: 1.5; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.log li:last-child { border-bottom: 0; }
.log time { color: #777; }
.log .cmd { color: var(--g-ink); font-weight: 600; }
.log .msg { color: var(--ink2); }

/* ── Steps (numbered rows) ──────────────── */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step .k { font-size: 28px; font-weight: 300; color: var(--g); line-height: 1; font-variant-numeric: tabular-nums; }
.step h4 { margin-bottom: 4px; }
.step p { font-size: 15px; color: var(--ink3); }

/* ── Founders / CTA ─────────────────────── */
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.founder { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; }
.initials {
  width: 64px; height: 64px; border-radius: 50%; background: var(--g); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; letter-spacing: .02em; direction: ltr;
}
.founder .role { font-size: 13px; font-weight: 700; color: var(--g-ink); margin: 2px 0 10px; }
.founder .contact { font-size: 14px; color: var(--ink3); direction: ltr; unicode-bidi: isolate; }
html[dir="rtl"] .founder .contact { text-align: right; }
.founder .contact a { color: var(--ink2); text-decoration: none; }
.founder .contact a:hover { color: var(--g-ink); text-decoration: underline; }
.founder .btn-row { margin-top: 18px; }

/* ── Footer ─────────────────────────────── */
.site-foot { background: var(--bg2); border-top: 1px solid var(--line); padding: 36px 0; }
.foot-in { display: flex; align-items: center; justify-content: space-between; gap: 20px 32px; flex-wrap: wrap; }
.foot-in p { font-size: 13px; color: var(--ink3); }
.foot-in .foot-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; }
.foot-in .foot-links a { color: var(--ink2); text-decoration: none; }
.foot-in .foot-links a:hover { color: var(--g-ink); text-decoration: underline; }

/* ── Page hero (inner pages) ────────────── */
.page-hero { padding: 96px 0 80px; }
.page-hero .display--xl { max-width: 16ch; }
.crumb { font-size: 13px; color: var(--ink3); margin-bottom: 28px; }
.crumb a { color: var(--ink3); }

/* ── Reveal (JS-gated, motion-safe) ─────── */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1080px) {
  .nav-links { gap: 22px; }
}
@media (max-width: 960px) {
  :root { --gut: 20px; --sec: 72px; --nav-h: 64px; }
  .nav-links, .nav-right .nav-cta { display: none; }
  .burger { display: inline-flex; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { padding-inline-start: 0; border-inline-start: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .founders { grid-template-columns: 1fr; }
  .sec-head { margin-bottom: 40px; }
  .page-hero { padding: 64px 0 56px; }
}
@media (max-width: 640px) {
  .display br { display: none; }
  .tbl--stack thead { display: none; }
  .tbl--stack tr, .tbl--stack td, .tbl--stack tbody th { display: block; width: auto; }
  .tbl--stack tbody th { padding-bottom: 4px; }
  .tbl--stack td { border-top: 0; padding-top: 2px; padding-bottom: 6px; }
  .tbl--stack td + td { color: var(--ink3); font-size: 14px; }
  .tbl--stack tbody tr { border-top: 1px solid var(--line); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .log li { grid-template-columns: 64px 1fr; }
  .log li .msg { grid-column: 1 / -1; }
  .tbl td, .tbl tbody th { padding: 14px 16px; }
  .tbl tbody th { width: auto; }
  .card { padding: 24px 20px; }
  .founder { grid-template-columns: 52px 1fr; gap: 16px; }
  .initials { width: 52px; height: 52px; font-size: 17px; }
}
@media (max-width: 420px) {
  :root { --gut: 16px; }
  .lang button { padding: 7px 10px; min-width: 36px; }
  .btn-row .btn { flex: 1 1 100%; }
}

/* ── Cursor dot + magnetic (pointer: fine only, motion allowed) ── */
.cursor { position: fixed; left: 0; top: 0; z-index: 400; pointer-events: none; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%; background: var(--g); opacity: 0; transition: opacity .2s; display: flex; align-items: center; justify-content: center; font: 700 12px/1 var(--display); color: var(--ink); letter-spacing: .02em; }
.cursor i { position: absolute; inset: 0; border-radius: 50%; background: var(--g); transform: scale(.16); transition: transform .3s cubic-bezier(.2,.9,.3,1.2); }
.cursor span { position: relative; opacity: 0; transition: opacity .15s; }
.cursor.is-live { opacity: 1; }
.cursor { background: transparent; }
.cursor.is-big i { transform: scale(1); }
.cursor.is-big span { opacity: 1; }
@media (pointer: coarse), (prefers-reduced-motion: reduce) { .cursor { display: none; } }

/* ── The big switch (the logo shape) ── */
.bigswitch { --w: 208px; --h: 104px; --k: 68px; position: relative; width: var(--w); height: var(--h); flex: none; border: 0; padding: 0; cursor: pointer; border-radius: 999px; background: #CDD2C6; box-shadow: inset 0 3px 8px rgba(17,17,17,.14), 0 0 0 6px #fff, 0 24px 48px -20px rgba(40,70,10,.5); transition: background .5s cubic-bezier(.2,.8,.2,1); -webkit-tap-highlight-color: transparent; }
.bigswitch::before { content: ""; position: absolute; left: 15.4%; top: 96%; width: 13.5%; height: 27%; background: inherit; clip-path: polygon(0 0, 0 100%, 100% 0); transition: background .5s; }
.bigswitch .knob { position: absolute; top: 50%; left: 31%; width: var(--k); height: var(--k); margin: calc(var(--k) / -2) 0 0 calc(var(--k) / -2); border-radius: 50%; background: #fff; box-shadow: 0 6px 14px rgba(17,17,17,.22); transition: transform .7s cubic-bezier(.34,1.56,.64,1); }
.bigswitch[aria-checked="true"] { background: var(--g); }
.bigswitch[aria-checked="true"] .knob { transform: translateX(calc(var(--w) * .38)); }
html[dir="rtl"] .bigswitch[aria-checked="true"] .knob { transform: translateX(calc(var(--w) * .38)); }
.bigswitch:active .knob { scale: 1.08 .92; }
.bigswitch:focus-visible { outline: 3px solid var(--ink); outline-offset: 10px; }
.bigswitch .hint { position: absolute; left: 100%; top: 50%; margin-left: 22px; transform: translateY(-50%); white-space: nowrap; font: 600 14px/1.2 var(--en); letter-spacing: 0; color: var(--ink3); transition: opacity .3s; }
.bigswitch[aria-checked="true"] .hint { opacity: 0; }
html[dir="rtl"] .bigswitch .hint { left: auto; right: 100%; margin: 0 22px 0 0; }

@media (max-width: 960px) { .bigswitch { --w: 164px; --h: 82px; --k: 54px; margin-top: .15em; } .bigswitch .hint { font-size: 13px; } }
.wake-veil { transition: background .9s ease; }

/* ── Free-month lead form (_partials/leadform.html + /assets/lead-form.js) ── */
.lead-form { margin: 40px 0 48px; padding: 32px; background: var(--bg2); border: 1px solid var(--line); border-top: 3px solid var(--g); border-radius: var(--r); }
.lead-form .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.lead-form .field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.lead-form .field--full { grid-column: 1 / -1; }
.lead-form label { font-size: 13px; font-weight: 700; color: var(--ink); }
.lead-form label small { font-weight: 400; color: var(--ink3); }
.lead-form input, .lead-form select {
  min-height: 46px; padding: 10px 14px; border: 1px solid var(--ghost); border-radius: var(--r);
  background: #fff; color: var(--ink); font: 400 16px/1.4 var(--en); width: 100%; max-width: 100%;
}
html[lang="ar"] .lead-form input, html[lang="ar"] .lead-form select { font-family: var(--ar); }
.lead-form input:focus-visible, .lead-form select:focus-visible { outline: 2px solid var(--g2); outline-offset: 1px; border-color: var(--g2); }
.lead-form .actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 6px; }
.lead-form .note, .lead-done .note { font-size: 13px; color: var(--ink3); }
.lead-form .err { grid-column: 1 / -1; color: #B3261E; font-size: 14px; font-weight: 600; }
.lead-done { margin: 40px 0 48px; padding: 32px; background: var(--g-soft); border: 1px solid #D8E5C0; border-top: 3px solid var(--g); border-radius: var(--r); }
.lead-done:focus { outline: none; }
.lead-done h3 { margin-bottom: 6px; }
.lead-done p { color: var(--ink2); }
.lead-done .btn-row { margin-top: 18px; align-items: center; }
@media (max-width: 720px) { .lead-form { padding: 22px 16px; } .lead-form .grid { grid-template-columns: 1fr; } .lead-form .btn { width: 100%; white-space: normal; } }
