/* Robochat landing page — redesign.
 *
 * One fixed palette: ink / bone / accent. No light-dark toggle, no gradients, no tints, no
 * elevation, no border-radius anywhere, no box-shadows anywhere. Borders are 2px only.
 *
 * Direction: every heading/label role reads its font, tracking and case from --f-display/
 * --f-label/--case/--h1-ls/--h2-ls, all re-pointed once at :root[dir="rtl"] -- so the whole
 * Arabic typography swap (Noto Kufi Arabic + IBM Plex Sans Arabic, no uppercase, no tracking,
 * taller line-heights) happens in one place instead of a duplicate rule per selector. Physical
 * left/right never appears; everything is inset-inline-*, margin-inline-* and text-align:start,
 * so the page mirrors from dir="rtl" on <html> alone.
 *
 * Layout: every grid is repeat(auto-fit,minmax(min(100%,Npx),1fr)) and every scaling size is
 * clamp() -- there are no fixed max-width media-query breakpoints in this file.
 */

/* ═══ Tokens ═══════════════════════════════════════════════════════════════════════════════════ */
:root {
    --ink:      #0A0A0A;
    --bone:     #F2F2F0;
    --accent:   #FD7E14;
    --accent-on-bone: #AF5A0B;   /* accent TEXT on bone only -- never a fill */
    --rule:     #3A3A36;          /* borders / ghosted numerals, on ink */
    --muted-ink:  #8C8C88;        /* captions, nav, footer, on ink */
    --body-ink:   #C9C9C4;        /* paragraphs, list items, on ink */
    --body-bone:  #4A4A44;        /* paragraphs, on bone */
    --strong-bone:#2A2A26;        /* list items, on bone */
    --muted-bone: #6E6E68;        /* captions, form labels, on bone */
    --table-rule: rgba(10,10,10,.12);

    --f-display: 'Archivo', system-ui, sans-serif;
    --f-body:    'Archivo', system-ui, sans-serif;
    --f-label:   'Archivo Narrow', sans-serif;

    --case:      uppercase;   /* headings + label-role text; none in RTL */
    --h1-lh: .85;  --h1-ls: -.045em;
    --h2-lh: .94;  --h2-ls: -.04em;
    --h3-ls: -.02em;
    --label-tracking: .09em;

    --gutter: clamp(16px,4vw,44px);
    --sec-pad: clamp(36px,6vw,76px);
}
:root[dir="rtl"] {
    --f-display: 'Noto Kufi Arabic', sans-serif;
    --f-body:    'IBM Plex Sans Arabic', system-ui, sans-serif;
    --f-label:   'IBM Plex Sans Arabic', sans-serif;

    --case: none;
    --h1-lh: 1.42; --h1-ls: 0;
    --h2-lh: 1.4;  --h2-ls: 0;
    --h3-ls: 0;
    --label-tracking: 0;
}

/* Light mode: a full swap of every ground/text-role token, not a second palette bolted on. Every
   "ink section" (dark ground, using --ink/--rule/--muted-ink/--body-ink) and every "bone section"
   (light ground, using --bone/--muted-bone/--body-bone/--strong-bone/--accent-on-bone/--table-rule)
   keeps the exact same markup and classes -- swapping these ten values inverts which ground reads
   as dark and which reads as light, everywhere at once, the same way the old (pre-redesign) page's
   --paper/--surface swap did. Default (no attribute, no OS-preference reacted to) stays dark --
   this is a deliberate opt-in switch, not prefers-color-scheme-driven. */
:root[data-theme="light"] {
    --ink:      #F2F2F0;
    --bone:     #0A0A0A;
    --rule:         rgba(10,10,10,.18);
    --muted-ink:    #6E6E68;
    --body-ink:     #4A4A44;
    --muted-bone:   #8C8C88;
    --body-bone:    #C9C9C4;
    --strong-bone:  #F2F2F0;
    --accent-on-bone: var(--accent);
    --table-rule:   rgba(255,255,255,.18);
    color-scheme: light;
}

* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
    margin: 0;
    background: var(--ink);
    color: var(--bone);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--bone); }
.on-bone a:hover, .on-accent a:hover { color: var(--ink); }
input, select, textarea, button { font-family: inherit; }

h1, h2, h3 {
    font-family: var(--f-display); font-weight: 900; margin: 0;
    text-transform: var(--case);
}
h1 { font-size: clamp(46px,11.5vw,158px); line-height: var(--h1-lh); letter-spacing: var(--h1-ls); }
h2 { font-size: clamp(28px,4.6vw,68px); line-height: var(--h2-lh); letter-spacing: var(--h2-ls); }
h3 { font-weight: 800; letter-spacing: var(--h3-ls); }
p { margin: 0; }

.wrap { max-width: 1320px; margin: 0 auto; padding-inline: var(--gutter); }
section, .section { padding-block: var(--sec-pad); }
.on-bone { background: var(--bone); color: var(--ink); }
.on-accent { background: var(--accent); color: var(--ink); }

