@charset "UTF-8";
/* ==========================================================================
   KagajSewa — design system
   One primary colour (petrol), one accent (brass, reserved for price and
   "popular"), neutral greys with a faint cool bias. Borders carry structure;
   shadows are used only where something genuinely floats.
   ========================================================================== */

:root {
  /* --- brand --- */
  --brand:      #0d5561;
  --brand-600:  #0a4753;
  --brand-700:  #073843;
  --brand-50:   #e9f2f4;
  --brand-100:  #d3e5e8;

  /* --- accent: price, popular badge. nothing else. --- */
  --accent:     #96681a;
  --accent-600: #7d5615;
  --accent-50:  #faf1de;

  /* --- semantic --- */
  --ok:         #17694f;
  --ok-50:      #e6f2ee;
  --warn:       #8a5b13;
  --warn-50:    #fbf1de;

  /* --- neutrals --- */
  --bg:         #ffffff;
  --bg-soft:    #f5f8f8;
  --bg-sunk:    #eef3f4;
  --card:       #ffffff;
  --ink:        #10201f;
  --ink-2:      #4a5c60;
  --ink-3:      #6f8288;
  --line:       #dfe7e9;
  --line-2:     #c9d5d8;

  /* --- shape --- */
  --r:    8px;
  --r-sm: 6px;
  --r-pill: 999px;
  --shadow: 0 1px 2px rgba(16, 32, 31, .04), 0 6px 20px rgba(16, 32, 31, .06);
  --shadow-lg: 0 2px 6px rgba(16, 32, 31, .06), 0 18px 40px rgba(16, 32, 31, .1);

  /* --- type --- */
  --f-latin: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --f-deva:  "Noto Sans Devanagari", "Mukta", "Kalimati", var(--f-latin);
  --f-ui:    var(--f-latin);

  /* --- metrics --- */
  --wrap: 1160px;
  --gut: 20px;
  --hdr-h: 62px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --brand:     #4fb3c4;
    --brand-600: #6ac4d3;
    --brand-700: #8ad6e2;
    --brand-50:  #10333a;
    --brand-100: #16424b;

    --accent:    #d9a84f;
    --accent-600:#e6bd72;
    --accent-50: #33280f;

    --ok:        #4fbf9a;
    --ok-50:     #102f27;
    --warn:      #d5a44c;
    --warn-50:   #33280f;

    --bg:        #0a1214;
    --bg-soft:   #0f1a1d;
    --bg-sunk:   #142226;
    --card:      #101c20;
    --ink:       #e4edee;
    --ink-2:     #a7b9bd;
    --ink-3:     #7e9298;
    --line:      #22343a;
    --line-2:    #31474e;

    --shadow: 0 1px 2px rgba(0,0,0,.4);
    --shadow-lg: 0 2px 6px rgba(0,0,0,.4), 0 18px 40px rgba(0,0,0,.5);
  }
}

/* ==========================================================================
   base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Devanagari needs more leading and a slightly larger optical size. */
html[lang="ne"] body { font-family: var(--f-deva); line-height: 1.78; font-size: 16.5px; }
html[lang="ne"] h1, html[lang="ne"] h2, html[lang="ne"] h3,
html[lang="ne"] h4, html[lang="ne"] .h-alt { line-height: 1.42; }

/* Devanagari fragments inside an English page, and vice versa. */
.deva { font-family: var(--f-deva); }
.latn { font-family: var(--f-latin); }

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.018em; text-wrap: balance; }
h1 { font-size: clamp(1.72rem, 5.2vw, 2.7rem); line-height: 1.16; }
h2 { font-size: clamp(1.34rem, 3.6vw, 1.92rem); line-height: 1.22; }
h3 { font-size: clamp(1.08rem, 2.4vw, 1.24rem); line-height: 1.32; letter-spacing: -0.012em; }
h4 { font-size: 1rem; line-height: 1.4; letter-spacing: -0.006em; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .35em; }
li::marker { color: var(--ink-3); }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.prose { max-width: 68ch; }
.prose p, .prose li { color: var(--ink-2); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--brand); color: #fff; padding: 10px 16px; font-weight: 600;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   header
   ========================================================================== */

