/* ==========================================================================
   hashaa.mn — «Ууган Төмөрт» ХХК
   Үндсэн загварын хуудас
   ========================================================================== */

/* ── Токен ─────────────────────────────────────────────────────────────── */
:root {
  /* Өнгө */
  --green:        #0F3D2E;
  --green-deep:   #0A2A20;
  --green-live:   #1B5E43;
  --gold:         #C9A227;
  --gold-soft:    #FBF3E0;
  --gold-dark:    #8A6D14;
  --steel:        #4B5563;
  --steel-soft:   #6B7280;
  --bg:           #FFFFFF;
  --bg-alt:       #F4F6F5;
  --bg-tint:      #F7F9F8;
  --text:         #111827;
  --text-soft:    #374151;
  --line:         #E3E8E5;
  --line-strong:  #D5DDD9;
  --ok:           #15803D;
  --err:          #B42318;
  --err-soft:     #FEF3F2;
  --on-dark:      #B8CBC2;
  --on-dark-dim:  #8FA79B;

  /* Типографи */
  --f-head: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Зай */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Хэлбэр */
  --r-sm: 6px; --r: 8px; --r-md: 12px; --r-lg: 14px; --r-xl: 16px;
  --shadow:    0 1px 3px rgba(0,0,0,.06);
  --shadow-up: 0 8px 24px rgba(0,0,0,.10);
  --ease: 180ms cubic-bezier(.4, 0, .2, 1);

  /* Зохион байгуулалт */
  --wrap: 1200px;
  --pad: 20px;
  --header-h: 76px;
}

@media (min-width: 1024px) {
  :root { --pad: 40px; }
}