.eyebrow, .label {
    font-family: var(--f-label); font-weight: 700; font-size: 12.5px;
    letter-spacing: var(--label-tracking); text-transform: var(--case);
    color: var(--accent); margin: 0 0 12px;
}
.on-bone .eyebrow, .on-bone .label { color: var(--accent-on-bone); }
.lead { font-size: 17px; line-height: 1.55; color: var(--body-ink); }
.on-bone .lead { color: var(--body-bone); }
:root[dir="rtl"] .lead { line-height: 1.85; }

.sec-head { max-width: 46rem; margin-bottom: clamp(24px,4vw,44px); }
.sec-head h2 { max-width: 22ch; }

/* Latin figures/prices inside Arabic copy: kept in Archivo and forced ltr so digits don't
   reorder or overflow their box -- see landing_ar.properties for where this class is applied. */
.figure-ltr { font-family: 'Archivo', sans-serif; direction: ltr; unicode-bidi: isolate; }

/* ═══ Buttons ══════════════════════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--f-label); font-weight: 700; font-size: 13px;
    letter-spacing: var(--label-tracking); text-transform: var(--case);
    padding: 16px 26px; border: 2px solid transparent;
    text-decoration: none; cursor: pointer; white-space: nowrap;
    transition: background-color .14s ease, color .14s ease, border-color .14s ease;
}
.btn-primary { background: var(--bone); color: var(--ink); }
.btn-primary:hover { background: var(--accent); color: var(--ink); }
.on-bone .btn-primary, .on-accent .btn-primary { background: var(--ink); color: var(--bone); }
.on-bone .btn-primary:hover, .on-accent .btn-primary:hover { background: var(--accent); color: var(--ink); }
.btn-quiet { background: transparent; border-color: var(--bone); color: var(--bone); }
.btn-quiet:hover { background: var(--bone); color: var(--ink); }
.on-bone .btn-quiet, .on-accent .btn-quiet { border-color: var(--ink); color: var(--ink); }
.on-bone .btn-quiet:hover, .on-accent .btn-quiet:hover { background: var(--ink); color: var(--bone); }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--ink); color: var(--bone); }
.on-bone .btn-accent:hover { background: var(--ink); color: var(--bone); }
.btn-block { width: 100%; justify-content: center; }
.btn:focus-visible, .curr-btn:focus-visible, .nav a:focus-visible, .faq-q:focus-visible, .intent-chip:focus-visible {
    outline: 2px solid var(--accent); outline-offset: 2px;
}

/* ═══ Header / nav ═════════════════════════════════════════════════════════════════════════════ */
/* One row: wordmark, links, language/login/CTA pushed to the far end. Below 900px the links and
   actions collapse behind a hamburger (.nav-toggle) into a dropdown panel (.nav-menu) -- on
   desktop .nav-menu is display:contents, so nav-links/nav-actions stay direct flex children of
   .nav-in and nothing changes there. */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: var(--ink); border-bottom: 2px solid var(--bone);
}
.nav-in {
    display: flex; flex-wrap: wrap; align-items: center; gap: clamp(14px,3vw,32px);
    padding-block: 13px;
}
.nav-menu { display: contents; }
.nav-toggle {
    display: none; align-items: center; justify-content: center;
    width: 34px; height: 34px; flex: none; padding: 0; margin-inline-start: auto;
    border: 2px solid var(--muted-ink); background: transparent; color: var(--bone); cursor: pointer;
}
.nav-toggle:hover { border-color: var(--bone); }
.nt-icon.nt-close { display: none; }
.nav.is-open .nt-icon.nt-open { display: none; }
.nav.is-open .nt-icon.nt-close { display: block; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
/* The lockup file, not an inline mark + separate text: its wordmark is baked in at a literal
   ink colour, matched per-file to the ground it's meant to sit on (lockup-en-dark.svg's tile is
   #F3EFE9, for dark grounds; lockup-en.svg's is #191714, for light) -- a CSS custom property inside
   an <img>'s SVG can't resolve, so this page's theme swap has to pick the whole file instead.
   Default (no [data-theme]) is dark, so the --dark file is the one visible with no override. */
.brand-lockup { display: block; height: 26px; width: auto; max-width: 100%; }
.brand-lockup--light { display: none; }
:root[data-theme="light"] .brand-lockup--light { display: block; }
:root[data-theme="light"] .brand-lockup--dark { display: none; }
.mini-nav .brand-lockup { height: 24px; }
.nav-links {
    display: flex; flex-wrap: wrap; gap: clamp(10px,1.8vw,24px);
    font-family: var(--f-label); font-weight: 700; font-size: 12.5px;
    letter-spacing: var(--label-tracking); text-transform: var(--case);
}
:root[dir="rtl"] .nav-links { font-weight: 600; font-size: 14px; }
.nav-links a { color: var(--muted-ink); }
.nav-links a:hover { color: var(--bone); }
.nav-actions {
    margin-inline-start: auto; display: flex; align-items: center; gap: 12px;
    font-family: var(--f-label); font-weight: 700; font-size: 12.5px;
    letter-spacing: var(--label-tracking); text-transform: var(--case);
}
:root[dir="rtl"] .nav-actions { font-weight: 600; font-size: 14px; }
.nav-actions a:not(.nav-cta) { color: var(--muted-ink); }
.nav-actions a:not(.nav-cta):hover { color: var(--bone); }
.nav-cta { background: var(--accent); color: var(--ink); padding: 10px 18px; font-weight: 700; }
.nav-cta:hover { background: var(--bone); color: var(--ink); }

.theme-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; flex: none; padding: 0;
    border: 2px solid var(--muted-ink); background: transparent; color: var(--bone); cursor: pointer;
}
.theme-toggle:hover { border-color: var(--bone); }
.theme-toggle .ts-sun { display: none; }
.theme-toggle .ts-moon { display: block; }
:root[data-theme="light"] .theme-toggle .ts-sun { display: block; }
:root[data-theme="light"] .theme-toggle .ts-moon { display: none; }