.hdr {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hdr-in { display: flex; align-items: center; gap: 12px; height: var(--hdr-h); }

.brand { display: flex; align-items: center; gap: 9px; color: var(--ink); flex: none; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-en { font-family: var(--f-latin); font-size: 1.12rem; font-weight: 700; letter-spacing: -0.02em; }
.brand-en b { font-weight: 700; color: var(--brand); }
.brand-np { font-family: var(--f-deva); font-size: .68rem; color: var(--ink-3); margin-top: 2px; letter-spacing: .01em; }

.nav-desk { display: none; }
.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.lang {
  display: inline-flex; border: 1px solid var(--line-2);
  border-radius: var(--r-sm); overflow: hidden; flex: none; background: var(--bg);
}
.lang a {
  font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  padding: 6px 9px; color: var(--ink-3); line-height: 1.3;
}
.lang a:hover { background: var(--bg-soft); text-decoration: none; color: var(--ink); }
.lang a[aria-current="true"] { background: var(--brand); color: #fff; }
.lang .np { font-family: var(--f-deva); }

.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--line-2);
  background: var(--bg); border-radius: var(--r-sm); color: var(--ink); cursor: pointer;
}
.menu-btn:hover { background: var(--bg-soft); }

.nav-mob {
  position: fixed; inset: var(--hdr-h) 0 0; z-index: 99;
  background: var(--bg); overflow-y: auto; padding: 8px var(--gut) 40px;
  border-top: 1px solid var(--line);
}
.nav-mob[hidden] { display: none; }
.nav-mob a.nl {
  display: block; padding: 13px 4px; font-size: 1.02rem; font-weight: 500;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.nav-mob a.nl:hover { color: var(--brand); text-decoration: none; }
.nav-mob .btn { margin-top: 18px; width: 100%; }

@media (min-width: 900px) {
  :root { --hdr-h: 68px; }
  .menu-btn { display: none; }
  .nav-mob { display: none !important; }
  .nav-desk { display: flex; align-items: center; gap: 2px; margin-left: 18px; }
  .nav-desk a.nl {
    font-size: .93rem; font-weight: 500; color: var(--ink-2);
    padding: 8px 11px; border-radius: var(--r-sm);
  }
  .nav-desk a.nl:hover { color: var(--ink); background: var(--bg-soft); text-decoration: none; }
}

/* ==========================================================================
   buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: .95rem; font-weight: 600; line-height: 1.25;
  min-height: 46px; padding: 11px 20px; border-radius: var(--r-sm);
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { background: var(--bg-soft); border-color: var(--ink-3); color: var(--ink); }
.btn-quiet { background: var(--brand-50); color: var(--brand); border-color: transparent; }
.btn-quiet:hover { background: var(--brand-100); color: var(--brand-700); }
.btn-sm { min-height: 38px; padding: 8px 14px; font-size: .87rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

.lnk {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .92rem; color: var(--brand);
}
.lnk svg { transition: transform .15s ease; }
.lnk:hover svg { transform: translateX(2px); }

/* sticky mobile action bar */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 8px; padding: 9px var(--gut);
  padding-bottom: calc(9px + env(safe-area-inset-bottom, 0px));
  background: var(--bg); border-top: 1px solid var(--line);
}
.sticky-cta .btn { flex: 1; min-height: 44px; font-size: .9rem; padding: 10px 12px; }
.sticky-cta .btn-icon { flex: 0 0 46px; padding: 0; }
body { padding-bottom: 68px; }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* ==========================================================================
   sections
   ========================================================================== */

.sec { padding: 44px 0; }
.sec-soft { background: var(--bg-soft); }
.sec-line { border-top: 1px solid var(--line); }
@media (min-width: 900px) { .sec { padding: 64px 0; } }

.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 9px;
}
html[lang="ne"] .eyebrow { letter-spacing: .06em; text-transform: none; font-size: .82rem; }
.sec-head { margin-bottom: 26px; }
.sec-head h2 { max-width: 22ch; }
.sec-head p { margin: 10px 0 0; color: var(--ink-2); max-width: 62ch; font-size: 1rem; }
.sec-head-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; justify-content: space-between; }