/* ── Суурь ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1024px) { body { font-size: 17px; } }

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

h1, h2, h3, h4 {
  font-family: var(--f-head);
  line-height: 1.12;
  letter-spacing: -.4px;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; max-width: 68ch; }

a { color: var(--green-live); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }

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

.tnum { font-variant-numeric: tabular-nums; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--text); padding: 12px 20px;
  font-weight: 700; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; }

/* ── Хэсэг, контейнер ──────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.wrap--wide { max-width: 1360px; }

.section { padding: 56px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section--tight { padding: 40px 0; }
@media (min-width: 768px) { .section--tight { padding: 64px 0; } }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--green); color: #fff; }

.eyebrow {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (min-width: 768px) { .eyebrow { font-size: 13px; letter-spacing: 2px; } }

.section-head { margin-bottom: var(--s-6); }
.section-head h2 { font-size: clamp(1.6rem, 4.2vw, 2.5rem); font-weight: 800; }
.section-head p { margin-top: 12px; color: var(--steel); }
.section--dark .section-head h2 { color: #fff; }
.section--dark .section-head p { color: var(--on-dark); }

.section-head--split { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 900px) {
  .section-head--split { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .section-head--split > :last-child { flex-shrink: 0; }
}

/* ── Товч ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 26px;
  font-family: var(--f-body); font-size: 15px; font-weight: 700;
  border: 1.5px solid transparent; border-radius: var(--r);
  cursor: pointer; text-align: center; white-space: nowrap;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
@media (min-width: 768px) { .btn { font-size: 16px; padding: 14px 30px; } }

.btn--gold  { background: var(--gold); color: var(--text); }
.btn--gold:hover  { background: #B8930F; color: var(--text); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn--ghost:hover { background: var(--green); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--block { width: 100%; }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: 13px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }

/* ── Толгой ────────────────────────────────────────────────────────────── */
.topbar { background: var(--green-deep); font-size: 13px; color: var(--on-dark); }
.topbar__in { display: none; }
@media (min-width: 1024px) {
  .topbar__in {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 40px;
  }
}
.topbar__links { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.topbar a { color: var(--on-dark); display: inline-flex; gap: 8px; align-items: center; }
.topbar a:hover { color: var(--gold); }
.topbar svg { color: var(--gold); flex-shrink: 0; }

.header {
  position: sticky; top: 0; z-index: 90;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__in {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 64px;
}
@media (min-width: 1024px) { .header__in { min-height: var(--header-h); } }

.logo { display: flex; gap: 12px; align-items: center; }
.logo__mark {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 17px; font-weight: 800; color: var(--gold);
}
@media (min-width: 1024px) { .logo__mark { width: 44px; height: 44px; font-size: 20px; } }
.logo__text { display: flex; flex-direction: column; gap: 1px; }
.logo__name {
  font-family: var(--f-head); font-size: 15px; font-weight: 800;
  color: #fff; letter-spacing: .4px; line-height: 1.1;
}
@media (min-width: 1024px) { .logo__name { font-size: 17px; letter-spacing: .5px; } }
.logo__sub { font-size: 10px; letter-spacing: 1.4px; color: var(--on-dark-dim); }
@media (max-width: 480px) { .logo__sub { display: none; } }

.nav { display: none; }
@media (min-width: 1100px) {
  .nav { display: flex; gap: 28px; align-items: center; }
  .nav a { color: var(--on-dark); font-size: 14px; font-weight: 500; }
  .nav a:hover, .nav a.is-active { color: #fff; }
  .nav a.is-active { font-weight: 600; }
}
.header__cta { display: none; }
@media (min-width: 1100px) { .header__cta { display: inline-flex; } }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-right: -10px;
  background: none; border: 0; color: #fff; cursor: pointer;
}
@media (min-width: 1100px) { .burger { display: none; } }

.mobile-nav {
  display: none;
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--s-3) var(--pad) var(--s-5);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 14px 0;
  color: #fff; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav .btn { margin-top: var(--s-4); }
@media (min-width: 1100px) { .mobile-nav, .mobile-nav.is-open { display: none; } }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; background: var(--green-deep); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__in {
  position: relative;
  min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 64px; padding-bottom: 40px;
}
@media (min-width: 768px) {
  .hero__in { min-height: 560px; justify-content: center; padding-bottom: 64px; }
}
.hero__tag { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; }
.hero__tag i { display: block; width: 28px; height: 2px; background: var(--gold); }
.hero__tag span { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 1.8px; }
.hero h1 {
  font-size: clamp(2rem, 6.4vw, 3.9rem);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.hero p { font-size: clamp(.95rem, 2.2vw, 1.19rem); color: var(--on-dark); max-width: 34em; margin-bottom: 30px; }
.hero__btns { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 560px) { .hero__btns { flex-direction: row; } }
.hero__content { max-width: 780px; }

/* ── Хуудасны толгой ───────────────────────────────────────────────────── */
.pagehead { background: var(--green-deep); padding: 32px 0 40px; }
@media (min-width: 768px) { .pagehead { padding: 40px 0 48px; } }
.pagehead h1 { font-size: clamp(1.75rem, 5vw, 2.65rem); font-weight: 800; color: #fff; margin-bottom: 10px; }
.pagehead p { font-size: clamp(.95rem, 2vw, 1.06rem); color: var(--on-dark); }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--on-dark-dim); margin-bottom: 14px; flex-wrap: wrap; }
.crumbs a { color: var(--on-dark-dim); }
.crumbs a:hover { color: var(--gold); }
.crumbs strong { color: var(--gold); font-weight: 500; }
.pagehead__split { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 900px) { .pagehead__split { flex-direction: row; justify-content: space-between; align-items: flex-end; } }

/* ── Тоон блок ─────────────────────────────────────────────────────────── */
.stats { background: var(--green); }
.stats__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px; padding: 28px 0;
}
@media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; padding: 44px 0; } }
.stat { display: flex; flex-direction: column; gap: 5px; }
@media (min-width: 900px) {
  .stat { padding-left: 24px; border-left: 2px solid rgba(201,162,39,.35); }
  .stat:first-child { padding-left: 4px; }
}
.stat b {
  font-family: var(--f-head); font-size: clamp(1.7rem, 4vw, 2.75rem);
  font-weight: 800; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums;
}
.stat span { font-size: 13px; color: var(--on-dark); }
@media (min-width: 768px) { .stat span { font-size: 14px; } }