/* Below 900px the nav bar itself stays one row (logo + toggle); .nav-menu -- previously
   display:contents, so it took no layout role of its own -- becomes the dropdown panel, and
   .nav-in's existing flex-wrap is what drops it to its own full-width row underneath. */
@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .nav-menu {
        display: none; flex-direction: column; align-items: stretch;
        width: 100%; gap: 18px;
        padding-block-start: 18px; margin-block-start: 4px;
        border-block-start: 2px solid var(--rule);
    }
    .nav.is-open .nav-menu { display: flex; }
    .nav-links { flex-direction: column; gap: 16px; font-size: 15px; }
    .nav-actions { margin-inline-start: 0; flex-wrap: wrap; row-gap: 14px; }
    .nav-cta { flex: 1 1 100%; justify-content: center; }
}

/* ═══ Hero ═════════════════════════════════════════════════════════════════════════════════════ */
.hero { padding-block-start: clamp(30px,5vw,60px); padding-block-end: 0; }
.hero-deck {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,300px),1fr));
    gap: clamp(22px,4vw,56px); padding-block: clamp(24px,4vw,44px); align-items: end;
}
.hero-sub { font-size: clamp(17px,1.5vw,20px); line-height: 1.45; color: var(--body-ink); max-width: 46ch; }
:root[dir="rtl"] .hero-sub { line-height: 1.85; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.fact-strip {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,150px),1fr));
    gap: 0 clamp(18px,3vw,34px);
    list-style: none; margin: 0; padding: 0;
}
.fact-cell { border-block-start: 2px solid var(--bone); padding: 18px 0 20px; }
.fact-value {
    font-family: var(--f-display); font-weight: 900; font-size: clamp(30px,3.6vw,50px);
    line-height: 1; letter-spacing: -.04em;
}
:root[dir="rtl"] .fact-value { line-height: 1.15; }
.fact-value--accent { color: var(--accent); }
.fact-label {
    font-family: var(--f-label); font-weight: 700; font-size: 11.5px;
    letter-spacing: var(--label-tracking); text-transform: var(--case);
    color: var(--muted-ink); padding-top: 8px;
}
:root[dir="rtl"] .fact-label { font-weight: 600; font-size: 13.5px; }

/* ═══ Ordering: the 3 real screens + one ink CTA panel ═══════════════════════════════════════ */
.shots {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,240px),1fr));
    gap: 20px; padding-top: clamp(24px,4vw,44px);
}
.shot { border: 2px solid var(--ink); padding: 24px; display: grid; gap: 10px; align-content: start; }
.shot-step {
    font-family: var(--f-label); font-weight: 700; font-size: 12px;
    letter-spacing: var(--label-tracking); text-transform: var(--case);
    color: var(--accent-on-bone);
}
.shot h3 { font-size: 21px; margin: 0; }
.shot p { font-size: 15.5px; line-height: 1.5; color: var(--body-bone); }
:root[dir="rtl"] .shot p { line-height: 1.8; }
.shot-cta-panel {
    background: var(--ink); color: var(--bone); padding: 22px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.shot-cta-panel .shot-step { color: var(--accent); }
.shot-cta-panel h3 { margin-top: 8px; }
.shot-cta-panel p { color: var(--body-ink); margin-top: 12px; }
.shot-cta-panel .btn { margin-top: 22px; text-align: center; }

/* ═══ How: 4 systems, one order — plain bordered-top cells, no arrows/dots ═══════════════════ */
.systems-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,210px),1fr));
    gap: 0 clamp(20px,3vw,34px); margin-top: clamp(22px,4vw,40px);
    list-style: none; margin-inline: 0; margin-bottom: 0; padding: 0;
}
.systems-cell { border-block-start: 2px solid var(--bone); padding: 20px 0 26px; }
.systems-sys {
    font-family: var(--f-label); font-weight: 700; font-size: 11.5px;
    letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--accent);
}
.systems-n {
    font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 44px;
    line-height: 1; letter-spacing: -.04em; color: var(--rule); padding-top: 10px;
}
:root[dir="rtl"] .systems-n { font-size: 40px; line-height: 1.15; }
.systems-cell h3 { font-size: 20px; margin: 8px 0 6px; }
.systems-cell p { font-size: 15.5px; line-height: 1.5; color: var(--body-ink); }
:root[dir="rtl"] .systems-cell p { line-height: 1.8; }
.systems-close {
    margin-top: 20px; font-family: var(--f-label); font-weight: 700;
    font-size: clamp(15px,1.6vw,19px); letter-spacing: var(--label-tracking);
    text-transform: var(--case); color: var(--accent);
}
:root[dir="rtl"] .systems-close { line-height: 1.6; }