/* ==========================================================================
   breadcrumbs
   ========================================================================== */

.crumbs { padding: 14px 0 0; }
.crumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--ink-3);
}
.crumbs li { margin: 0; display: flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "›"; color: var(--line-2); }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--brand); }
.crumbs [aria-current] { color: var(--ink-2); font-weight: 500; }

/* ==========================================================================
   hero
   ========================================================================== */

.hero { padding: 30px 0 34px; }
.hero h1 { margin-bottom: 14px; }
.hero .lede { font-size: 1.03rem; color: var(--ink-2); max-width: 60ch; margin-bottom: 8px; }
.hero .sub {
  font-size: 1rem; font-weight: 600; color: var(--brand);
  margin: 0 0 22px; max-width: 46ch;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600; letter-spacing: .06em;
  color: var(--brand); background: var(--brand-50);
  padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.no-account {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .93rem; font-weight: 500; color: var(--ink-2);
  background: var(--ok-50); border-radius: var(--r-sm);
  padding: 12px 14px; margin-top: 20px;
}
.no-account svg { flex: none; color: var(--ok); margin-top: 2px; }

.benefits { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.benefits li { margin: 0; background: var(--card); padding: 13px 15px; }
.benefits b { display: block; font-size: .93rem; font-weight: 700; margin-bottom: 2px; }
.benefits span { font-size: .84rem; color: var(--ink-3); line-height: 1.5; }
@media (min-width: 560px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .benefits { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1000px) {
  .hero { padding: 46px 0 40px; }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); gap: 48px; align-items: start; }
}

/* ==========================================================================
   search
   ========================================================================== */

.search { position: relative; }
.search-box { position: relative; display: flex; align-items: center; }
.search-box svg.mag {
  position: absolute; left: 14px; color: var(--ink-3); pointer-events: none;
}
.search input {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--card); border: 1.5px solid var(--line-2);
  border-radius: var(--r); padding: 14px 14px 14px 44px; min-height: 52px;
  -webkit-appearance: none; appearance: none;
}
html[lang="ne"] .search input { font-family: var(--f-deva); }
.search input::placeholder { color: var(--ink-3); }
.search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-50); }
.search-hint { font-size: .82rem; color: var(--ink-3); margin: 8px 0 0; }

.search-results {
  margin-top: 10px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--card); overflow: hidden; box-shadow: var(--shadow);
}
.search-results[hidden] { display: none; }
.search-results a {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding: 12px 15px; border-bottom: 1px solid var(--line); color: var(--ink);
}
.search-results a:last-child { border-bottom: 0; }
.search-results a:hover, .search-results a:focus { background: var(--brand-50); text-decoration: none; }
.search-results .r-name { font-weight: 600; font-size: .95rem; }
.search-results .r-alt { font-size: .82rem; color: var(--ink-3); }
.search-results .r-cat { font-size: .74rem; color: var(--ink-3); margin-left: auto; }
.search-empty { padding: 16px 15px; font-size: .9rem; color: var(--ink-2); }

/* ==========================================================================
   badges
   ========================================================================== */

.pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em;
  padding: 3px 9px; border-radius: var(--r-pill); white-space: nowrap;
}
html[lang="ne"] .pill { font-size: .76rem; letter-spacing: 0; }
.pill-cat { background: var(--bg-sunk); color: var(--ink-2); }
.pill-pop { background: var(--accent-50); color: var(--accent); }
.pill-single { background: var(--brand-50); color: var(--brand); }
.pill-multi { background: var(--ok-50); color: var(--ok); }
.pill-both { background: var(--bg-sunk); color: var(--ink-2); }

.pill-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 11px; }

/* ==========================================================================
   service card
   ========================================================================== */