/* ── Grid туслах ───────────────────────────────────────────────────────── */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) {
  .grid { gap: 20px; }
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .grid { gap: 24px; }
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ── Карт ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
@media (min-width: 768px) { .card { padding: 26px; gap: 14px; } }
a.card:hover, .card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-up); border-color: var(--line-strong); }
.card h3 { font-size: 16px; font-weight: 700; color: var(--text); }
@media (min-width: 768px) { .card h3 { font-size: 17px; } }
.card p { font-size: 14px; line-height: 1.6; color: var(--steel); }
.card__icon { color: var(--green); }

.feature__icon {
  width: 46px; height: 46px; border-radius: 10px; background: var(--green);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  flex-shrink: 0;
}
.feature { display: flex; flex-direction: column; gap: 12px; }
.feature h3 { font-family: var(--f-head); font-size: 17px; font-weight: 700; }
@media (min-width: 768px) { .feature h3 { font-size: 18px; } }
.feature p { font-size: 15px; line-height: 1.65; color: var(--steel); }

/* ── Үнийн карт ────────────────────────────────────────────────────────── */
.pcard {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; flex-direction: column;
}
.pcard--featured { border: 2px solid var(--gold); }
.pcard__head {
  background: var(--bg-alt); padding: 16px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.pcard--featured .pcard__head { background: var(--green); }
.pcard__head b { font-family: var(--f-head); font-size: 18px; font-weight: 800; color: var(--green); }
.pcard--featured .pcard__head b { color: #fff; }
.pcard__badge {
  font-size: 11px; font-weight: 600; color: var(--steel);
  background: #fff; padding: 5px 11px; border-radius: 20px; border: 1px solid var(--line);
  white-space: nowrap;
}
.pcard--featured .pcard__badge { background: var(--gold); color: var(--text); font-weight: 700; border-color: var(--gold); }
.pcard__spec { padding: 18px 22px; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.pcard__row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.pcard__row span { color: var(--steel); }
.pcard__row b { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.pcard__foot { border-top: 1px solid var(--line); padding: 16px 22px; display: flex; flex-direction: column; gap: 8px; }
.pcard__price { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pcard__price span { font-size: 13px; color: var(--steel); }
.pcard__price b { font-family: var(--f-head); font-size: 18px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.pcard__price--main b { font-size: 25px; font-weight: 800; color: var(--gold); }
.pcard__foot .btn { margin-top: 8px; }

/* ── Хүснэгт ───────────────────────────────────────────────────────────── */
.table-wrap { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.ptable { width: 100%; border-collapse: collapse; }
.ptable thead th {
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  padding: 14px 12px; text-align: center; white-space: nowrap;
}
.ptable thead th:first-child { text-align: left; }
.ptable thead th.is-gold { color: var(--gold); }
.ptable tbody tr { border-top: 1px solid #EDF1EF; }
.ptable tbody tr:nth-child(even) { background: var(--bg-tint); }
.ptable td { padding: 13px 12px; text-align: center; font-size: 14px; color: var(--text-soft); }
.ptable td:first-child { text-align: left; }
.ptable .cell-id { font-family: var(--f-head); font-size: 15px; font-weight: 800; color: var(--green); }
.ptable .cell-no { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--text); text-align: right; }
.ptable .cell-wi { font-family: var(--f-head); font-size: 17px; font-weight: 800; color: var(--gold); text-align: right; }
.ptable .cell-act { text-align: right; }
@media (max-width: 899px) { .desktop-only-table { display: none; } }
@media (min-width: 900px) { .mobile-only-cards { display: none; } }

/* ── Мэдэгдэл ──────────────────────────────────────────────────────────── */
.note {
  border-left: 4px solid var(--gold); background: var(--gold-soft);
  border-radius: var(--r); padding: 16px 18px;
  display: flex; gap: 13px; align-items: flex-start;
}
.note svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-dark); }
.note p { font-size: 14px; line-height: 1.65; color: var(--steel); }
.note--err { border-left-color: var(--err); background: var(--err-soft); }
.note--err svg { color: var(--err); }
.note--ok { border-left-color: var(--ok); background: #F0FDF4; }
.note--ok svg { color: var(--ok); }

/* ── Форм ──────────────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 7px; }
.field > label { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.field .req { color: var(--err); }
.field .hint { font-size: 12px; color: var(--steel-soft); }
.field .err-msg { font-size: 13px; color: var(--err); font-weight: 500; display: none; }
.field.has-error .err-msg { display: block; }

.input, .textarea, .select {
  width: 100%; font-family: var(--f-body); font-size: 16px; color: var(--text);
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--r);
  padding: 0 14px; height: 48px;
  transition: border-color var(--ease), box-shadow var(--ease);
  font-variant-numeric: tabular-nums;
}
.textarea { height: auto; min-height: 110px; padding: 13px 14px; line-height: 1.55; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 42px; cursor: pointer;
}
.input::placeholder, .textarea::placeholder { color: #9CA8A2; }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--green-live); box-shadow: 0 0 0 3px rgba(27,94,67,.15);
}
.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: var(--err); }

.seg { display: flex; background: var(--bg-alt); border-radius: 10px; padding: 4px; gap: 4px; }
.seg button {
  flex-grow: 1; min-height: 42px; padding: 0 8px;
  font-family: var(--f-body); font-size: 14px; font-weight: 600;
  background: transparent; color: var(--steel);
  border: 0; border-radius: 7px; cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.seg button[aria-pressed="true"] { background: var(--green); color: #fff; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-width: 46px; min-height: 42px; padding: 0 13px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-body); font-size: 14px; font-weight: 700;
  background: #fff; color: var(--steel);
  border: 1px solid var(--line-strong); border-radius: var(--r);
  cursor: pointer; transition: all var(--ease);
}
.chip:hover { border-color: var(--gold); }
.chip[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--text); }
.chip--sm { min-height: 36px; font-size: 13px; font-weight: 600; padding: 0 14px; }
.chip--sm[aria-pressed="true"] { background: var(--green); border-color: var(--green); color: #fff; }

.checkrow {
  display: flex; gap: 13px; align-items: center;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer; transition: all var(--ease);
}
.checkrow:hover { border-color: var(--gold); }
.checkrow.is-on { border: 2px solid var(--gold); background: var(--gold-soft); padding: 13px 15px; }
.checkbox {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 5px;
  border: 2px solid #C7D0CB; background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.checkrow.is-on .checkbox { border: 1px solid var(--gold); background: var(--gold); }
.checkbox svg { opacity: 0; }
.checkrow.is-on .checkbox svg { opacity: 1; }
.checkrow__text { display: flex; flex-direction: column; gap: 2px; flex-grow: 1; }
.checkrow__text b { font-size: 15px; font-weight: 600; }
.checkrow__text span { font-size: 13px; color: var(--steel); }
.checkrow__price { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--green); font-variant-numeric: tabular-nums; }

.consent { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; }
.consent span { font-size: 13px; line-height: 1.55; color: var(--steel); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ── Тооцоолуур ────────────────────────────────────────────────────────── */
.calc { display: grid; gap: 24px; align-items: start; }
@media (min-width: 1024px) { .calc { grid-template-columns: minmax(0, 1fr) 380px; gap: 32px; } }

.calc__step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 20px;
}
@media (min-width: 768px) { .calc__step { padding: 28px; } }
.calc__step + .calc__step { margin-top: 16px; }
@media (min-width: 768px) { .calc__step + .calc__step { margin-top: 24px; } }
.calc__title { display: flex; gap: 11px; align-items: center; }
.calc__num {
  width: 25px; height: 25px; flex-shrink: 0; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.calc__title h2 { font-size: 17px; font-weight: 700; }
@media (min-width: 768px) { .calc__title h2 { font-size: 20px; } }
.calc__sub { margin: 6px 0 18px 36px; font-size: 13px; color: var(--steel); }
@media (min-width: 768px) { .calc__sub { font-size: 14px; } }

.vgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 620px) { .vgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; } }
@media (min-width: 1280px) { .vgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.vopt {
  text-align: left; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 13px; cursor: pointer;
  font-family: var(--f-body); transition: all var(--ease);
  display: flex; flex-direction: column; gap: 9px;
}
.vopt:hover { border-color: var(--gold); }
.vopt[aria-pressed="true"] { border: 2px solid var(--gold); background: var(--gold-soft); padding: 12px; }
.vopt__top { display: flex; justify-content: space-between; align-items: center; }
.vopt__id { font-family: var(--f-head); font-size: 15px; font-weight: 800; color: var(--text); }
.vopt[aria-pressed="true"] .vopt__id { color: var(--green); }
.vopt__dot {
  width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid #C7D0CB; box-sizing: border-box;
}
.vopt[aria-pressed="true"] .vopt__dot { border: 5px solid var(--gold); }
.vopt__spec { display: flex; flex-direction: column; gap: 3px; }
.vopt__spec i { display: flex; justify-content: space-between; font-size: 11px; font-style: normal; }
.vopt__spec i span { color: var(--steel-soft); }
.vopt__spec i b { color: var(--text-soft); font-weight: 600; font-variant-numeric: tabular-nums; }
.vopt__price { border-top: 1px solid #EDF1EF; padding-top: 8px; display: flex; justify-content: space-between; align-items: baseline; }
.vopt__price span { font-size: 10px; color: var(--steel-soft); }
.vopt__price b { font-family: var(--f-head); font-size: 14px; font-weight: 800; color: var(--steel); font-variant-numeric: tabular-nums; }
.vopt[aria-pressed="true"] .vopt__price b { color: var(--green); }

.result { background: var(--green); border-radius: var(--r-xl); overflow: hidden; }
@media (min-width: 1024px) { .result { position: sticky; top: calc(var(--header-h) + 20px); } }
.result__head { padding: 20px 24px 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
.result__head span { font-size: 12px; font-weight: 600; letter-spacing: 1.6px; color: var(--gold); }
.result__body { padding: 18px 24px; display: flex; flex-direction: column; gap: 13px; }
.result__sel { display: flex; flex-direction: column; gap: 4px; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.1); }
.result__sel span { font-size: 12px; color: var(--on-dark-dim); }
.result__sel b { font-family: var(--f-head); font-size: 16px; font-weight: 700; color: #fff; }
.result__sel i { font-size: 12px; font-style: normal; color: var(--on-dark); font-variant-numeric: tabular-nums; }
.result__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.result__row span { font-size: 14px; color: var(--on-dark); }
.result__row b { font-size: 15px; font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }
.result__total { background: var(--green-deep); padding: 20px 24px; display: flex; flex-direction: column; gap: 3px; }
.result__total span { font-size: 12px; font-weight: 600; letter-spacing: 1.4px; color: var(--on-dark-dim); }
.result__total b {
  font-family: var(--f-head); font-size: clamp(1.75rem, 5vw, 2.3rem);
  font-weight: 800; color: var(--gold); line-height: 1.1; font-variant-numeric: tabular-nums;
}
.result__acts { padding: 18px 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.result__acts .row { display: flex; gap: 10px; }
.result__acts .row .btn { flex: 1 1 0; min-width: 0; }
.is-hidden { display: none !important; }

/* ── Галерей ───────────────────────────────────────────────────────────── */
.gal { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 768px) { .gal { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 1100px) { .gal { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.gal__item {
  aspect-ratio: 4 / 3; border-radius: var(--r-md); overflow: hidden;
  background: #E8EDEA; border: 0; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform var(--ease);
}
.gal__item:hover { transform: scale(1.02); }
.gal__item img { width: 100%; height: 100%; object-fit: cover; }
.gal__ph { font-size: 13px; color: #8A9A92; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(10,42,32,.94);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 84vh; border-radius: var(--r-md); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: #fff; border: 0;
  border-top: 1px solid var(--line);
  padding: 18px 20px; cursor: pointer;
  font-family: var(--f-head); font-size: 16px; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item:first-child .faq__q { border-top: 0; }
.faq__q svg { flex-shrink: 0; color: var(--green); transition: transform var(--ease); }
.faq__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq__a { padding: 0 20px 20px; display: none; }
.faq__a.is-open { display: block; }
.faq__a p { font-size: 15px; color: var(--steel); }

/* ── Timeline ──────────────────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl {
  display: grid; grid-template-columns: 78px 1fr; gap: 20px;
  padding-bottom: 28px; position: relative;
}
.tl::before {
  content: ""; position: absolute; left: 88px; top: 12px; bottom: -12px; width: 2px;
  background: var(--line);
}
.tl:last-child { padding-bottom: 0; }
.tl:last-child::before { display: none; }
.tl__year { font-family: var(--f-head); font-size: 19px; font-weight: 800; color: var(--gold); text-align: right; }
.tl__body { position: relative; padding-left: 24px; }
.tl__body::before {
  content: ""; position: absolute; left: -5px; top: 8px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--line);
}
.tl__body h3 { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.tl__body p { font-size: 15px; color: var(--steel); }

/* ── CTA туузан хэсэг ──────────────────────────────────────────────────── */
.ctaband { background: var(--green); }
.ctaband__in {
  padding: 40px 0; display: flex; flex-direction: column; gap: 22px;
}
@media (min-width: 900px) {
  .ctaband__in { flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; padding: 56px 0; }
}
.ctaband h2 { font-size: clamp(1.45rem, 3.6vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 10px; }
.ctaband p { color: var(--on-dark); }
.ctaband--soft { background: var(--bg-alt); }
.ctaband--soft h2 { color: var(--text); }
.ctaband--soft p { color: var(--steel); }

.phoneblock { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.phoneblock__num { display: flex; flex-direction: column; gap: 2px; }
.phoneblock__num span { font-size: 12px; color: var(--steel); }
.phoneblock__num b { font-family: var(--f-head); font-size: 24px; font-weight: 800; color: var(--green); font-variant-numeric: tabular-nums; }

/* ── Хөл ───────────────────────────────────────────────────────────────── */
.footer { background: var(--green-deep); padding: 44px 0 0; color: var(--on-dark-dim); }
.footer__grid { display: grid; gap: 32px; padding-bottom: 36px; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; } }
.footer h4 { font-family: var(--f-head); font-size: 14px; font-weight: 700; letter-spacing: 1px; color: #fff; margin-bottom: 14px; text-transform: uppercase; }
.footer__col { display: flex; flex-direction: column; }
.footer__col a { color: var(--on-dark-dim); font-size: 14px; padding: 5px 0; }
.footer__col a:hover { color: var(--gold); }
.footer p { font-size: 14px; line-height: 1.7; color: var(--on-dark-dim); }
.footer__strong { color: #fff; font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; padding: 5px 0; display: block; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: #6D8579;
}
@media (min-width: 640px) { .footer__bar { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ── Гар утасны наалдсан CTA ───────────────────────────────────────────── */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex; gap: 10px;
}
@media (min-width: 1024px) { .sticky-cta { display: none; } }
.sticky-cta .btn { flex-grow: 1; }
.sticky-cta__call {
  width: 50px; height: 50px; flex-shrink: 0; border-radius: var(--r);
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
body.has-sticky-cta { padding-bottom: 74px; }
@media (min-width: 1024px) { body.has-sticky-cta { padding-bottom: 0; } }

/* ── Prose (текст хуудас) ──────────────────────────────────────────────── */
.prose { max-width: 720px; }
.prose h2 { font-size: 24px; font-weight: 800; margin: 32px 0 12px; }
.prose h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
.prose p { margin-bottom: 14px; color: var(--text-soft); }
.prose ul { margin: 0 0 16px; padding-left: 22px; color: var(--text-soft); }
.prose li { margin-bottom: 7px; }

/* ── Хэвлэх ────────────────────────────────────────────────────────────── */
@media print {
  .header, .topbar, .mobile-nav, .footer, .sticky-cta, .btn, .ctaband { display: none !important; }
  body { font-size: 12pt; }
  .result { background: none; color: #000; border: 1px solid #000; }
  .result__total b, .result__row b, .result__sel b { color: #000 !important; }
  .result__row span, .result__sel span, .result__sel i { color: #333 !important; }
  .result__total { background: none; }
}