/* ═══ Commission calculator ═══════════════════════════════════════════════════════════════════ */
.comm-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,320px),1fr));
    gap: clamp(26px,5vw,64px); align-items: start;
}
.comm-copy p { margin-top: 16px; max-width: 44ch; }
.comm-sliders { margin-top: clamp(24px,4vw,40px); display: grid; gap: 22px; max-width: 460px; }
.comm-slider-row { display: block; }
.comm-slider-label {
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: var(--f-label); font-weight: 700; font-size: 11.5px;
    letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone);
}
:root[dir="rtl"] .comm-slider-label { font-weight: 600; font-size: 13.5px; }
/* No colour token here on purpose -- inherits whichever text colour is ambient wherever this
   component is dropped (ink on /landing's on-bone commission section, bone on the savings page's
   ink-coloured calculator box), so it always reads as the strong/high-contrast value rather than
   assuming one specific background. Same reasoning for the track below. */
.comm-slider-val { font-size: 16px; letter-spacing: 0; font-weight: 700; }
.comm-val-input {
    font: inherit; color: inherit; background: transparent; text-align: end;
    border: 0; border-block-end: 1px solid color-mix(in srgb, currentColor 35%, transparent);
    padding: 0; -moz-appearance: textfield; appearance: textfield;
}
.comm-val-input:focus { outline: none; border-block-end-color: currentColor; }
.comm-val-input::-webkit-outer-spin-button,
.comm-val-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.comm-sliders input[type="range"] {
    width: 100%; margin-top: 14px; -webkit-appearance: none; appearance: none; background: transparent;
    direction: ltr;
    /* color-scheme (set on <html>) makes browsers give range inputs their own UA text colour
       instead of actually inheriting the page's -- explicit color:inherit is required to get
       currentColor (used by the track below) to mean what it looks like it means. */
    color: inherit;
}
.comm-sliders input[type="range"]::-webkit-slider-runnable-track { height: 2px; background: color-mix(in srgb, currentColor 25%, transparent); }
.comm-sliders input[type="range"]::-moz-range-track { height: 2px; background: color-mix(in srgb, currentColor 25%, transparent); }
.comm-sliders input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 20px; height: 20px; margin-top: -9px;
    background: var(--accent); border: 0; border-radius: 0; cursor: grab;
}
.comm-sliders input[type="range"]::-moz-range-thumb {
    width: 20px; height: 20px; background: var(--accent); border: 0; border-radius: 0; cursor: grab;
}
.comm-panel { background: var(--ink); color: var(--bone); padding: clamp(22px,3vw,34px); }
.comm-panel-label { font-family: var(--f-label); font-weight: 700; font-size: 11.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-ink); }
:root[dir="rtl"] .comm-panel-label { font-weight: 600; font-size: 13.5px; }
.comm-amount {
    font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(52px,9vw,118px);
    line-height: .88; letter-spacing: -.05em; color: var(--accent); padding-top: 12px;
}
:root[dir="rtl"] .comm-amount { font-size: clamp(46px,8vw,104px); line-height: 1.1; letter-spacing: -.03em; }
.comm-sub-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(16px,3vw,32px);
    margin-top: 24px; border-block-start: 2px solid var(--rule);
}
.comm-sub-cell { padding: 16px 0; }
.comm-sub-figure {
    font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(26px,3vw,38px);
    letter-spacing: -.03em; padding-top: 6px;
}
:root[dir="rtl"] .comm-sub-figure { line-height: 1.15; }
.comm-panel p.lead { margin-top: 22px; }
.comm-panel .btn { margin-top: 22px; }

/* ═══ Automation ═══════════════════════════════════════════════════════════════════════════════ */
.auto-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,300px),1fr));
    gap: 0 clamp(24px,4vw,48px); margin-top: clamp(22px,4vw,40px);
}
.auto-card { border-block-start: 2px solid var(--bone); padding: 22px 0 26px; }
.auto-card h3 { font-size: 23px; }
.auto-card p { margin-top: 12px; font-size: 16px; line-height: 1.55; color: var(--body-ink); max-width: 44ch; }
:root[dir="rtl"] .auto-card p { line-height: 1.85; }
.auto-flow {
    list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px;
    font-family: var(--f-label); font-weight: 700; font-size: 11.5px;
    letter-spacing: var(--label-tracking); text-transform: var(--case);
}
:root[dir="rtl"] .auto-flow { font-weight: 600; font-size: 13px; }
.auto-flow li { border: 2px solid var(--rule); color: var(--body-ink); padding: 8px 12px; }
.auto-flow li.is-final { border: 0; background: var(--accent); color: var(--ink); padding: 10px 12px; font-weight: 700; }