.grid { display: grid; gap: 14px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.card:hover { border-color: var(--line-2); box-shadow: var(--shadow); text-decoration: none; }

.svc-name { font-size: 1.06rem; font-weight: 700; letter-spacing: -0.014em; margin: 0 0 2px; color: var(--ink); line-height: 1.35; }
.svc-alt { font-size: .84rem; color: var(--ink-3); margin: 0 0 10px; font-family: var(--f-latin); }
html[lang="ne"] .svc-name { font-family: var(--f-deva); }
html[lang="en"] .svc-alt { font-family: var(--f-deva); }
.svc-desc { font-size: .89rem; color: var(--ink-2); margin: 0 0 14px; line-height: 1.58; flex: 1; }

.svc-docs { list-style: none; margin: 0 0 14px; padding: 0; }
.svc-docs li {
  position: relative; padding-left: 16px; font-size: .84rem;
  color: var(--ink-2); margin-bottom: 4px; line-height: 1.5;
}
.svc-docs li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--line-2);
}
.svc-more { font-size: .8rem; color: var(--ink-3); }

.svc-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 13px; border-top: 1px solid var(--line); margin-top: auto;
}
.price { display: flex; flex-direction: column; gap: 1px; }
.price .amt {
  font-size: 1.05rem; font-weight: 700; color: var(--accent);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
  font-family: var(--f-latin);
}
.price .from { font-size: .72rem; color: var(--ink-3); font-weight: 500; }
html[lang="ne"] .price .from { font-size: .76rem; }

/* ==========================================================================
   category card
   ========================================================================== */

.cat-card { display: flex; flex-direction: column; gap: 6px; }
.cat-office { font-size: .72rem; font-weight: 700; letter-spacing: .07em; color: var(--ink-3); text-transform: uppercase; }
html[lang="ne"] .cat-office { text-transform: none; letter-spacing: .02em; font-size: .78rem; }
.cat-name { font-size: 1.04rem; font-weight: 700; color: var(--ink); letter-spacing: -0.012em; }
.cat-desc { font-size: .87rem; color: var(--ink-2); line-height: 1.55; }
.cat-count { font-size: .78rem; color: var(--ink-3); margin-top: 4px; }

/* ==========================================================================
   shareholder chooser
   ========================================================================== */

.sh-grid { display: grid; gap: 14px; }
@media (min-width: 700px) { .sh-grid { grid-template-columns: 1fr 1fr; } }
.sh-card {
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 20px; background: var(--card);
  display: flex; flex-direction: column; gap: 8px;
}
.sh-card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--brand-50); color: var(--brand); margin-bottom: 6px;
}
.sh-card.is-multi .num { background: var(--ok-50); color: var(--ok); }
.sh-card h3 { margin-bottom: 2px; }
.sh-card p { font-size: .9rem; color: var(--ink-2); flex: 1; }
.sh-links { list-style: none; margin: 4px 0 14px; padding: 0; }
.sh-links li { margin-bottom: 6px; }
.sh-links a { font-size: .89rem; font-weight: 500; }

/* ==========================================================================
   steps
   ========================================================================== */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: s; }
.steps li { margin: 0; padding: 20px 0; border-top: 1px solid var(--line); display: flex; gap: 16px; }
.steps li:first-child { border-top: 0; padding-top: 0; }
.step-n {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .92rem; font-family: var(--f-latin);
}
.step-b h3 { margin-bottom: 5px; }
.step-b p { font-size: .92rem; color: var(--ink-2); margin: 0; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .steps li { border-top: 0; border-left: 1px solid var(--line); padding: 0 0 0 20px; flex-direction: column; gap: 12px; }
  .steps li:first-child { padding-top: 0; }
}

/* ==========================================================================
   why grid
   ========================================================================== */

.why-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-item { background: var(--card); padding: 22px 20px; }
.why-ico {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--brand-50); color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 13px;
}
.why-item h3 { font-size: 1.02rem; margin-bottom: 6px; }
.why-item p { font-size: .88rem; color: var(--ink-2); margin: 0; line-height: 1.6; }

/* ==========================================================================
   notes / callouts
   ========================================================================== */