/* ═══ Three products ═══════════════════════════════════════════════════════════════════════════ */
.card-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr));
    gap: 20px; padding-top: clamp(24px,4vw,44px);
}
.card-bordered { border: 2px solid var(--ink); padding: 24px; }
.card-n {
    font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 56px;
    line-height: .9; letter-spacing: -.05em; color: var(--accent);
}
:root[dir="rtl"] .card-n { font-size: 50px; line-height: 1.15; }
.card-bordered h3 { font-size: 24px; margin: 14px 0 8px; }
.card-bordered p { font-size: 16px; line-height: 1.55; color: var(--body-bone); }
:root[dir="rtl"] .card-bordered p { line-height: 1.85; }

/* ═══ Positioning (kept, restyled to the same bordered-card + "vs" shape) ═════════════════════ */
.position-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr));
    gap: 20px; padding-top: clamp(24px,4vw,44px); align-items: stretch;
}
.position-card { border: 2px solid var(--ink); padding: 24px; display: grid; gap: 14px; align-content: start; }
.position-card--good { border-color: var(--accent); }
.position-tag {
    font-family: var(--f-label); font-weight: 700; font-size: 12.5px;
    letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone);
}
:root[dir="rtl"] .position-tag { font-weight: 600; font-size: 13.5px; }
.position-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 16px; color: var(--body-bone); }
:root[dir="rtl"] .position-list { line-height: 1.75; }
.position-card--good .position-list { color: var(--strong-bone); }
.position-list li { padding-inline-start: 18px; position: relative; }
.position-list li::before { content: "–"; position: absolute; inset-inline-start: 0; color: var(--muted-bone); }
.position-card--good .position-list li::before { content: "✓"; color: var(--accent-on-bone); }
.position-vs {
    grid-column: 1 / -1; justify-self: center; font-family: var(--f-label); font-size: 12.5px;
    font-weight: 700; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone);
}

/* ═══ "What you stop doing by hand" (replaces the old .sol cards) ════════════════════════════ */
.manual-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,250px),1fr));
    gap: clamp(20px,3vw,40px); padding-top: clamp(24px,4vw,40px);
}
.manual-col-head {
    margin: 0 0 14px; font-family: var(--f-label); font-weight: 700; font-size: 12px;
    letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--accent);
    border-block-end: 2px solid var(--accent); padding-bottom: 10px;
}
:root[dir="rtl"] .manual-col-head { font-weight: 700; font-size: 14px; }
.manual-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 16px; line-height: 1.45; color: var(--body-ink); }
:root[dir="rtl"] .manual-list { line-height: 1.75; }

/* ═══ Depth / "beyond ordering" (kept, restyled as bordered cards) ════════════════════════════ */
.depth-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,260px),1fr));
    gap: 20px; padding-top: clamp(24px,4vw,44px);
}
.depth-card { border: 2px solid var(--ink); padding: 24px; display: grid; gap: 12px; align-content: start; }
.depth-card h3 { font-size: 20px; }
.depth-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.depth-card li { position: relative; padding-inline-start: 16px; font-size: 15px; line-height: 1.5; color: var(--body-bone); }
:root[dir="rtl"] .depth-card li { line-height: 1.8; }
.depth-card li::before { content: "–"; position: absolute; inset-inline-start: 0; color: var(--muted-bone); }

/* ═══ Industries: tag cloud on the one accent-background section ═════════════════════════════ */
.tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: clamp(22px,3vw,36px); }
.tag {
    font-family: var(--f-label); font-weight: 700; font-size: 13px;
    letter-spacing: var(--label-tracking); text-transform: var(--case);
    border: 2px solid var(--ink); padding: 8px 14px;
}
:root[dir="rtl"] .tag { font-weight: 600; font-size: 14px; }
.tag-hot { border: 0; background: var(--ink); color: var(--bone); padding: 10px 14px; }
.on-accent p.lead { color: var(--ink); margin-top: 24px; max-width: 54ch; }
:root[dir="rtl"] .on-accent p.lead { max-width: 58ch; }

/* ═══ Testimonials (kept, restyled as bordered cards) ═════════════════════════════════════════ */
.testi-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr));
    gap: 20px; padding-top: clamp(24px,4vw,44px);
}
.testi-card { border: 2px solid var(--ink); padding: 26px; display: grid; gap: 14px; align-content: start; }
.testi-stars { display: flex; gap: 2px; font-size: .95rem; line-height: 1; }
.testi-star { color: var(--table-rule); }
.testi-star.is-filled { color: var(--accent-on-bone); }
.testi-quote { font-size: 16px; line-height: 1.5; color: var(--ink); }
:root[dir="rtl"] .testi-quote { line-height: 1.8; }
.testi-attr { display: grid; gap: 2px; }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 13.5px; color: var(--muted-bone); }

/* ═══ "What changes on Monday" (split out of the old #industries) ════════════════════════════ */
.monday-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,260px),1fr));
    gap: 0 clamp(20px,3vw,34px); margin-top: clamp(22px,4vw,40px);
}
.monday-item { border-block-start: 2px solid var(--rule); padding: 18px 0; display: flex; gap: 16px; align-items: baseline; }
.monday-n { font-family: var(--f-label); font-size: 12px; font-weight: 700; color: var(--accent); }
.monday-item span:last-child { font-size: 18.5px; line-height: 1.4; }
:root[dir="rtl"] .monday-item span:last-child { font-size: 17.5px; line-height: 1.75; }

/* ═══ QR tool (kept, restyled into the same 2-col ink-panel shape as the calculator) ══════════ */
.qrtool-panel {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr));
    gap: clamp(26px,5vw,48px); align-items: center; padding-top: clamp(24px,4vw,44px);
}
.qrtool-form.form-card { margin-bottom: 0; }
.qrtool-result[hidden] { display: none; }
.qrtool-result { display: grid; justify-items: center; gap: 14px; align-content: center; min-height: 220px; }
.qr-frame {
    position: relative; width: 200px; height: 200px; flex: none; display: grid; place-items: center;
    background: #fff; padding: 20px;
}
.qr-frame img { width: 100%; height: 100%; display: block; opacity: 0; transform: scale(.92); transition: opacity .3s ease .08s, transform .3s ease .08s; }
.qrtool-result.is-visible .qr-frame img { opacity: 1; transform: scale(1); }
.qr-corner { position: absolute; width: 26px; height: 26px; border: 3px solid var(--accent); opacity: 0; transform: scale(.5); transition: opacity .22s ease, transform .22s ease; }
.qr-corner--tl { top: -3px; left: -3px; border-inline-end: none; border-block-end: none; }
.qr-corner--tr { top: -3px; right: -3px; border-inline-start: none; border-block-end: none; }
.qr-corner--bl { bottom: -3px; left: -3px; border-inline-end: none; border-block-start: none; }
.qr-corner--br { bottom: -3px; right: -3px; border-inline-start: none; border-block-start: none; }
.qrtool-result.is-visible .qr-corner { opacity: 1; transform: scale(1); }
.qrtool-download { font-family: var(--f-label); font-size: 13px; font-weight: 700; color: var(--accent-on-bone); text-decoration: underline; opacity: 0; transition: opacity .3s ease .3s; }
.qrtool-result.is-visible .qrtool-download { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
    .qr-frame img, .qr-corner, .qrtool-download { transition: none; opacity: 1; transform: none; }
}

/* ═══ Try it now (kept, restyled to sit on ink like the ordering CTA panel) ═══════════════════ */
.try-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,240px),1fr));
    gap: clamp(26px,5vw,48px); align-items: center; padding-top: clamp(24px,4vw,44px);
}
.try-copy h2 { margin-bottom: 22px; }
.try-cta { display: inline-flex; align-items: center; gap: 10px; }
.try-qr-frame {
    position: relative; width: 208px; height: 208px; flex: none; display: grid; place-items: center;
    background: #fff; padding: 20px; justify-self: center;
}
.try-qr-frame img { width: 100%; height: 100%; display: block; }
.try-corner { position: absolute; width: 26px; height: 26px; border: 3px solid var(--accent); }
.try-corner--tl { top: -3px; left: -3px; border-inline-end: none; border-block-end: none; }
.try-corner--tr { top: -3px; right: -3px; border-inline-start: none; border-block-end: none; }
.try-corner--bl { bottom: -3px; left: -3px; border-inline-end: none; border-block-start: none; }
.try-corner--br { bottom: -3px; right: -3px; border-inline-start: none; border-block-start: none; }

/* ═══ Plans ════════════════════════════════════════════════════════════════════════════════════ */
.plans-controls {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
    margin-top: clamp(20px,3vw,32px); padding-top: clamp(20px,3vw,32px);
    border-block-start: 2px solid var(--table-rule);
}
.curr-switch { display: flex; border: 2px solid var(--ink); }
.curr-btn {
    font-family: var(--f-label); font-weight: 700; font-size: 12.5px;
    letter-spacing: var(--label-tracking); text-transform: var(--case);
    background: transparent; color: var(--ink); border: 0; padding: 12px 20px; cursor: pointer;
}
:root[dir="rtl"] .curr-btn { font-weight: 700; font-size: 14px; }
.curr-btn.is-active { background: var(--ink); color: var(--bone); }
.curr-note { font-family: var(--f-label); font-weight: 700; font-size: 12.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--accent-on-bone); }
:root[dir="rtl"] .curr-note { font-weight: 700; font-size: 14px; }
.curr-select {
    font-family: var(--f-label); font-weight: 700; font-size: 12.5px; letter-spacing: var(--label-tracking); text-transform: var(--case);
    background: var(--bone); color: var(--ink); border: 2px solid var(--ink);
    padding: 11px 30px 11px 13px; cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%230A0A0A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 11px center; background-size: 10px 7px;
}
[dir="rtl"] .curr-select { padding: 11px 13px 11px 30px; background-position: left 11px center; }

.plans {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,280px),1fr));
    gap: 20px; padding-top: clamp(24px,4vw,40px);
}
.plan { border: 2px solid var(--ink); padding: 24px; display: flex; flex-direction: column; }
.plan-mid { background: var(--ink); color: var(--bone); border: 0; }
.plan-head-row { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.plan-tag { font-family: var(--f-label); font-weight: 700; font-size: 12.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone); }
:root[dir="rtl"] .plan-tag { font-weight: 600; font-size: 13.5px; }
.plan-mid .plan-tag { color: var(--accent); }
.plan-badge { font-family: var(--f-label); font-weight: 700; font-size: 11px; letter-spacing: var(--label-tracking); text-transform: var(--case); background: var(--accent); color: var(--ink); padding: 4px 8px; }
.plan-name { font-family: var(--f-display); font-weight: 900; font-size: 30px; margin: 10px 0 0; }
:root[dir="rtl"] .plan-name { font-size: 26px; line-height: 1.45; }
.plan-desc { font-size: 15.5px; line-height: 1.5; color: var(--body-bone); margin-top: 8px; }
:root[dir="rtl"] .plan-desc { line-height: 1.8; }
.plan-mid .plan-desc { color: var(--body-ink); }
.plan-price { padding-top: 16px; display: flex; align-items: baseline; gap: 8px; }
.plan-price b { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(38px,4.4vw,54px); letter-spacing: -.05em; }
:root[dir="rtl"] .plan-price b { font-size: clamp(34px,4vw,48px); line-height: 1.2; letter-spacing: -.02em; }
.plan-price small { font-family: var(--f-label); font-weight: 700; font-size: 12px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone); }
:root[dir="rtl"] .plan-price small { font-weight: 600; font-size: 13.5px; }
.plan-mid .plan-price small { color: var(--muted-ink); }
.plan-branch { font-family: var(--f-label); font-weight: 700; font-size: 11.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone); padding-top: 6px; }
:root[dir="rtl"] .plan-branch { font-weight: 600; font-size: 13.5px; }
.plan-mid .plan-branch { color: var(--muted-ink); }
.plan ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; font-size: 15.5px; line-height: 1.45; color: var(--strong-bone); flex: 1; }
:root[dir="rtl"] .plan ul { line-height: 1.75; }
.plan-mid ul { color: var(--bone); }
.plan li.is-inherited { color: var(--muted-bone); }
.plan-mid li.is-inherited { color: var(--muted-ink); }
.plan .btn { margin-top: 22px; }

.addon-note { margin-top: 22px; font-size: 16px; line-height: 1.55; color: var(--body-bone); }
:root[dir="rtl"] .addon-note { line-height: 1.85; }
.addon-note b { font-weight: 700; color: var(--ink); }

.included-title { margin: 0 0 16px; font-family: var(--f-label); font-weight: 700; font-size: 12px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--accent-on-bone); }
:root[dir="rtl"] .included-title { font-weight: 700; font-size: 14px; }
.included-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,230px),1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; font-size: 15.5px; line-height: 1.45; color: var(--strong-bone); }
:root[dir="rtl"] .included-list { line-height: 1.75; }
.included-strip { padding-top: clamp(26px,4vw,44px); }

.compare-wrap { padding-top: clamp(26px,4vw,44px); overflow-x: auto; }
.compare-title { margin: 0 0 16px; font-family: var(--f-label); font-weight: 700; font-size: 12px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--accent-on-bone); }
:root[dir="rtl"] .compare-title { font-weight: 700; font-size: 14px; }
.compare { width: 100%; min-width: 600px; border-collapse: collapse; font-size: 15.5px; }
.compare th, .compare td { padding: 12px 14px; text-align: start; }
.compare thead tr { background: var(--ink); color: var(--bone); font-family: var(--f-label); font-weight: 700; font-size: 11.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); }
:root[dir="rtl"] .compare thead tr { font-weight: 700; font-size: 13.5px; }
.compare thead th.is-mid { color: var(--accent); }
.compare tbody tr { border-block-end: 2px solid var(--table-rule); }
.compare tbody td:first-child { color: var(--strong-bone); }
.compare tbody td:not(:first-child) { color: var(--body-bone); }
.compare tbody td.is-mid { font-weight: 600; color: var(--ink); }

/* ═══ FAQ: single-open accordion (replaces <details>) ═════════════════════════════════════════ */
.faq-item { border-block-start: 2px solid var(--rule); }
.faq-q {
    width: 100%; display: flex; gap: 20px; align-items: baseline; justify-content: space-between;
    background: none; border: 0; padding: 20px 0; text-align: start; cursor: pointer; color: var(--bone);
    font-family: var(--f-display); font-weight: 800; font-size: clamp(17px,1.9vw,24px);
    letter-spacing: var(--h3-ls); text-transform: var(--case); line-height: 1.15;
}
:root[dir="rtl"] .faq-q { font-size: clamp(16px,1.8vw,22px); line-height: 1.5; }
.faq-sign { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; color: var(--accent); flex: none; }
.faq-a { margin: 0; padding: 0 0 24px; font-size: 17px; line-height: 1.6; color: var(--body-ink); max-width: 72ch; }
:root[dir="rtl"] .faq-a { line-height: 1.9; max-width: 76ch; }
.faq-a[hidden] { display: none; }

/* ═══ Contact ══════════════════════════════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,300px),1fr));
    gap: clamp(26px,5vw,64px);
}
.contact-info { margin-top: clamp(24px,4vw,40px); display: grid; gap: 0; max-width: 40ch; }
.contact-info-block { border-block-start: 2px solid var(--ink); padding: 16px 0; }
.contact-info-k { font-family: var(--f-label); font-weight: 700; font-size: 11.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone); }
:root[dir="rtl"] .contact-info-k { font-weight: 600; font-size: 13.5px; }
.contact-info-v { font-size: 16px; line-height: 1.5; padding-top: 5px; }
:root[dir="rtl"] .contact-info-v { line-height: 1.8; }

.form-card { display: grid; gap: 16px; align-content: start; }
.field { display: grid; gap: 7px; min-width: 0; }
.field-label { font-family: var(--f-label); font-weight: 700; font-size: 11.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone); }
:root[dir="rtl"] .field-label { font-weight: 600; font-size: 13.5px; }
.field input, .field textarea {
    width: 100%; min-width: 0; border: 2px solid var(--ink); background: var(--bone);
    padding: 13px 14px; font-size: 16px; color: var(--ink); outline: none; font-family: inherit;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; }
.field-row-2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,180px),1fr)); gap: 16px; }

.intent-fieldset { border: 0; margin: 0; padding: 4px 0 0; }
.intent-legend { font-family: var(--f-label); font-weight: 700; font-size: 11.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone); padding: 0 0 10px; }
:root[dir="rtl"] .intent-legend { font-weight: 600; font-size: 13.5px; }
.intent-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.intent-chip {
    font-family: var(--f-label); font-weight: 600; font-size: 12px; letter-spacing: var(--label-tracking); text-transform: var(--case);
    padding: 9px 14px; cursor: pointer; border: 2px solid var(--ink); background: transparent; color: var(--ink);
}
:root[dir="rtl"] .intent-chip { font-size: 13.5px; }
.intent-chip.is-active { border: 0; padding: 11px 14px; background: var(--accent); font-weight: 700; }

.contact-submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.contact-submit-note { font-family: var(--f-label); font-weight: 700; font-size: 12.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-bone); }
:root[dir="rtl"] .contact-submit-note { font-weight: 600; font-size: 14px; }
.err { margin: 4px 0 0; font-size: .8rem; color: #FF9A8D; }
.field input.invalid, .field textarea.invalid { border-color: #FF9A8D; }

/* ═══ Closing CTA + footer ═════════════════════════════════════════════════════════════════════ */
.closing { padding-block: clamp(40px,7vw,90px); }
.closing h2 { font-size: clamp(38px,8.6vw,118px); line-height: .86; letter-spacing: -.05em; }
:root[dir="rtl"] .closing h2 { font-size: clamp(32px,7vw,96px); line-height: 1.42; letter-spacing: 0; }
.closing h2 .accent-word { color: var(--accent); }
.closing-cta { display: flex; flex-wrap: wrap; gap: 10px; padding-top: clamp(22px,3vw,36px); }

footer { border-block-start: 2px solid var(--rule); }
.foot-in {
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
    padding: 20px var(--gutter) 36px; font-family: var(--f-label); font-weight: 700;
    font-size: 11.5px; letter-spacing: var(--label-tracking); text-transform: var(--case); color: var(--muted-ink);
}
:root[dir="rtl"] .foot-in { font-weight: 600; font-size: 13.5px; }
.foot-in a { color: var(--muted-ink); }
.foot-in a:hover { color: var(--bone); }

/* ═══ Toast (contact form status) ═════════════════════════════════════════════════════════════ */
.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; }
.toast {
    position: fixed; inset-inline: 16px; bottom: 16px; margin-inline: auto; max-width: 26rem; z-index: 90;
    background: var(--ink); color: var(--bone); padding: 13px 16px; font-size: .92rem;
    border: 2px solid var(--bone);
}
.toast-error { background: #7A1B12; border-color: #FF9A8D; }

@media (prefers-reduced-motion: reduce) {
    .btn { transition: none; }
}

/* ═══ Delivery-vs-commission savings one-pager (standalone page, lighter header) ══════════════ */
.mini-nav { padding-block: 20px; border-block-end: 2px solid var(--rule); }
.mini-nav-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; row-gap: 12px; }
.mini-nav-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; row-gap: 10px; }
.sec-head-page { padding-top: clamp(40px,6vw,72px); }
.savings-metric { margin-top: 14px; }
.savings-cta { text-align: center; }
.savings-cta-actions { justify-content: center; }