.note {
  border: 1px solid var(--line); border-left: 3px solid var(--brand);
  background: var(--bg-soft); border-radius: var(--r-sm);
  padding: 15px 17px; margin: 18px 0;
}
.note.is-warn { border-left-color: var(--warn); background: var(--warn-50); }
.note.is-ok { border-left-color: var(--ok); background: var(--ok-50); }
.note h3, .note .note-h {
  font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-2); margin: 0 0 7px;
}
html[lang="ne"] .note h3, html[lang="ne"] .note .note-h { text-transform: none; letter-spacing: 0; font-size: .92rem; }
.note p, .note li { font-size: .9rem; color: var(--ink-2); }
.note ul { margin-bottom: 0; }

/* ==========================================================================
   service detail
   ========================================================================== */

.detail { padding: 20px 0 40px; }
@media (min-width: 1000px) {
  .detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 44px; align-items: start; }
  .detail-side { position: sticky; top: calc(var(--hdr-h) + 20px); }
}

.detail-head h1 { margin-bottom: 8px; }
.detail-head .alt {
  font-size: 1.02rem; color: var(--ink-3); margin: 0 0 14px; font-weight: 500;
}
html[lang="ne"] .detail-head .alt { font-family: var(--f-latin); }
html[lang="en"] .detail-head .alt { font-family: var(--f-deva); }
.detail-head .lede { font-size: 1.02rem; color: var(--ink-2); max-width: 62ch; }

.block { margin-top: 30px; }
.block > h2 {
  font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em;
  padding-bottom: 9px; border-bottom: 1px solid var(--line); margin-bottom: 14px;
}
.block ul { padding-left: 0; list-style: none; }
.block ul li {
  position: relative; padding-left: 24px; margin-bottom: 9px;
  color: var(--ink-2); font-size: .96rem;
}
.block ul li::before {
  content: ""; position: absolute; left: 4px; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}
.block ul.checks li::before {
  content: ""; left: 2px; top: .38em; width: 11px; height: 6px;
  border: 0; border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok);
  border-radius: 1px; background: none; transform: rotate(-45deg);
}

.kv { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.kv > div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 15px; border-top: 1px solid var(--line); font-size: .9rem; }
.kv > div:first-child { border-top: 0; }
.kv dt { color: var(--ink-3); margin: 0; }
.kv dd { margin: 0; font-weight: 600; text-align: right; }

.buy {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--card); padding: 20px; box-shadow: var(--shadow);
}
.buy .price-big {
  font-size: 1.7rem; font-weight: 700; color: var(--accent);
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
  font-family: var(--f-latin); line-height: 1.15;
}
.buy .price-lbl { font-size: .82rem; color: var(--ink-3); margin-bottom: 2px; }
.buy .price-note { font-size: .8rem; color: var(--ink-3); margin: 8px 0 16px; line-height: 1.5; }
.buy .btn { margin-bottom: 8px; }
.buy .contact-mini { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-3); }
.buy .contact-mini a { display: block; margin-top: 5px; font-weight: 600; word-break: break-word; }

.variants { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.variants > div { padding: 12px 15px; border-top: 1px solid var(--line); }
.variants > div:first-child { border-top: 0; }
.variants b { display: block; font-size: .92rem; margin-bottom: 2px; }
.variants span { font-size: .86rem; color: var(--ink-2); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 16px 40px 16px 0; font-weight: 600; font-size: 1rem;
  color: var(--ink); line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 10px; top: 50%; margin-top: -5px;
  width: 9px; height: 9px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--brand); }
.faq .ans { padding: 0 0 18px; margin: 0; color: var(--ink-2); font-size: .95rem; max-width: 70ch; }

/* ==========================================================================
   guide article
   ========================================================================== */

.guide-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  font-size: .82rem; color: var(--ink-3);
  padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 18px 0 26px;
}
.guide-meta a { color: var(--ink-3); text-decoration: underline; text-underline-offset: 2px; }
.guide-meta a:hover { color: var(--brand); }

.steps-num { list-style: none; margin: 0; padding: 0; counter-reset: gs; }
.steps-num li {
  counter-increment: gs; position: relative; padding-left: 40px;
  margin-bottom: 16px; color: var(--ink-2); font-size: .96rem;
}
.steps-num li::before {
  content: counter(gs); position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand-50); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; font-family: var(--f-latin);
}
.steps-num b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }

/* ==========================================================================
   contact
   ========================================================================== */

.contact-band { background: var(--brand); color: #fff; }
.contact-band h2 { color: #fff; }
.contact-band .eyebrow { color: var(--accent-50); }
.contact-band .sec-head p { color: rgba(255,255,255,.84); }
.contact-grid { display: grid; gap: 26px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 44px; } }

.ccard {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r); padding: 15px 16px; color: #fff; margin-bottom: 10px;
}
.ccard:hover { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }
.ccard-ico { flex: none; width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; }
.ccard-lbl { font-size: .74rem; color: rgba(255,255,255,.7); letter-spacing: .05em; }
.ccard-val { font-size: 1.02rem; font-weight: 600; word-break: break-word; }

.contact-facts { border-top: 1px solid rgba(255,255,255,.2); margin-top: 18px; padding-top: 16px; display: grid; gap: 9px; }
.contact-facts > div { display: flex; justify-content: space-between; gap: 16px; font-size: .9rem; }
.contact-facts dt { color: rgba(255,255,255,.72); margin: 0; }
.contact-facts dd { margin: 0; font-weight: 600; text-align: right; }
.contact-what { background: rgba(255,255,255,.08); border-radius: var(--r); padding: 16px 18px; margin-top: 18px; }
.contact-what h3 { font-size: .95rem; color: #fff; margin-bottom: 8px; }
.contact-what ul { margin: 0; padding-left: 18px; }
.contact-what li { color: rgba(255,255,255,.86); font-size: .9rem; }
.contact-what li::marker { color: rgba(255,255,255,.45); }

/* ==========================================================================
   pricing explainer
   ========================================================================== */

.pricing-grid { display: grid; gap: 14px; }
@media (min-width: 800px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-item { border: 1px solid var(--line); border-radius: var(--r); padding: 18px; background: var(--card); }
.pricing-item h3 { font-size: 1rem; margin-bottom: 7px; }
.pricing-item p { font-size: .89rem; color: var(--ink-2); margin: 0; }

/* ==========================================================================
   footer
   ========================================================================== */

.ftr { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 40px 0 30px; margin-top: 0; }
.ftr-grid { display: grid; gap: 28px; }
@media (min-width: 640px) { .ftr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ftr-grid { grid-template-columns: 1.5fr repeat(4, 1fr); } }
.ftr h4 { font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
html[lang="ne"] .ftr h4 { text-transform: none; letter-spacing: .02em; font-size: .88rem; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: 8px; }
.ftr a { font-size: .89rem; color: var(--ink-2); }
.ftr a:hover { color: var(--brand); }
.ftr-blurb { font-size: .88rem; color: var(--ink-2); margin: 12px 0 0; max-width: 38ch; }
.ftr-legal { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.ftr-legal p { font-size: .8rem; color: var(--ink-3); line-height: 1.65; max-width: 82ch; }
.ftr-bot {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  margin-top: 18px; font-size: .82rem; color: var(--ink-3);
}
.ftr-bot nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.ftr-bot a { font-size: .82rem; color: var(--ink-3); }

/* ==========================================================================
   404
   ========================================================================== */

.nf { padding: 60px 0 70px; text-align: center; }
.nf .code { font-size: 3.4rem; font-weight: 700; color: var(--brand-100); font-family: var(--f-latin); line-height: 1; margin-bottom: 10px; }
.nf p { color: var(--ink-2); max-width: 48ch; margin-inline: auto; }
.nf .search { max-width: 520px; margin: 26px auto 0; text-align: left; }

/* ==========================================================================
   misc
   ========================================================================== */

.stack > * + * { margin-top: 14px; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.center { text-align: center; }
.muted { color: var(--ink-3); }
.tabnum { font-variant-numeric: tabular-nums; }
.nowrap { white-space: nowrap; }

.list-plain { list-style: none; padding: 0; margin: 0; }
.list-plain li { margin-bottom: 8px; }

.chip-links { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-links a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .87rem; font-weight: 500; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 7px 14px; background: var(--card);
}
.chip-links a:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; background: var(--brand-50); }

/* Mobile: the sticky bottom bar carries the CTA, so keep the header compact. */
.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }
