/* =========================================================
   SYNAPSE DIGITAL — COMPLETE STYLESHEET (web.css)
========================================================= */

:root {
  --bg: #050608;
  --bg-soft: #090b10;
  --panel: rgba(13, 16, 23, 0.72);

  --white: #f5f7ff;
  --gray: #8a91a3;

  --cyan: #59f6ff;
  --blue: #4477ff;
  --violet: #8a5cff;
  --lime: #d8ff39;

  --border: rgba(120, 155, 255, 0.18);
  --radius: 30px;
  --container: 1240px;
}

/* =========================================================
   RESET & BASE STYLES
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-track {
  background: #050608;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--cyan), var(--violet));
  border-radius: 99px;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

/* =========================================================
   BACKGROUND SYSTEM
========================================================= */

.background-system {
  position: fixed;
  inset: 0;
  z-index: -100;
  overflow: hidden;
  background: radial-gradient(circle at 50% -20%, #162240, #050608 48%);
}

.grid-3d {
  position: absolute;
  width: 160%;
  height: 90%;
  left: -30%;
  bottom: -45%;
  transform: perspective(500px) rotateX(64deg);
  transform-origin: center top;
  background-image:
    linear-gradient(rgba(89, 246, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 246, 255, 0.09) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, black 30%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%);
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.22;
}

.aurora-1 {
  width: 500px;
  height: 500px;
  top: 10%;
  right: -150px;
  background: var(--violet);
}

.aurora-2 {
  width: 500px;
  height: 500px;
  left: -200px;
  top: 40%;
  background: var(--cyan);
}

.aurora-3 {
  width: 420px;
  height: 420px;
  right: 20%;
  bottom: -220px;
  background: var(--blue);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    0deg,
    white 0,
    white 1px,
    transparent 1px,
    transparent 3px
  );
}

/* =========================================================
   HEADER
========================================================= */

.deed-tses {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 6, 8, 0.75);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.deed-tses-dotor {
  min-height: 78px;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-main {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}

.logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 10px var(--cyan),
    0 0 25px var(--cyan);
}

.navigation {
  margin-left: auto;
  display: flex;
  gap: 32px;
}

.navigation a {
  position: relative;
  color: #a7adbb;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s ease;
}

.navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transition: 0.3s ease;
}

.navigation a:hover {
  color: white;
}

.navigation a:hover::after {
  width: 100%;
}

.header-towch {
  margin-left: 32px;
  min-height: 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(89, 246, 255, 0.4);
  border-radius: 999px;
  background: rgba(89, 246, 255, 0.08);
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.header-towch:hover {
  background: var(--cyan);
  color: #031014;
  box-shadow: 0 0 20px rgba(89, 246, 255, 0.4);
}

.header-towch svg {
  width: 15px;
  height: 15px;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: 80px;
}

.system-status {
  margin-bottom: 28px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8c96ac;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border: 1px solid rgba(216, 255, 57, 0.2);
  border-radius: 99px;
  background: rgba(216, 255, 57, 0.04);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow:
    0 0 10px var(--lime),
    0 0 20px var(--lime);
}

.status-line {
  width: 25px;
  height: 1px;
  background: #333849;
}

.hero h1 {
  max-width: 760px;
  font-family: "Space Grotesk", sans-serif;
  /* 98px үед "БОРЛУУЛАЛТЫГ" гэсэн үг 1440px дэлгэц дээрх
     баганадаа (667px) багтахгүй болж ХОЁР МӨР болж хуваагдаж
     байсан. 80px нь бүх өргөнд нэг мөрөнд багтана. */
  font-size: clamp(52px, 6.1vw, 80px);
  line-height: 0.95;
  letter-spacing: -4px;
  font-weight: 700;
}

.hero-gradient-text {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #a7e7ff, var(--violet));
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 50px rgba(89, 246, 255, 0.12);
}

.outline-text {
  display: inline-block;
  color: transparent;
  /* Тоймлосон бичиг гарчгийн НЭГ хэсэг тул зөвхөн чимэглэл биш.
     0.45 нь бүдэг байсан — 0.62 болгож уншигдахуйц болгов. */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.62);
}

.hero-description {
  max-width: 620px;
  margin-top: 30px;
  color: #8a91a3;
  font-size: 16px;
  line-height: 1.8;
}

.hero-description strong {
  color: white;
}


.hero-actions {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.towch {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.towch svg {
  width: 17px;
  height: 17px;
}

.towch-primary {
  background: linear-gradient(110deg, var(--cyan), #7cf8d6);
  color: #031014;
  box-shadow: 0 0 30px rgba(89, 246, 255, 0.2);
}

.towch-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(89, 246, 255, 0.35);
}

.towch-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  color: var(--white);
}

.towch-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* HERO STATS */

.hero-data {
  margin-top: 55px;
  padding-top: 24px;
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
}

.data-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.data-number {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.data-item strong {
  display: block;
  font-size: 13px;
  color: var(--white);
}

.data-item p {
  margin-top: 3px;
  color: #98a1b4;
  font-size: 9px;
  letter-spacing: 0.8px;
}

/* =========================================================
   3D HERO VISUAL & MOCKUP
========================================================= */

.hero-visual {
  position: relative;
  min-height: 665px;
  display: grid;
  place-items: center;
  perspective: 1300px;
}

.profile-hologram {
  position: relative;
  width: min(430px, 100%);
  padding: 12px;
  border: 1px solid rgba(89, 246, 255, 0.25);
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.018)
  );
  backdrop-filter: blur(18px);
  box-shadow:
    0 50px 90px rgba(0, 0, 0, 0.6),
    0 0 70px rgba(89, 246, 255, 0.08);
  transform: rotateY(-9deg) rotateX(4deg);
  transform-style: preserve-3d;
  animation: profileFloat 7s ease-in-out infinite;
}

@keyframes profileFloat {
  0%,
  100% {
    transform: rotateY(-9deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: rotateY(-5deg) rotateX(1deg) translateY(-14px);
  }
}

.profile-image-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: #0c1017;
}

.profile-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.profile-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(3, 8, 15, 0.8), transparent 45%),
    linear-gradient(120deg, rgba(89, 246, 255, 0.08), transparent 50%);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 3;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  opacity: 0.55;
  animation: scan 4s linear infinite;
}

@keyframes scan {
  from {
    top: 0;
  }
  to {
    top: 100%;
  }
}

.profile-info {
  padding: 16px 10px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-info p {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: 1.5px;
  font-family: "Space Grotesk", sans-serif;
}

.profile-info h3 {
  margin-top: 4px;
  font-size: 20px;
  font-family: "Space Grotesk", sans-serif;
}

.profile-info span {
  color: #8e97ab;
  font-size: 9px;
  letter-spacing: 1px;
}

.profile-status {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 255, 57, 0.3);
  border-radius: 50%;
}

.profile-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

/* CORNER ACCENTS */

.profile-corners span {
  position: absolute;
  width: 25px;
  height: 25px;
  z-index: 5;
}

.profile-corners span:nth-child(1) {
  top: -5px;
  left: -5px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.profile-corners span:nth-child(2) {
  top: -5px;
  right: -5px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.profile-corners span:nth-child(3) {
  bottom: -5px;
  left: -5px;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.profile-corners span:nth-child(4) {
  bottom: -5px;
  right: -5px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

/* ORBITS */

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(89, 246, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-1 {
  width: 520px;
  height: 520px;
  animation: spin 20s linear infinite;
}

.orbit-2 {
  width: 590px;
  height: 300px;
  transform: rotateX(70deg);
}

.orbit-3 {
  width: 360px;
  height: 620px;
  transform: rotateY(70deg);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* FLOATING TECH BADGES */

.floating-tech {
  position: absolute;
  z-index: 10;
  min-width: 175px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(9, 12, 18, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(89, 246, 255, 0.08);
  color: var(--cyan);
}

.floating-icon svg {
  width: 17px;
  height: 17px;
}

.floating-tech span {
  display: block;
  color: #98a1b4;
  font-size: 9.5px;
  letter-spacing: 1px;
}

.floating-tech strong {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.floating-tech-1 {
  left: -35px;
  top: 18%;
}

.floating-tech-2 {
  right: -45px;
  top: 48%;
}

.floating-tech-3 {
  left: -10px;
  bottom: 10%;
}

/* SCROLL INDICATOR */

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #98a1b4;
  font-size: 9.5px;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 35px;
  background: linear-gradient(var(--cyan), transparent);
}

/* =========================================================
   TICKER
========================================================= */

.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 28s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 30px;
  padding-right: 30px;
  color: #8e97ab;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.ticker-group strong {
  color: var(--cyan);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   GENERAL SECTION STRUCTURES
========================================================= */

.minii-tuhai,
.chiglel,
.ajluud,
.technology-core,
.calculator-section {
  padding: 130px 0;
}

.section-top {
  margin-bottom: 75px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 55px;
}

.section-code {
  padding-top: 7px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
}

.section-title > span {
  display: block;
  margin-bottom: 16px;
  color: #98a1b4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
}

.section-title h2 {
  max-width: 900px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -3px;
}

.section-title em {
  color: var(--cyan);
  font-style: normal;
}

/* =========================================================
   PROBLEM & SOLUTION (ABOUT)
========================================================= */

.minii-tuhai {
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.about-big {
  max-width: 520px;
  color: #858da0;
  font-size: 24px;
  line-height: 1.6;
}

.about-big strong {
  color: white;
  font-weight: 600;
}

.about-right {
  display: flex;
  flex-direction: column;
}


/* =========================================================
   SYNAPSE INTERACTIVE CALCULATOR STYLES
========================================================= */

.calculator-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(9, 12, 18, 0.6);
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.calc-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #a7b0c3;
  margin-bottom: 18px;
}

.calc-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.calc-type-card {
  position: relative;
  padding: 24px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.calc-type-card input[type="radio"] {
  display: none;
}

.calc-type-card svg {
  color: var(--cyan);
  width: 28px;
  height: 28px;
}

.calc-type-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  color: var(--white);
}

.calc-type-card span {
  font-size: 12px;
  color: #7b8396;
  line-height: 1.4;
}

.calc-type-card:hover {
  border-color: rgba(89, 246, 255, 0.4);
  background: rgba(89, 246, 255, 0.04);
}

.calc-type-card.active {
  border-color: var(--cyan);
  background: rgba(89, 246, 255, 0.08);
  box-shadow: 0 0 30px rgba(89, 246, 255, 0.15);
}

.calc-addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-addon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.25s ease;
}

.calc-addon-item input[type="checkbox"] {
  display: none;
}

.custom-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(89, 246, 255, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.calc-addon-item input[type="checkbox"]:checked + .custom-check {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.calc-addon-item input[type="checkbox"]:checked + .custom-check::after {
  content: "✔";
  color: #031014;
  font-size: 13px;
  font-weight: 800;
}

.addon-text {
  flex-grow: 1;
}

.addon-text strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}

.addon-text p {
  font-size: 12px;
  color: #8e97ab;
  margin-top: 2px;
}

.addon-price {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.calc-addon-item.selected {
  border-color: rgba(89, 246, 255, 0.5);
  background: rgba(89, 246, 255, 0.05);
}

.summary-card {
  position: sticky;
  top: 100px;
  padding: 35px;
  border-radius: 26px;
  border: 1px solid rgba(89, 246, 255, 0.3);
  background: linear-gradient(
    145deg,
    rgba(13, 17, 26, 0.95),
    rgba(7, 10, 15, 0.9)
  );
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

.summary-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--lime);
  border: 1px solid rgba(216, 255, 57, 0.3);
  background: rgba(216, 255, 57, 0.05);
  margin-bottom: 15px;
}

.summary-price-label {
  color: #7b859b;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-family: "Space Grotesk", sans-serif;
}

.summary-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(89, 246, 255, 0.3);
  margin: 5px 0 15px;
}

.summary-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: #8c95aa;
}

.summary-meta div {
  display: flex;
  justify-content: space-between;
}

.summary-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 25px 0;
}

.order-brief-form h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

.order-brief-form > p {
  font-size: 12px;
  color: #7a8296;
  margin-bottom: 18px;
  line-height: 1.5;
}

.calc-input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: white;
  font-size: 13px;
  outline: none;
  transition: 0.25s;
}

.calc-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(89, 246, 255, 0.2);
}

.calc-submit-btn {
  width: 100%;
  margin-top: 5px;
}


/* =========================================================
   TECHNOLOGY CORE & WORKFLOW
========================================================= */

.technology-panel {
  position: relative;
  min-height: 620px;
  padding: 60px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 35px;
  background:
    radial-gradient(
      circle at center,
      rgba(89, 246, 255, 0.06),
      transparent 45%
    ),
    rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(18px);
}

.technology-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(89, 246, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 246, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.technology-heading {
  position: relative;
  z-index: 2;
}

.technology-heading span {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
}

.technology-heading h2 {
  margin-top: 15px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -3px;
}

.technology-heading strong {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px var(--cyan);
}

.technology-orb {
  position: relative;
  z-index: 3;
  width: 380px;
  height: 380px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.orb-center {
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(89, 246, 255, 0.35);
  background: radial-gradient(
    circle,
    rgba(89, 246, 255, 0.22),
    rgba(89, 246, 255, 0.03)
  );
  box-shadow: 0 0 70px rgba(89, 246, 255, 0.18);
}

.orb-core {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 0 15px white,
    0 0 45px var(--cyan),
    0 0 100px var(--cyan);
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(89, 246, 255, 0.22);
}

.orb-ring-1 {
  width: 200px;
  height: 200px;
  animation: spin 10s linear infinite;
}

.orb-ring-2 {
  width: 310px;
  height: 150px;
  transform: rotate(35deg);
}

.orb-ring-3 {
  width: 170px;
  height: 350px;
  transform: rotate(55deg);
}

.orb-label {
  position: absolute;
  padding: 5px 10px;
  border: 1px solid var(--border);
  background: rgba(6, 8, 12, 0.85);
  color: var(--cyan);
  font-size: 9px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
}

.orb-label-1 {
  top: 14%;
}
.orb-label-2 {
  right: -5px;
  top: 48%;
}
.orb-label-3 {
  bottom: 12%;
}
.orb-label-4 {
  left: -5px;
  top: 45%;
}

.technology-info {
  position: relative;
  z-index: 3;
}

.tech-data {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.tech-data:last-child {
  border-bottom: 1px solid var(--border);
}

.tech-data span {
  color: var(--cyan);
  font-size: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.tech-data h3 {
  margin-top: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.tech-data p {
  margin-top: 4px;
  color: #8e97ab;
  font-size: 11px;
  line-height: 1.5;
}

/* =========================================================
   SERVICES
========================================================= */

.chiglel {
  background: rgba(8, 10, 14, 0.7);
}


/* =========================================================
   PROJECTS (WORKS)
========================================================= */

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 5, 8, 0.95),
    rgba(3, 5, 8, 0.1) 65%
  );
}

.project-interface {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
}

.project-interface svg {
  width: 20px;
  height: 20px;
}

.project-text {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.project-text span {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
}

.project-text h3 {
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  letter-spacing: -0.5px;
}

/* =========================================================
   MANIFESTO / TRUST QUOTE
========================================================= */

.manifesto {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: linear-gradient(120deg, #89f7ff, #4b76ff 45%, #8b5cff);
  color: #03050a;
}

.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.manifesto-symbol {
  width: 55px;
  height: 55px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.manifesto-symbol svg {
  width: 24px;
  height: 24px;
}

.manifesto p {
  max-width: 950px;
  margin-inline: auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -3px;
}

.manifesto p strong {
  font-weight: 800;
}

.manifesto-author {
  margin-top: 40px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
}

/* =========================================================
   CONTACT
========================================================= */

.holboo {
  padding: 130px 0;
}

.contact-panel {
  position: relative;
  min-height: 480px;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.55fr 1.3fr 0.45fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 35px;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(89, 246, 255, 0.09),
      transparent 30%
    ),
    linear-gradient(
      130deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.012)
    );
  backdrop-filter: blur(20px);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(89, 246, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 246, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.contact-radar {
  position: relative;
  z-index: 3;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
}

.contact-radar div {
  position: absolute;
  border: 1px solid rgba(89, 246, 255, 0.22);
  border-radius: 50%;
}

.contact-radar div:nth-child(1) {
  width: 100%;
  height: 100%;
}
.contact-radar div:nth-child(2) {
  width: 70%;
  height: 70%;
}
.contact-radar div:nth-child(3) {
  width: 38%;
  height: 38%;
}

.contact-radar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow:
    0 0 15px var(--lime),
    0 0 40px var(--lime);
}

.contact-content {
  position: relative;
  z-index: 3;
}

.contact-content > span {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
}

.contact-content h2 {
  max-width: 720px;
  margin-top: 15px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -3px;
}

.contact-content h2 strong {
  display: block;
  color: var(--cyan);
}

.contact-content p {
  max-width: 560px;
  margin-top: 18px;
  color: #7f8799;
  font-size: 15px;
  line-height: 1.8;
}

.contact-button {
  position: relative;
  z-index: 3;
  width: 180px;
  height: 180px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #b6fff1);
  color: #03090d;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.contact-button:hover {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 0 60px rgba(89, 246, 255, 0.35);
}

.contact-button svg {
  align-self: flex-end;
  width: 24px;
  height: 24px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  border-top: 1px solid var(--border);
  background: rgba(4, 5, 8, 0.6);
}


.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-logo span {
  color: var(--cyan);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8e97ab;
  font-size: 10px;
  letter-spacing: 1px;
}

.footer-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
}

.footer p {
  color: #98a1b4;
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* =========================================================
   TABLET RESPONSIVE (MAX-WIDTH: 1100PX)
========================================================= */

@media (max-width: 1100px) {
  .navigation {
    display: none;
  }

  .header-towch {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 45px;
  }

  .hero h1 {
    /* Таблетад багана 371–555px хооронд нарийсдаг тул тогтмол
       68px нь "БОРЛУУЛАЛТЫГ" (529px) гэсэн үгийг хоёр мөр
       болгож хуваадаг байв. 6vw нь бүх өргөнд багтана. */
    font-size: clamp(38px, 6vw, 68px);
    letter-spacing: -3px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .floating-tech {
    display: none;
  }

  .calc-wrapper {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .technology-panel {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .technology-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .tech-data {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 14px;
  }


  .contact-panel {
    grid-template-columns: 0.5fr 1fr;
  }

  .contact-button {
    grid-column: span 2;
    margin-inline: auto;
  }
}

/* =========================================================
   MOBILE RESPONSIVE (MAX-WIDTH: 768PX)
========================================================= */

@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }

  .deed-tses-dotor {
    min-height: 65px;
  }

  .header-towch {
    min-height: 36px;
    padding: 0 14px;
  }

  .header-towch span {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 65px);
    line-height: 0.95;
    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-data {
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .hero-visual {
    min-height: 575px;
  }

  .profile-hologram {
    width: 90%;
    transform: none;
    animation: none;
  }

  .visual-orbit {
    opacity: 0.4;
  }

  .orbit-1 {
    width: 380px;
    height: 380px;
  }

  .orbit-2,
  .orbit-3 {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .minii-tuhai,
  .chiglel,
  .ajluud,
  .technology-core,
  .calculator-section {
    padding: 80px 0;
  }

  .section-top {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 45px;
  }

  .section-title h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-big {
    font-size: 19px;
  }

  .calc-type-grid {
    grid-template-columns: 1fr;
  }

  .technology-panel {
    min-height: auto;
    padding: 40px 20px;
  }

  .technology-heading h2 {
    font-size: 48px;
  }

  .technology-orb {
    width: 280px;
    height: 280px;
  }

  .technology-info {
    grid-template-columns: repeat(2, 1fr);
  }


  .manifesto {
    padding: 85px 0;
  }

  .manifesto p {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .contact-panel {
    padding: 40px 20px;
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .contact-radar {
    width: 140px;
    height: 140px;
    margin-inline: auto;
  }

  .contact-content h2 {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .contact-content p {
    margin-inline: auto;
  }

  .contact-button {
    grid-column: span 1;
    width: 150px;
    height: 150px;
    margin-inline: auto;
  }


  .footer-status {
    justify-content: center;
  }
}

/* =========================================================
   SMALL MOBILE RESPONSIVE (MAX-WIDTH: 480PX)
========================================================= */

@media (max-width: 480px) {
  .hero h1 {
    font-size: 42px;
  }

  .system-status {
    font-size: 9.5px;
  }

  .status-line,
  .system-status span:last-child {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .towch {
    width: 100%;
  }

  .hero-data {
    gap: 15px;
  }

  .data-item {
    flex-direction: column;
    gap: 2px;
  }

  .hero-visual {
    min-height: 525px;
  }

  .profile-hologram {
    width: 98%;
  }

  .section-title h2 {
    font-size: 32px;
  }


  .technology-orb {
    width: 240px;
    height: 240px;
  }

  .orb-ring-2 {
    width: 220px;
  }


  .manifesto p {
    font-size: 30px;
    letter-spacing: -1.5px;
  }

  .contact-button {
    width: 135px;
    height: 135px;
    padding: 18px;
  }
}
/* =========================================================
   FIX: HEADER OVERLAP & BENTO GRID STYLES
========================================================= */

/* Цэс дарахад дээд толгой дээр дарагдахаас сэргийлнэ */
section {
  scroll-margin-top: 90px;
}

/* BENTO GRID БҮТЭЦ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  position: relative;
  background: rgba(13, 17, 24, 0.75);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 26px;
  backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(89, 246, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* 1-Р МӨРИЙН ӨРГӨН КАРТ */
.bento-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(16, 24, 38, 0.85),
    rgba(8, 12, 18, 0.8)
  );
}

.bento-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
}

.tag-num {
  color: var(--cyan);
  font-weight: 700;
}

.tag-time {
  color: #8e97ab;
}

.bento-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.bento-card p {
  color: #7d869a;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bento-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.bento-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #a7b0c3;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.bento-features svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.bento-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 8px;
  background: linear-gradient(110deg, var(--cyan), #7cf8d6);
  color: #031014;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.bento-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(89, 246, 255, 0.35);
}

/* МИНИ ХӨТӨЧ ВИЗУАЛ */
.mini-browser {
  background: #080b11;
  border: 1px solid rgba(89, 246, 255, 0.3);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.browser-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #252b3b;
}

.browser-dots span:nth-child(1) {
  background: #ff5f56;
}
.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}
.browser-dots span:nth-child(3) {
  background: #27c93f;
}

.browser-stat {
  display: flex;
  justify-content: space-between;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  margin-bottom: 8px;
}

.browser-stat strong {
  color: var(--cyan);
  font-size: 16px;
}

.browser-bar {
  width: 100%;
  height: 6px;
  background: #141a27;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 12px;
}

.bar-fill {
  width: 99%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.browser-note {
  font-size: 10px;
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
}

/* AI КАРТ */
.bento-ai {
  background: linear-gradient(
    145deg,
    rgba(16, 20, 30, 0.9),
    rgba(11, 14, 22, 0.9)
  );
  border-color: rgba(216, 255, 57, 0.25);
}

.tag-pulse {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--lime);
  font-weight: 700;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 18px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.chat-msg {
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 8px;
  max-width: 90%;
  line-height: 1.4;
}

.user-msg {
  background: rgba(89, 246, 255, 0.1);
  color: var(--cyan);
  align-self: flex-end;
}

.ai-msg {
  background: rgba(255, 255, 255, 0.05);
  color: #cfd6e6;
  align-self: flex-start;
  display: flex;
  gap: 8px;
}

.ai-msg svg {
  width: 14px;
  height: 14px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
}

/* КАРТНЫ ЖИЖИГ ЭЛЕМЕНТҮҮД */
.card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(89, 246, 255, 0.08);
  border: 1px solid rgba(89, 246, 255, 0.25);
  display: grid;
  place-items: center;
  color: var(--cyan);
  margin-bottom: 16px;
}

.card-icon-box svg {
  width: 20px;
  height: 20px;
}

.clean-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: #929bb0;
  margin-bottom: 22px;
  flex-grow: 1;
}

.bento-btn-sm {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  transition: 0.2s;
}

.bento-btn-sm:hover {
  letter-spacing: 1px;
}

/* VIP БҮТЭН ӨРГӨН КАРТ */
.bento-full {
  grid-column: 1 / -1;
  padding: 40px;
  border-color: rgba(216, 255, 57, 0.35);
  background: linear-gradient(
    135deg,
    rgba(216, 255, 57, 0.04),
    rgba(89, 246, 255, 0.04)
  );
}

.vip-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(216, 255, 57, 0.1);
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.vip-top h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.vip-top p {
  color: #8c95aa;
  font-size: 14px;
  max-width: 800px;
  margin-bottom: 30px;
}

.vip-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 25px;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar svg {
  width: 24px;
  height: 24px;
  color: var(--lime);
}

.pillar strong {
  font-size: 14px;
  color: var(--white);
}

.pillar span {
  font-size: 12px;
  color: #8e97ab;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .vip-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vip-pillars {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ХОЁРДУГААР ХЭСЭГ — ХӨГЖҮҮЛЭЛТИЙН НЭМЭЛТҮҮД
   ---------------------------------------------------------
   Дээрх дизайны кодод ОГТ хүрээгүй. Бүх шинэ зүйл эндээс доош.

   АГУУЛГА:
     A. Хүртээмж (focus, хөдөлгөөн багасгах)
     B. Толгойн гүйлгэх төлөв
     C. Мобайл цэсний товч (hamburger)
     D. Мобайл цэс
     E. Формын талбар, шошго, хариу мессеж
     F. Footer-ийн шинэ бүтэц
     G. Мобайл наалттай товч
========================================================= */


/* =========================================================
   A. ХҮРТЭЭМЖ
========================================================= */

/* Tab товчоор явахад одоо хаана байгаа нь тод харагдана.
   Хулганаар дарахад гарахгүй (:focus биш :focus-visible). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
label:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Хэрэглэгч үйлдлийн системдээ "хөдөлгөөн багасгах"-ыг асаасан бол
   бүх анимацийг унтраана. Толгой эргэх, дотор муухайрах шинжтэй
   хүмүүст зориулсан стандарт шаардлага. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Зөвхөн дэлгэц уншигч программд зориулсан текст */
.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;
}


/* =========================================================
   B. ТОЛГОЙН ГҮЙЛГЭХ ТӨЛӨВ
   Доош гүйлгэхэд толгой арай нягт, тод болно.
========================================================= */

.deed-tses {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.deed-tses.is-scrolled {
  background: rgba(5, 6, 8, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   C. МОБАЙЛ ЦЭСНИЙ ТОВЧ (HAMBURGER)
   1100px-ээс дээш огт харагдахгүй.
========================================================= */

.menu-toggle {
  display: none;          /* Дэлгэц том үед нуугдана */
  margin-left: 14px;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.menu-toggle:hover {
  border-color: rgba(89, 246, 255, 0.45);
  background: rgba(89, 246, 255, 0.06);
}

.menu-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Цэс нээлттэй үед гурван зураас "X" болно */
body.menu-is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.menu-is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   D. МОБАЙЛ ЦЭС
========================================================= */

/* Арын бүдэг давхарга — гадуур дарахад цэс хаагдана */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(3, 5, 8, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-is-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1600;
  width: min(360px, 88vw);
  padding: 100px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  border-left: 1px solid var(--border);
  background: linear-gradient(160deg, #0b0f16, #050608);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.menu-is-open .mobile-menu {
  transform: translateX(0);
}

/* ⚠️ ЧУХАЛ: [hidden] шинжийн анхдагч display:none нь браузерын
   суурь загварт байдаг тул .mobile-menu{display:flex} үүнийг
   дардаг. Ийм учраас тодорхой бичиж өгөв.

   Үүнгүй бол цэс хаалттай үедээ ч DOM дотор "амьд" үлдэж,
   Tab товчоор доторх холбоосууд руу орох боломжтой байсан. */
.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
}

.mobile-menu-links a {
  padding: 18px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.mobile-menu-links a:hover {
  color: var(--cyan);
  padding-left: 8px;
}

.mobile-menu-links a span {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 1px;
}

.mobile-menu-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-call,
.mobile-menu-social {
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.mobile-menu-call {
  background: linear-gradient(110deg, var(--cyan), #7cf8d6);
  color: #031014;
}

.mobile-menu-social {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.mobile-menu-call:hover,
.mobile-menu-social:hover {
  transform: translateY(-2px);
}

.mobile-menu-call svg,
.mobile-menu-social svg {
  width: 17px;
  height: 17px;
}

/* Цэсний товч ба цэс нь ЗӨВХӨН 1100px-ээс доош ажиллана */
@media (max-width: 1100px) {
  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 1101px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }
}


/* =========================================================
   E. ФОРМЫН ТАЛБАР, ШОШГО, ХАРИУ МЕССЕЖ
========================================================= */

.order-brief-form .field {
  margin-bottom: 14px;
}

/* Жинхэнэ шошго — placeholder нь бичиж эхэлмэгц алга болдог тул
   ямар талбар болох нь мартагддаг байсан. */
.order-brief-form label {
  display: block;
  margin-bottom: 6px;
  color: #98a2b6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.order-brief-form label em {
  color: #8e97ab;
  font-style: normal;
  font-weight: 400;
}

/* .field дотор орсон тул доод зайг label удирдана */
.order-brief-form .field .calc-input {
  margin-bottom: 0;
}

/* Алдаатай талбар */
.calc-input.has-error {
  border-color: #ff6b5e;
  box-shadow: 0 0 12px rgba(255, 107, 94, 0.22);
}

/* Илгээх товч ажиллаж байх үе */
.calc-submit-btn.is-loading {
  opacity: 0.65;
  cursor: wait;
  pointer-events: none;
}

/* --- Хариу мессеж: амжилт / алдаа / илгээж байна --- */
.order-feedback {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.55;
  border: 1px solid;
}

.order-feedback.is-success {
  background: rgba(216, 255, 57, 0.08);
  border-color: rgba(216, 255, 57, 0.55);
  color: var(--lime);
}

.order-feedback.is-error {
  background: rgba(255, 107, 94, 0.08);
  border-color: rgba(255, 107, 94, 0.5);
  color: #ff9e94;
}

.order-feedback.is-pending {
  background: rgba(89, 246, 255, 0.07);
  border-color: rgba(89, 246, 255, 0.4);
  color: var(--cyan);
}

.form-privacy {
  margin-top: 12px;
  color: #77808f;
  font-size: 10.5px;
  line-height: 1.5;
}


/* =========================================================
   F. FOOTER-ИЙН ШИНЭ БҮТЭЦ
   Өмнө нь ганц мөр байсныг 4 баганат бүтэц болгов.
   Холбоо барих бүх мэдээлэл энд орно.
========================================================= */

.footer-top {
  padding: 56px 0 40px;
  display: grid;
  /* Брэнд + 4 багана (Заавар, Хэсгүүд, Холбоо барих, Нөхцөл).
     Заавруудын багана нэмэгдсэн тул 4-өөс 5 болов — эс тэгвэл
     сүүлчийнх нь доош унаж мөр эвдэрнэ. */
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px 30px;
}

.footer-brand {
  max-width: 320px;
}

.footer-tagline {
  margin-top: 14px;
  color: #838c9f;
  font-size: 13px;
  line-height: 1.7;
}

.footer-brand .footer-status {
  margin-top: 18px;
}

.footer-col h4 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-contact,
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8b94a6;
  font-size: 13px;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--cyan);
}

.footer-contact a,
.footer-links a {
  color: #8b94a6;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding: 22px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}


/* =========================================================
   G. МОБАЙЛ НААЛТТАЙ ТОВЧ
   Зөвхөн 768px-ээс доош, дэлгэцийн доод талд байнга харагдана.
   Форм бөглөхийг хүсээгүй хүнийг барих гол суваг.
========================================================= */

.mobile-cta {
  display: none;          /* Дэлгэц том үед огт харагдахгүй */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
  gap: 8px;
  border-top: 1px solid var(--border);
  background: rgba(6, 8, 12, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-cta-btn {
  flex: 1;
  min-height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.mobile-cta-btn svg {
  width: 16px;
  height: 16px;
}

.mobile-cta-btn.is-call {
  background: linear-gradient(110deg, var(--cyan), #7cf8d6);
  color: #031014;
}

.mobile-cta-btn.is-chat {
  border: 1px solid rgba(89, 246, 255, 0.35);
  background: rgba(89, 246, 255, 0.07);
  color: var(--cyan);
}

.mobile-cta-btn.is-calc {
  border: 1px solid rgba(216, 255, 57, 0.35);
  background: rgba(216, 255, 57, 0.06);
  color: var(--lime);
}


/* =========================================================
   ШИНЭ ХЭСГҮҮДИЙН RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  /* Наалттай товчийг асаана */
  .mobile-cta {
    display: flex;
  }

  /* Товч агуулгыг халхлахгүйн тулд доод зай нэмнэ */
  body {
    padding-bottom: 74px;
  }

  .footer-top {
    padding: 40px 0 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom p {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Толгойн "ҮНЭ ТООЦООЛОХ" товчны бичгийг нууж, зөвхөн дүрсийг
     үлдээнэ — hamburger товчтой зэрэгцээд багтахын тулд. */
  .header-towch span {
    display: none;
  }

  .header-towch {
    padding: 0 12px;
    gap: 0;
  }
}


/* =========================================================
   H. ТООЦООЛУУРЫН АНГИЛАЛ (ТАБ) БА ӨРГӨТГӨСӨН ТӨРЛҮҮД
   ---------------------------------------------------------
   Вэбсайт (12 төрөл) / Апп & Систем (7 төрөл) гэсэн хоёр таб.
   19 карт нэг дор харагдвал хэт их болох тул ангиллаар хуваав.
========================================================= */

.calc-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.calc-tab {
  flex: 1;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.022);
  color: #8d96aa;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
}

.calc-tab:hover {
  border-color: rgba(89, 246, 255, 0.35);
  background: rgba(89, 246, 255, 0.04);
  color: var(--white);
}

.calc-tab svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.calc-tab span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.calc-tab em {
  margin-left: auto;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.8px;
  color: #8e97ab;
}

/* Идэвхтэй таб */
.calc-tab.is-active {
  border-color: var(--cyan);
  background: rgba(89, 246, 255, 0.09);
  color: var(--white);
  box-shadow: 0 0 26px rgba(89, 246, 255, 0.14);
}

.calc-tab.is-active svg,
.calc-tab.is-active em {
  color: var(--cyan);
}

/* --- 12 карт багтаах нягт хувилбар --- */
.calc-type-grid.is-compact {
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 12px;
}

.calc-type-grid.is-compact .calc-type-card {
  padding: 18px 16px;
  border-radius: 15px;
  gap: 7px;
}

.calc-type-grid.is-compact .calc-type-card svg {
  width: 22px;
  height: 22px;
}

.calc-type-grid.is-compact .calc-type-card strong {
  font-size: 14px;
  line-height: 1.25;
}

.calc-type-grid.is-compact .calc-type-card span {
  font-size: 11.5px;
  line-height: 1.4;
}

/* Карт бүр дээрх үндсэн үнэ — сонгохоос өмнө ч харагдана */
.type-price {
  margin-top: auto;
  padding-top: 9px;
  width: 100%;
  border-top: 1px solid var(--border);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}

/* Нуугдсан карт, нэмэлт — [hidden] нь display:flex-т дардуулахгүйн тулд */
.calc-type-card[hidden],
.calc-addon-item[hidden] {
  display: none;
}

/* Нэмэлт функцын жагсаалт урт болсон тул зай багасгав */
.calc-addons-list {
  gap: 10px;
}

@media (max-width: 560px) {
  .calc-tabs {
    flex-direction: column;
  }

  .calc-type-grid.is-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .calc-type-grid.is-compact .calc-type-card {
    padding: 15px 13px;
  }

  .calc-type-grid.is-compact .calc-type-card strong {
    font-size: 13px;
  }

  .calc-type-grid.is-compact .calc-type-card span {
    display: none;   /* Жижиг дэлгэцэд тайлбарыг нууж, нэр+үнэ үлдээнэ */
  }
}


/* =========================================================
   I. АППЫН ДЭЛГЭЦИЙН МОКАП (bento-visual дотор)
========================================================= */

.phone-mock {
  position: relative;
  width: 176px;
  margin-inline: auto;
  padding: 9px;
  border: 1px solid rgba(89, 246, 255, 0.28);
  border-radius: 26px;
  background: #080b11;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.55);
}

.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.13);
}

.phone-screen {
  padding: 22px 13px 13px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-radius: 19px;
  background: linear-gradient(165deg, #0d1220, #080b11);
}

.phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-lbl {
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  letter-spacing: 1.2px;
  color: #8e97ab;
}

.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.phone-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
}

.phone-stat span {
  display: block;
  margin-top: 3px;
  font-size: 9.5px;
  letter-spacing: 0.9px;
  color: #8e97ab;
}

.phone-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
}

.phone-bars div {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--cyan), rgba(89, 246, 255, 0.14));
}

.phone-push {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid rgba(216, 255, 57, 0.28);
  border-radius: 10px;
  background: rgba(216, 255, 57, 0.07);
  color: var(--lime);
  font-size: 9px;
  line-height: 1.3;
}

.phone-push svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}


/* =========================================================
   J. ТУСГАЙ ТӨСӨЛ ("Өөр / Тусгай төсөл")
   ---------------------------------------------------------
   Жагсаалтад байхгүй санаатай хүнийг барих гарц.
   Үнэ бодохгүй — оронд нь ярианд урина.
========================================================= */

/* Тусгай төслийн карт — тасархай хүрээгээр бусдаас ялгана */
.calc-type-card.is-custom-card {
  border-style: dashed;
  border-color: rgba(216, 255, 57, 0.32);
  background: rgba(216, 255, 57, 0.028);
}

.calc-type-card.is-custom-card svg,
.calc-type-card.is-custom-card .type-price {
  color: var(--lime);
}

.calc-type-card.is-custom-card .type-price {
  font-size: 11.5px;
  letter-spacing: 0.3px;
}

.calc-type-card.is-custom-card:hover {
  border-color: rgba(216, 255, 57, 0.6);
  background: rgba(216, 255, 57, 0.06);
}

.calc-type-card.is-custom-card.active {
  border-style: solid;
  border-color: var(--lime);
  background: rgba(216, 255, 57, 0.09);
  box-shadow: 0 0 30px rgba(216, 255, 57, 0.15);
}

/* Үнийн оронд гарах "Ярилцаж тогтооно" — 46px хэтэрхий том тул багасгав */
.summary-price.is-quote {
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--lime);
  text-shadow: 0 0 26px rgba(216, 255, 57, 0.25);
}

/* Нэмэлт функцын жагсаалтыг орлох тайлбар блок */
.custom-brief {
  display: flex;
  gap: 18px;
  padding: 26px 24px;
  border: 1px dashed rgba(216, 255, 57, 0.3);
  border-radius: 18px;
  background: rgba(216, 255, 57, 0.03);
}

.custom-brief[hidden] {
  display: none;
}

.custom-brief-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(216, 255, 57, 0.3);
  background: rgba(216, 255, 57, 0.07);
  color: var(--lime);
}

.custom-brief-icon svg {
  width: 19px;
  height: 19px;
}

.custom-brief-body h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.custom-brief-body p {
  color: #8b94a8;
  font-size: 13.5px;
  line-height: 1.65;
}

.custom-brief-steps {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.custom-brief-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #a2abbd;
  font-size: 13px;
  line-height: 1.5;
}

.custom-brief-steps li span {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 255, 57, 0.35);
  border-radius: 50%;
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

/* Нуугдсан нэмэлт функцын гарчиг ба жагсаалт */
#addonsTitle[hidden],
#addonsList[hidden] {
  display: none;
}

@media (max-width: 560px) {
  .custom-brief {
    flex-direction: column;
    gap: 14px;
    padding: 20px 17px;
  }

  /* Тусгай картын тайлбарыг жижиг дэлгэцэд ч үлдээнэ —
     бусад картаас утга нь илүү чухал */
  .calc-type-grid.is-compact .calc-type-card.is-custom-card span {
    display: block;
  }
}

/* =========================================================
   K. ТООЦООЛУУРЫН ТАЙЛБАР, ТӨЛБӨРИЙН ШАТ,
      АРЧИЛГААНЫ БАГЦ, ЭХ КОДЫН СОНГОЛТ
   (гэрээний нөхцөлтэй нийцүүлэх зорилгоор нэмэгдсэн)
========================================================= */

/* --- Тооцоолуурын доорх хуулийн тайлбар --- */
.summary-disclaimer {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(120, 155, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: #98a0b2;
  font-size: 11.5px;
  line-height: 1.65;
}

.summary-disclaimer strong {
  color: var(--white);
  font-weight: 600;
}

/* --- Төлбөрийн 3 үе шат ---
   Хэвтээ гүйлгээ: зангилаанууд нэг шугам дээр сууж, шугам нь
   картуудын завсраар л харагдана (карт нь тунгалаг биш тул
   доогуур нь дарагдана). Дараалал энд ЖИНХЭНЭ утгатай —
   төлбөр 1 → 2 → 3 гэсэн дарааллаар хийгддэг тул дугаарлав. */

.pay-stages {
  margin-top: 60px;
}

.pay-head {
  max-width: 620px;
  margin-bottom: 38px;
}

.pay-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.pay-head h3 {
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.15;
}

.pay-head p {
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.75;
}

.pay-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Зангилааны төвийг дайрсан холбогч шугам */
.pay-track::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(216, 255, 57, 0.35),
    rgba(89, 246, 255, 0.35),
    transparent
  );
}

.pay-step {
  position: relative;
  z-index: 1;
  padding: 28px 26px 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(11, 15, 22, 0.96);
  backdrop-filter: blur(10px);
}

.pay-node {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: #0a0c10;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.pay-pct {
  display: block;
  margin: 20px 0 10px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
}

.pay-pct i {
  margin-left: 2px;
  color: var(--lime);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.pay-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
}

.pay-when {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid rgba(89, 246, 255, 0.25);
  border-radius: 999px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.4px;
}

.pay-step p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .pay-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Босоо өрөлт дээр хэвтээ шугам утгагүй */
  .pay-track::before {
    display: none;
  }

  .pay-pct {
    margin: 16px 0 8px;
    font-size: 36px;
  }
}

/* --- НЭЭЛТИЙН ДАРААХ СЕКЦ --- */
.aftercare {
  padding: 110px 0;
  border-bottom: 1px solid var(--border);
}

.aftercare-lead {
  max-width: 640px;
  margin-top: 22px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
}

.aftercare-lead strong {
  color: var(--lime);
  font-weight: 600;
}

/* --- Арчилгааны багцууд --- */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.care-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(13, 17, 24, 0.75);
  backdrop-filter: blur(20px);
}

.care-card.is-featured {
  border-color: rgba(216, 255, 57, 0.4);
  background: rgba(216, 255, 57, 0.04);
}

.care-flag {
  position: absolute;
  top: -11px;
  left: 26px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: #0a0c10;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

.care-name {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.care-card.is-featured .care-name {
  color: var(--lime);
}

.care-price {
  margin: 14px 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.care-price span {
  margin-left: 3px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.care-list {
  flex: 1;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.care-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid rgba(120, 155, 255, 0.08);
  color: #c3c9d6;
  font-size: 13px;
  line-height: 1.5;
}

.care-list li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "✓";
  font-size: 12px;
}

.care-list li.is-off {
  color: #98a1b4;
}

.care-list li.is-off::before {
  color: #98a1b4;
  content: "—";
}

.care-extra {
  padding-top: 4px;
  color: var(--gray);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.5px;
}

.care-note {
  max-width: 900px;
  margin-top: 26px;
  color: #77808f;
  font-size: 12.5px;
  line-height: 1.75;
}

/* --- Эх кодын хувилбар --- */
.code-options {
  margin-top: 70px;
  padding-top: 55px;
  border-top: 1px solid var(--border);
}

.code-options h3 {
  margin-bottom: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -1px;
}

.code-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.code-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(13, 17, 24, 0.6);
}

.code-tag {
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.code-card strong {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.code-card p {
  flex: 1;
  margin-bottom: 18px;
  color: var(--gray);
  font-size: 12.5px;
  line-height: 1.65;
}

.code-card b {
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* --- Хариу үйлдэл --- */
@media (max-width: 980px) {
  .care-grid,
  .code-grid {
    grid-template-columns: 1fr;
  }

  .aftercare {
    padding: 80px 0;
  }

  .care-flag {
    left: 20px;
  }
}

/* =========================================================
   L. ХУУЛИЙН ХУУДСУУД (nuutslal.html, nohtsol.html)
========================================================= */

.legal-page {
  padding: 150px 0 110px;
}

.legal-wrap {
  max-width: 820px;
}

.legal-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.legal-wrap h1 {
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.08;
}

.legal-updated {
  margin-bottom: 40px;
  color: #98a1b4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.5px;
}

.legal-lead {
  margin-bottom: 46px;
  padding: 22px 24px;
  border: 1px solid rgba(120, 155, 255, 0.2);
  border-left: 2px solid var(--lime);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: #c3c9d6;
  font-size: 14.5px;
  line-height: 1.8;
}

.legal-wrap section {
  margin-bottom: 42px;
}

.legal-wrap h2 {
  margin-bottom: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.legal-wrap h3 {
  margin: 22px 0 10px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.legal-wrap p {
  margin-bottom: 14px;
  color: #b6bdca;
  font-size: 14.5px;
  line-height: 1.85;
}

.legal-wrap ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.legal-wrap ul li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 22px;
  color: #b6bdca;
  font-size: 14.5px;
  line-height: 1.75;
}

.legal-wrap ul li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "▸";
  font-size: 12px;
}

.legal-wrap strong {
  color: var(--white);
  font-weight: 600;
}

.legal-wrap a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(89, 246, 255, 0.35);
}

.legal-wrap a:hover {
  border-bottom-color: var(--cyan);
}

.legal-note {
  padding: 16px 18px;
  border: 1px solid rgba(216, 255, 57, 0.22);
  border-radius: 12px;
  background: rgba(216, 255, 57, 0.04);
  font-size: 13.5px !important;
}

.legal-contact li::before {
  content: "·";
}

.legal-back {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.footer-bottom-text {
  padding: 30px 0;
  color: #98a1b4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10.5px;
  letter-spacing: 1px;
  text-align: center;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 120px 0 80px;
  }
}

/* =========================================================
   M. ҮНИЙН ХҮРЭЭ БА БАЙГУУЛЛАГЫН ТОМООХОН ТӨСЛИЙН КАРТ
========================================================= */

/* Хүрээ хэлбэрээр гарах үед тоо урт болдог тул жаахан багасгана */
.summary-price.is-range {
  font-size: clamp(24px, 3.4vw, 38px);
  letter-spacing: -1.5px;
  line-height: 1.15;
}

/* Байгууллагын карт — тусгай төслийн картаас өнгөөр ялгана */
.calc-type-card.is-enterprise {
  border-color: rgba(89, 246, 255, 0.4);
  border-style: solid;
}

.calc-type-card.is-enterprise .type-price {
  color: var(--cyan);
}

.calc-type-card.is-enterprise.selected {
  border-color: var(--cyan);
  background: rgba(89, 246, 255, 0.07);
}

.calc-type-card.is-enterprise .type-price {
  font-size: 11.5px;
  letter-spacing: 0;
}

/* =========================================================
   N. ХИЙГДСЭН АЖЛЫН ГАЛЕРЕЙ — АГААРТ ЭРГЭЛДЭХ ГУРВАН ХАЙРЦАГ
   ---------------------------------------------------------
   Энд эргэлддэг нь хайрцаг ДОТОРХ зураг биш, БҮТЭН МОКАП
   ХАЙРЦАГ өөрөө. Гурван ажил гурван тусдаа хүрээтэй хайрцагт
   сууж, нэг тойргоор агаарт эргэлдэнэ.

   Хэрхэн ажилладаг вэ:
   1. .showcase-stage дээр perspective тавьсан тул дотор нь
      гурван хэмжээст орон зай үүснэ.
   2. .showcase-ring бол эргэлдэх "тайз". Түүнийг rotateY(--rot)-оор
      эргүүлэхэд дотор нь байрлах бүх хайрцаг тойргоороо явна.
      --rot-ыг JS 120 градусаар нэмэгдүүлж эргүүлнэ.
   3. Хайрцаг бүр тойргийн өөрийн цэгт (--a = 0/120/240 градус)
      radius --r зайд сууна. Дараа нь rotateY(-a) rotateY(-rot)
      хийж БУЦААЖ эргүүлснээр хайрцаг үргэлж үзэгч рүү шууд
      харна — хажуу тийш хэвтэхгүй.
   4. rotateX(-27deg) нь тойргийг хазайлгана. Ингэснээр урагш
      ирсэн хайрцаг доошоо, хойд хоёр нь дээшээ гарч, өрөгдсөн
      мэт харагдана. Хайрцаг дотроо rotateX(27deg)-ээр үүнийг
      мөн цуцална.
   5. Ойрын хайрцаг perspective-ийн ачаар том, хойдууд нь жижиг
      харагдана — гүн нь өөрөө үүсдэг.

   --r (тойргийн радиус)-ыг JS тайзны өргөнөөс тооцно
   (app.js → Showcase.sizeOrbit).
========================================================= */

.showcase-stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  perspective: 900px;
  perspective-origin: 50% 46%;
}

.showcase-ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: rotateX(-34deg) rotateY(var(--rot, 0deg));
  transition: transform 1s cubic-bezier(0.45, 0.05, 0.2, 1);
}

/* Гурван хайрцаг нэг л нүдэнд давхарлан сууна — байрлалыг нь
   зөвхөн доорх transform шийднэ. */
.showcase-ring .showcase-card {
  grid-area: 1 / 1;
  width: min(420px, 100%);
  margin: 0;

  /* Тойргийн байрлал + үзэгч рүү эргүүлэх буцаалт */
  transform: rotateY(var(--a, 0deg)) translateZ(var(--r, 120px))
    rotateY(calc(-1 * var(--a, 0deg))) rotateY(calc(-1 * var(--rot, 0deg)))
    rotateX(34deg) scale(0.52);

  /* Тайзтай ЯГ ижил хугацаа, ижил муруй — эс тэгвэл хайрцаг
     эргэх явцдаа чичирнэ. */
  transition:
    transform 1s cubic-bezier(0.45, 0.05, 0.2, 1),
    opacity 1s ease,
    filter 1s ease;

  /* Хуучин хөвөх анимаци, налуу байрлалыг эргэлт орлоно */
  animation: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(9, 12, 18, 0.92)
  );
}

/* Нарийн дэлгэц дээр хажуугийн зай багатай тул тойргийг
   нягтруулж, хайрцгуудыг томсгоно (радиусыг JS мөн багасгана). */
@media (max-width: 768px) {
  .showcase-ring .showcase-card {
    transform: rotateY(var(--a, 0deg)) translateZ(var(--r, 95px))
      rotateY(calc(-1 * var(--a, 0deg))) rotateY(calc(-1 * var(--rot, 0deg)))
      rotateX(34deg) scale(0.62);
  }
}

/* Урагш ирсэн хайрцаг бүтэн тод, хойд хоёр нь бүдэг */
.showcase-ring .showcase-card[data-pos="0"] {
  opacity: 1;
  filter: none;
}

.showcase-ring .showcase-card:not([data-pos="0"]) {
  opacity: 0.85;
  filter: brightness(0.6) saturate(0.85);
}

/* Зөвхөн урд хайрцгийн скан шугам ажиллана — гурвуулаа
   зэрэг гүйвэл нүд ядраана. */
.showcase-card:not([data-pos="0"]) .scan-line {
  display: none;
}

.showcase-card .profile-image-box img,
.showcase-card .profile-image-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Доорх цэгүүд ---
   Хайрцаг бүр өөрийн нэрийг дотроо агуулдаг болсон тул цэгүүд
   нь хайрцгаас гарч, тайзны доод талд төвлөрөв. */
.showcase-dots {
  position: absolute;
  left: 50%;
  bottom: 4px;
  z-index: 12;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(6, 8, 12, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.showcase-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 247, 255, 0.25);
  cursor: pointer;
  transition:
    width 0.35s ease,
    background 0.35s ease;
}

.showcase-dot.is-active {
  width: 20px;
  background: var(--lime);
}

.showcase-dot:hover {
  background: rgba(245, 247, 255, 0.55);
}

.showcase-dot.is-active:hover {
  background: var(--lime);
}

@media (prefers-reduced-motion: reduce) {
  /* Хөдөлгөөн багасгасан үед тойрог үүсгэхгүй — зөвхөн урд
     хайрцаг дангаараа тэгш харагдана. */
  .showcase-ring {
    transform: none;
  }

  .showcase-ring .showcase-card {
    transform: scale(0.9);
    filter: none;
    opacity: 0;
  }

  .showcase-ring .showcase-card[data-pos="0"] {
    opacity: 1;
  }
}

/* Галерейн гарчиг доод хэсэгт бодит мэдээлэл (төслийн нэр, домэйн)
   харуулдаг болсон тул хөвөгч тэмдэглэгээг дээш нь өргөж,
   бичгийг халхлахаас сэргийлэв. */
.floating-tech-3 {
  bottom: 22%;
}

/* Портфолиогийн карт дарагдах болсон — бүх картыг бүрхсэн
   ил тод холбоос. Текст, overlay нь дээр нь хэвээр харагдана. */
.project-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}


/* =========================================================
   O. ВЭБТЭЙ БОЛСНООР — БОЛОМЖУУД (#shiidel зүүн багана)
   Зүүн багана богино байсны улмаас үүссэн хоосон зайг
   утга агуулсан контентоор дүүргэв.
========================================================= */

.benefits {
  margin-top: 46px;
  max-width: 580px;
}

.benefits-tag {
  display: block;
  margin-bottom: 22px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.4px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(120, 155, 255, 0.12);
  border: 1px solid rgba(120, 155, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

/* Нэг ширхэг 1px-ийн зайг фон болгон ашиглаж, доторх
   зураасыг үүсгэв — ингэснээр карт бүр тусдаа хүрээгүй,
   нэгдмэл хүснэгт шиг харагдана. */
.benefit {
  padding: 22px 20px 24px;
  background: #0a0e15;
}

.benefit .icon {
  width: 17px;
  height: 17px;
  margin-bottom: 13px;
  color: var(--lime);
  stroke-width: 1.7;
}

.benefit strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

.benefit p {
  color: #7c8495;
  font-size: 12.5px;
  line-height: 1.65;
}


@media (max-width: 1100px) {
  .benefits {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .benefits {
    margin-top: 34px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   P. #shiidel — NODE КАРТ, ХОЛБОГЧ СХЕМ, ХЭМЖИЛТИЙН ХАВТАН
========================================================= */

.about-grid {
  position: relative;
}

/* --- Зүүн баганын брэнд тэмдэг --- */
.about-mark {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
}

.about-mark svg {
  fill: var(--cyan);
  stroke: var(--cyan);
  stroke-width: 1.2;
  opacity: 0.9;
}

.about-mark svg path {
  fill: none;
  opacity: 0.5;
}

.about-mark span {
  color: #7c8495;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* --- Холбогч схем (зөвхөн чимэглэл) --- */
.about-circuit {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 260px;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.about-circuit .cw {
  fill: none;
  stroke: rgba(89, 246, 255, 0.35);
  stroke-width: 1;
}

.about-circuit .cw-dim {
  stroke: rgba(138, 92, 255, 0.28);
}

.about-circuit .cn {
  fill: var(--cyan);
}

.about-circuit .cn-dim {
  fill: var(--violet);
}

.about-circuit .cn-end {
  fill: none;
  stroke: rgba(89, 246, 255, 0.6);
  stroke-width: 1.2;
}

/* Контент схемийн дээр байрлана */
.about-left,
.about-right {
  position: relative;
  z-index: 1;
}

/* --- NODE КАРТУУД --- */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.node-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 22px 24px 24px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(11, 15, 22, 0.82);
  backdrop-filter: blur(12px);
}

.node-badge {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 2px;
  padding: 12px 0;
  border-radius: 13px;
  background: rgba(89, 246, 255, 0.07);
  border: 1px solid rgba(89, 246, 255, 0.2);
}

.node-badge span {
  color: #7c8495;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.node-badge b {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* Зангилаа бүр өөр өнгөтэй — схемийн салаануудтай нийцнэ */
.node-2 .node-badge {
  background: rgba(138, 92, 255, 0.08);
  border-color: rgba(138, 92, 255, 0.24);
}

.node-2 .node-badge b {
  color: var(--violet);
}

.node-3 .node-badge {
  background: rgba(216, 255, 57, 0.07);
  border-color: rgba(216, 255, 57, 0.22);
}

.node-3 .node-badge b {
  color: var(--lime);
}

.node-card p {
  align-self: center;
  color: #7c8495;
  font-size: 14px;
  line-height: 1.75;
}

.node-card p strong {
  color: var(--white);
  font-weight: 600;
}

.node-card p em {
  color: #9aa2b3;
  font-style: italic;
}

/* --- ХЭМЖИХ БОЛОМЖТОЙ ҮЗҮҮЛЭЛТҮҮД --- */
.metrics {
  margin-top: 12px;
}

.metrics-tag {
  display: block;
  margin-bottom: 14px;
  color: #98a1b4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.2px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric {
  padding: 16px 14px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(13, 17, 24, 0.5);
}

.metric .icon {
  width: 15px;
  height: 15px;
  margin-bottom: 10px;
  color: var(--cyan);
  stroke-width: 1.7;
}

.metric strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12.5px;
  font-weight: 600;
}

.metric span {
  display: block;
  color: #8e97ab;
  font-size: 11px;
  line-height: 1.5;
}

/* --- Бүтэн өргөний тэмдэглэл --- */
.about-footnote {
  margin-top: 40px;
  padding: 16px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  color: #8e97ab;
  font-size: 12.5px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1100px) {
  .about-circuit {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .node-card {
    grid-template-columns: 52px 1fr;
    gap: 15px;
    padding: 18px 18px 20px 16px;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-footnote {
    text-align: left;
  }
}

/* =========================================================
   Q. ХӨДӨЛГӨӨН — LIFECYCLE ORB БА ТОВЧНЫ АНХААРАЛ ТАТАЛТ
   ---------------------------------------------------------
   Бүх хөдөлгөөн transform / opacity дээр л ажиллана —
   layout дахин тооцоолохгүй тул хуудасны хурдад нөлөөлөхгүй.
   Хамгийн доор prefers-reduced-motion бүгдийг зогсооно.
========================================================= */

/* --- 1. Тойргууд эргэнэ --- */
.orb-ring-1 {
  animation: orb-spin 26s linear infinite;
}

.orb-ring-2 {
  animation: orb-spin-35 34s linear infinite reverse;
}

.orb-ring-3 {
  animation: orb-spin-55 44s linear infinite;
}

/* Тойрог бүр өөрийн налуутай тул эргэлтийг тэр өнцгөөс нь
   эхлүүлэхгүй бол байрлал нь харайна. */
@keyframes orb-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orb-spin-35 {
  from {
    transform: rotate(35deg);
  }
  to {
    transform: rotate(395deg);
  }
}

@keyframes orb-spin-55 {
  from {
    transform: rotate(55deg);
  }
  to {
    transform: rotate(415deg);
  }
}

/* --- 2. Төв цөм амьсгална --- */
.orb-center {
  animation: orb-breathe 6s ease-in-out infinite;
}

.orb-core {
  animation: orb-core-pulse 3s ease-in-out infinite;
}

@keyframes orb-breathe {
  0%,
  100% {
    box-shadow: 0 0 70px rgba(89, 246, 255, 0.18);
  }
  50% {
    box-shadow: 0 0 110px rgba(89, 246, 255, 0.34);
  }
}

@keyframes orb-core-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 15px white,
      0 0 45px var(--cyan),
      0 0 100px var(--cyan);
  }
  50% {
    transform: scale(1.12);
    box-shadow:
      0 0 22px white,
      0 0 65px var(--cyan),
      0 0 140px var(--cyan);
  }
}

/* --- 3. Шошгууд дараалан асна ---
   Энэ нь чимэглэл биш: BRIEF → UI/UX → DEV → LIVE гэсэн
   ажлын бодит дараалал. Хөдөлгөөн нь мессежээ давтаж байна. */
.orb-label {
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  animation: orb-label-cycle 10s ease-in-out infinite;
}

.orb-label-1 {
  animation-delay: 0s;
}
.orb-label-2 {
  animation-delay: 2.5s;
}
.orb-label-3 {
  animation-delay: 5s;
}
.orb-label-4 {
  animation-delay: 7.5s;
}

@keyframes orb-label-cycle {
  0%,
  22%,
  100% {
    color: #98a1b4;
    border-color: var(--border);
    box-shadow: none;
  }
  6%,
  16% {
    color: var(--cyan);
    border-color: rgba(89, 246, 255, 0.55);
    box-shadow: 0 0 18px rgba(89, 246, 255, 0.22);
  }
}

/* --- 4. Үндсэн товч "дар" гэж дуудна ---
   Зөвхөн ГОЛ CTA дээр. Бүх товч дээр тавьвал анхаарал
   тарж, аль нь чухал болох нь мэдэгдэхгүй болно. */
.towch-primary,
.header-towch,
.bento-btn {
  position: relative;
}

.towch-primary::after,
.header-towch::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid var(--cyan);
  opacity: 0;
  pointer-events: none;
  animation: cta-ring 3.4s ease-out infinite;
}

.header-towch::after {
  animation-delay: 1.2s;
}

@keyframes cta-ring {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  60%,
  100% {
    opacity: 0;
    transform: scale(1.09);
  }
}

/* Хулгана дээр очиход давалгаа зогсож, товч өргөгдөнө —
   хэрэглэгч аль хэдийн олсон тул дуудах шаардлагагүй. */
.towch-primary:hover::after,
.header-towch:hover::after {
  animation-play-state: paused;
  opacity: 0;
}

.towch:hover {
  transform: translateY(-2px);
}

.towch:active {
  transform: translateY(0) scale(0.985);
}

.bento-btn:active,
.bento-btn-sm:active,
.mobile-cta-btn:active {
  transform: scale(0.97);
}

/* Мобайл доод самбарын гол товч зөөлөн анивчина */
.mobile-cta-btn.is-calc {
  animation: cta-nudge 4s ease-in-out infinite;
}

@keyframes cta-nudge {
  0%,
  88%,
  100% {
    transform: translateY(0);
  }
  92% {
    transform: translateY(-3px);
  }
  96% {
    transform: translateY(-1px);
  }
}

/* --- 5. Хөдөлгөөн багасгах тохиргоог хүндэтгэнэ --- */
@media (prefers-reduced-motion: reduce) {
  .orb-ring-1,
  .orb-ring-2,
  .orb-ring-3,
  .orb-center,
  .orb-core,
  .orb-label,
  .mobile-cta-btn.is-calc {
    animation: none;
  }

  .towch-primary::after,
  .header-towch::after {
    animation: none;
    opacity: 0;
  }

  /* Шошгууд бүгд уншигдахуйц хэвээр үлдэнэ */
  .orb-label {
    color: var(--cyan);
  }
}

/* =========================================================
   R. LIQUID GLASS ТОВЧНУУД
   ---------------------------------------------------------
   Товчнуудыг "шингэн шил"-ээр цутгасан зузаан биет мэт
   харагдуулна. Шинэ өнгө НЭМЭХГҮЙ — зөвхөн брэндийн
   cyan / violet / lime өнгийг л ашиглана.

   ШИЛ ЯАГААД ШИЛ ШИГ ХАРАГДДАГ ВЭ — 5 давхарга:

     1. Дээд ирмэг дээрх НИМГЭН цагаан тусгал
        (зөвхөн эхний 5% — өргөн болбол зүгээр л цайвар
        товч болж хувирна, шил болохоо болино)
     2. Дунд хэсгийн бага зэрэг БАРААН бүс — "бэлхүүс".
        Энэ бол шилний зузаанаар гэрэл сарнисан хэсэг.
     3. Доод хэсэгт гэрэл ЦУГЛАРНА — шилээр нэвт өнгөрсөн
        гэрэл ёроолд нь хуримтлагдана.
     4. Доод ирмэг дээрх тод шугам — шилний зузааны ирмэг.
     5. Товчны ДООР унасан өнгөт туяа (caustic) — шилээр
        нэвт өнгөрсөн гэрэл гадаргууд тусч байгаа нь.

   Бүгд background/box-shadow дээр хийгдсэн тул нэмэлт HTML
   элемент, зураг, ямар ч сан шаардахгүй.
========================================================= */

/* Хэлбэр: шилэн капсул.
   Капсул хэлбэр нь ганц мөр бичигтэй үедээ л зөв харагддаг тул
   товчны бичгийг мөр таслахгүй болгов. */
.towch,
.bento-btn {
  border-radius: 999px;
  white-space: nowrap;
}

/* Маш нарийн дэлгэц дээр урт бичиг багтахгүй тул мөр таслахыг
   зөвшөөрч, оронд нь булангаа зөөлрүүлнэ (капсул биш, дугуйвтар
   тэгш өнцөгт) — ингэснээр хоёр мөр бичиг цэвэрхэн харагдана. */
@media (max-width: 480px) {
  /* Зөвхөн урт бичигтэй гол товч мөр таслана. bento-товчнууд
     богино тул капсул хэвээрээ багтана. */
  .towch {
    white-space: normal;
    border-radius: 22px;
    padding: 12px 20px;
  }
}

/* bento-товчны сум хэт томрохоос сэргийлнэ */
.bento-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* =========================================================
   R1. ГОЛ ТОВЧ — cyan шил
========================================================= */

.towch-primary,
.bento-btn,
.mobile-cta-btn.is-call {
  border: none;
  color: #011016;
  background:
    /* 1. дээд ирмэгийн НИМГЭН цагаан тусгал */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.45) 4%,
      rgba(255, 255, 255, 0.05) 16%,
      rgba(255, 255, 255, 0) 30%
    ),
    /* 2. тусгалын ЯГ ДООРХ бараан бүс — шилний зузаан эндээс
          мэдэгдэнэ. Энэ давхарга байхгүй бол зүгээр л цайвар
          товч болж хувирна. */
      linear-gradient(
        180deg,
        rgba(0, 36, 50, 0.72) 4%,
        rgba(0, 36, 50, 0.55) 24%,
        rgba(0, 36, 50, 0) 56%
      ),
    /* 3. доод хагаст цугларсан гэрэл */
      linear-gradient(
        180deg,
        rgba(150, 252, 250, 0) 45%,
        rgba(150, 252, 250, 0.5) 78%,
        rgba(215, 255, 253, 0.85) 100%
      ),
    /* их бие */ linear-gradient(180deg, #17a9bd 0%, #29c5d3 100%);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1.5px 0 rgba(255, 255, 255, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.26),
    /* 5. доош унасан өнгөт туяа */ 0 12px 26px rgba(0, 0, 0, 0.5),
    0 20px 40px -12px rgba(89, 246, 255, 0.9);
}

.towch-primary:hover,
.bento-btn:hover,
.mobile-cta-btn.is-call:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 1),
    inset 0 -1.5px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 18px 34px rgba(0, 0, 0, 0.55),
    0 26px 52px -12px rgba(89, 246, 255, 1);
}

/* =========================================================
   R2. ХОЁРДУГААР ТОВЧ — хар шил, violet туяатай
========================================================= */

.towch-secondary {
  border: none;
  color: var(--white);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.2) 5%,
      rgba(255, 255, 255, 0.02) 18%,
      rgba(255, 255, 255, 0) 30%
    ),
    linear-gradient(
      180deg,
      rgba(138, 92, 255, 0) 52%,
      rgba(138, 92, 255, 0.45) 88%,
      rgba(190, 160, 255, 0.75) 100%
    ),
    linear-gradient(180deg, #1b2130 0%, #080b12 60%, #0c111b 100%);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1.5px 0 rgba(196, 168, 255, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 12px 26px rgba(0, 0, 0, 0.55),
    0 16px 34px -12px rgba(138, 92, 255, 0.6);
}

.towch-secondary:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.28) 5%,
      rgba(255, 255, 255, 0.03) 18%,
      rgba(255, 255, 255, 0) 30%
    ),
    linear-gradient(
      180deg,
      rgba(89, 246, 255, 0) 52%,
      rgba(89, 246, 255, 0.45) 88%,
      rgba(160, 250, 255, 0.8) 100%
    ),
    linear-gradient(180deg, #202839 0%, #0a0e16 60%, #0e141f 100%);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1.5px 0 rgba(150, 246, 255, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 18px 34px rgba(0, 0, 0, 0.6),
    0 22px 44px -12px rgba(89, 246, 255, 0.7);
}

/* =========================================================
   R3. ТОЛГОЙН ТОВЧ — жижиг cyan шилэн капсул
   Өндөр нь бага тул тусгалын бүсүүдийг илүү нягтруулав.
========================================================= */

.header-towch {
  border: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.18) 7%,
      rgba(255, 255, 255, 0) 26%
    ),
    linear-gradient(
      180deg,
      rgba(89, 246, 255, 0) 48%,
      rgba(89, 246, 255, 0.32) 88%,
      rgba(140, 250, 255, 0.55) 100%
    ),
    linear-gradient(180deg, #16202b 0%, #070b11 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(140, 250, 255, 0.5),
    inset 0 0 0 1px rgba(89, 246, 255, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.45),
    0 10px 22px -8px rgba(89, 246, 255, 0.45);
}

.header-towch:hover {
  color: #011016;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.45) 8%,
      rgba(255, 255, 255, 0) 32%
    ),
    linear-gradient(
      180deg,
      rgba(168, 255, 252, 0) 55%,
      rgba(168, 255, 252, 0.75) 100%
    ),
    linear-gradient(180deg, #54e2e6 0%, #2ec1d1 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.45),
    0 14px 28px -8px rgba(89, 246, 255, 0.85);
}

/* =========================================================
   R4. МОБАЙЛ ДООД САМБАРЫН ТОВЧ
   Хоёр мөртэй (дүрс + бичиг) тул бүтэн дугуй биш, зөөлөн булан.
========================================================= */

.mobile-cta-btn {
  border-radius: 16px;
}

.mobile-cta-btn.is-chat {
  border: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0.12) 7%,
      rgba(255, 255, 255, 0) 26%
    ),
    linear-gradient(
      180deg,
      rgba(89, 246, 255, 0) 50%,
      rgba(89, 246, 255, 0.28) 90%,
      rgba(140, 250, 255, 0.5) 100%
    ),
    linear-gradient(180deg, #141d27 0%, #070b10 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(140, 250, 255, 0.45),
    inset 0 0 0 1px rgba(89, 246, 255, 0.18),
    0 6px 16px rgba(0, 0, 0, 0.45);
}

.mobile-cta-btn.is-calc {
  border: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0.12) 7%,
      rgba(255, 255, 255, 0) 26%
    ),
    linear-gradient(
      180deg,
      rgba(216, 255, 57, 0) 50%,
      rgba(216, 255, 57, 0.26) 90%,
      rgba(230, 255, 130, 0.5) 100%
    ),
    linear-gradient(180deg, #1c2015 0%, #080906 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(230, 255, 130, 0.45),
    inset 0 0 0 1px rgba(216, 255, 57, 0.18),
    0 6px 16px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   R5. ХОЛБОО БАРИХ ДУГУЙ ТОВЧ — шилэн бөмбөлөг
========================================================= */

.contact-button {
  background:
    radial-gradient(
      70% 45% at 50% 6%,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0) 70%
    ),
    linear-gradient(
      180deg,
      rgba(0, 44, 58, 0) 30%,
      rgba(0, 44, 58, 0.3) 58%,
      rgba(0, 44, 58, 0) 82%
    ),
    linear-gradient(
      180deg,
      rgba(168, 255, 252, 0) 58%,
      rgba(168, 255, 252, 0.8) 100%
    ),
    linear-gradient(180deg, #59e6ea 0%, #2ec1d1 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 0 rgba(255, 255, 255, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 -22px 30px -20px rgba(0, 38, 50, 0.6),
    0 18px 40px rgba(0, 0, 0, 0.5),
    0 26px 55px -14px rgba(89, 246, 255, 0.8);
}

.contact-button:hover {
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    inset 0 -22px 30px -20px rgba(0, 38, 50, 0.5),
    0 24px 50px rgba(0, 0, 0, 0.55),
    0 34px 70px -16px rgba(89, 246, 255, 1);
}

/* =========================================================
   R6. ДАРАХ АГШИН — шил дарагдаж, доорх туяа нь хумигдана
========================================================= */

.towch:active,
.bento-btn:active,
.header-towch:active,
.mobile-cta-btn:active,
.contact-button:active {
  transform: translateY(1px) scale(0.985);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -8px 14px -6px rgba(0, 0, 0, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.45);
}

/* Хөдөлгөөн багасгасан үед материал нь хэвээр —
   зөвхөн өргөгдөх хөдөлгөөн нь болино. */
@media (prefers-reduced-motion: reduce) {
  .towch:hover,
  .bento-btn:hover,
  .towch-primary:hover,
  .towch-secondary:hover,
  .contact-button:hover {
    transform: none;
  }
}

/* =========================================================
   S. MODULE 06 — БҮТЭН МӨРИЙН КАРТ БА ДОТООД СИСТЕМИЙН МОКАП
   ---------------------------------------------------------
   Өмнө нь энэ карт 3 баганаас 2-ыг л эзэлж, баруун талд
   хоосон нүд үлддэг байв. Одоо бүтэн мөрийг эзэлж, баруун
   талдаа хоёр жишээ дэлгэц харуулна:
     1) захиалагчийн гар утасны апп
     2) ажилтны дотоод систем (CRM · агуулах · Telegram bot)

   Хоёулаа ЖИШЭЭ дэлгэц — доор нь тэмдэглэсэн. Эдгээр нь
   Synapse-ийн бодит үзүүлэлт биш, харин ямар систем хийж
   өгдгийг харуулсан дүрслэл.
========================================================= */

.bento-wide.is-row {
  grid-column: 1 / -1;
  grid-template-columns: 1.15fr 0.62fr 0.78fr;
  gap: 34px;
}

/* Мокапын доорх тайлбар — бодит тоо биш гэдгийг илэрхийлнэ.
   .bento-card p (13px) -ийг дарахын тулд сонгогчийг тодорхой
   бичив — эс тэгвэл карт доторх ердийн догол мөрийн хэмжээг
   өвлөж, мокапаас том харагдана. */
.bento-card .mock-note {
  margin: 12px 0 0;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  line-height: 1.5;
  letter-spacing: 1.3px;
  color: #98a1b4;
}

/* --- Дотоод системийн цонх --- */
.panel-mock {
  border: 1px solid rgba(89, 246, 255, 0.24);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(165deg, #0d1220, #080b11);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.55);
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(120, 155, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.panel-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #252b3b;
}

.panel-bar span:nth-child(1) {
  background: #ff5f56;
}
.panel-bar span:nth-child(2) {
  background: #ffbd2e;
}
.panel-bar span:nth-child(3) {
  background: #27c93f;
}

.panel-bar em {
  margin-left: 8px;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 1.2px;
  color: #8e97ab;
}

.panel-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid rgba(120, 155, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}

.panel-row b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  color: var(--cyan);
}

.panel-row span {
  font-size: 10.5px;
  color: #99a1b3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-chip {
  padding: 3px 8px;
  border-radius: 99px;
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.panel-chip.is-wait {
  border: 1px solid rgba(216, 255, 57, 0.3);
  background: rgba(216, 255, 57, 0.08);
  color: var(--lime);
}

.panel-chip.is-work {
  border: 1px solid rgba(89, 246, 255, 0.3);
  background: rgba(89, 246, 255, 0.08);
  color: var(--cyan);
}

.panel-chip.is-done {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #7d869a;
}

/* Агуулахын үлдэгдлийн зураас */
.panel-stock {
  margin-top: 2px;
}

.panel-stock-lbl {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  letter-spacing: 1.2px;
  color: #8e97ab;
}

.panel-stock-bar {
  height: 6px;
  border-radius: 99px;
  overflow: hidden;
  background: #141a27;
}

.panel-stock-bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

/* Telegram bot мөр */
.panel-bot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(89, 246, 255, 0.24);
  border-radius: 10px;
  background: rgba(89, 246, 255, 0.06);
  color: var(--cyan);
  font-size: 9.5px;
  line-height: 1.35;
}

.panel-bot svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* --- Нарийн дэлгэц --- */
@media (max-width: 1024px) {
  /* 3 багана багтахаа больсон тул: тайлбар бүтэн мөрөнд,
     хоёр жишээ дэлгэц доор нь зэрэгцэнэ. */
  .bento-wide.is-row {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .bento-wide.is-row .bento-content {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .bento-wide.is-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   T. ТООЦООЛУУРЫН БАРУУН БАГАНЫГ ДҮҮРГЭХ
   ---------------------------------------------------------
   Асуудал: зүүн жагсаалт 2080px, баруун хураангуй карт 918px
   байсан тул доор нь 1160px хоосон зай үлддэг байв.

   ХОЁР АЛХМААР ШИЙДЭВ:
     1. Нэмэлт функцүүдийн жагсаалтыг ХОЁР БАГАНА болгож зүүн
        талын өндрийг бараг хоёр дахин богиносгов.
     2. Баруун талд хураангуй картын доор "Вэбтэй болохын
        боломж" гэсэн ГРАФИК самбар нэмэв.

   ⚠️ Самбар нь ямар ч үр дүн амлахгүй. Гэрээний 14.1-д
   борлуулалт, хандалт, хайлтын эрэмбийн баталгаа өгөхгүй гэж
   заасан тул энд "хэдэн хувиар өснө" гэсэн тоо байхгүй —
   зөвхөн вэб гэдэг суваг өөрөө юу хийж чаддагийг харуулна.
========================================================= */

/* --- 1. Нэмэлт функцүүд хоёр баганаар --- */
@media (min-width: 1101px) {
  .calc-addons-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
  }

  /* Хоёр баганад багтахын тулд дотоод зайг бага зэрэг хумив */
  .calc-addon-item {
    padding: 15px 16px;
    gap: 12px;
  }

  .addon-price {
    font-size: 13px;
  }

  /* Багана дүүрсэн тул наалдац хэрэггүй болов. Наалдацтай
     үлдээвэл карт доошоо гулсаж графикийг дарна. */
  .summary-card {
    position: static;
  }
}

/* --- 2. Давуу талын график самбар --- */
.calc-perks {
  margin-top: 20px;
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.perks-head {
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: #8e97ab;
}

.perk {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(120, 155, 255, 0.12);
}

.perk:first-of-type {
  padding-top: 0;
  border-top: none;
}

.perk-vis {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.perk-vis svg {
  width: 100%;
  height: auto;
}

.perk-txt strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.perk-txt span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  color: #7b8396;
  line-height: 1.45;
}

/* Цагийн цагираг доторх тоо */
.perk-num {
  fill: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-anchor: middle;
}

.perk-unit {
  fill: #8e97ab;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-anchor: middle;
}

/* Хайлтын мөрний дүрслэл */
.perk-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 7px;
  border: 1px solid rgba(89, 246, 255, 0.3);
  border-radius: 99px;
  background: rgba(89, 246, 255, 0.05);
}

.perk-search svg {
  width: 10px;
  height: 10px;
  flex: none;
  color: var(--cyan);
}

.perk-hit {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border-radius: 6px;
  background: rgba(216, 255, 57, 0.07);
  border: 1px solid rgba(216, 255, 57, 0.22);
}

.perk-hit.is-dim {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(120, 155, 255, 0.12);
}

.perk-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex: none;
}

.perk-line {
  height: 3px;
  border-radius: 99px;
  background: rgba(245, 247, 255, 0.22);
}

.perk-line.w70 {
  width: 70%;
}
.perk-line.w55 {
  width: 55%;
}
.perk-line.w40 {
  width: 40%;
}

/* Захиалгын автомат урсгал */
.perk-flow {
  display: flex;
  align-items: center;
}

.perk-node {
  width: 22px;
  height: 22px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(89, 246, 255, 0.35);
  border-radius: 7px;
  background: rgba(89, 246, 255, 0.07);
  color: var(--cyan);
}

.perk-node svg {
  width: 11px;
  height: 11px;
}

.perk-node.is-done {
  border-color: rgba(216, 255, 57, 0.5);
  background: rgba(216, 255, 57, 0.1);
  color: var(--lime);
}

.perk-wire {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(89, 246, 255, 0.5),
    rgba(89, 246, 255, 0.2)
  );
}

/* Нарийн дэлгэц дээр график самбарыг дэлгэрэнгүй байрлуулна */
@media (max-width: 1100px) {
  .calc-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 26px;
  }

  .perks-head {
    grid-column: 1 / -1;
  }

  .perk {
    padding-top: 0;
    border-top: none;
    grid-template-columns: 108px 1fr;
  }

  /* 5 зүйл 2 баганад орохоор сүүлчийнх нь ганцаараа үлдэж
     баруун доод буланд хоосон нүд гарна. Тиймээс сүүлчийнхийг
     бүтэн мөрөнд тавьж тэгшитгэв. */
  .perk:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .calc-perks {
    grid-template-columns: 1fr;
  }

  .perk:last-child {
    grid-column: auto;
  }
}

/* =========================================================
   U. ХАЛИЛТЫН ЗАСВАР — HERO ГАРЧИГ
   ---------------------------------------------------------
   АЛДАА: "БОРЛУУЛАЛТЫГ" гэсэн 12 үсэгтэй үг задарч чаддаггүй
   тул grid-ийн багана түүний min-content өргөнөөр ТЭЛЖ,
   доторх бүх зүйл (тайлбар, товч, үзүүлэлт) хамт хальдаг байв.
   body { overflow-x: hidden } нь халилтыг зүгээр л ТАЙРДАГ
   учир гаднаас нь "багтахгүй байна" гэж харагдана.

   ХОЁР ДАВХАР ЗАСВАР:
     1. min-width: 0 — багана нь агуулгынхаа хамгийн урт үгээр
        тэлэхийг хориглоно. Бүтцийн баталгаа.
     2. Гарчгийн хэмжээг дэлгэцийн өргөнтэй уяв. Space Grotesk
        700 дээр "БОРЛУУЛАЛТЫГ" ≈ 8.3 × фонтын хэмжээ − 24px
        өргөнтэй. Хүрээ нь (дэлгэц − 32px) тул фонт хамгийн
        ихдээ (дэлгэц − 8) / 8.31 байж болно. 11vw нь энэ
        хязгаараас 320px-ээс 768px хүртэл бүх өргөнд доогуур.

   overflow-wrap нь эцсийн хамгаалалт: ямар нэг шинэ урт үг
   орж ирвэл тайрагдахын оронд мөр таслана.
========================================================= */

.hero-grid > * {
  min-width: 0;
}

.hero h1,
.hero-description {
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(32px, 11vw, 65px);
  }
}

/* ≤480px дээр байсан тогтмол 42px-ийг дээрх томьёо орлоно —
   360px дээр 42px нь хүрээнээсээ ердөө 3px дотор багтаж
   байсан тул бодит төхөөрөмж дээр хальж байв. */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(32px, 11vw, 65px);
  }
}

/* Технологийн бөмбөрцгийн эргэн тойрны цагираг нарийн дэлгэц
   дээр хүрээнээсээ гардаг байсан (.technology-panel нь
   overflow:hidden-тэй тул нүдэнд харагдахгүй ч байрлалын
   хувьд буруу). Жижиг дэлгэцэд багасгав. */
@media (max-width: 480px) {
  .orb-ring-3 {
    width: 120px;
    height: 250px;
  }

  .orb-ring-2 {
    width: 200px;
    height: 110px;
  }
}

/* =========================================================
   V. ХЭРЭГЖҮҮЛСЭН ТӨСЛҮҮД — COVERFLOW
   ---------------------------------------------------------
   Тор байрлалыг сольж, гурван хэмжээст "хуудас нээх" эргэлт
   болгов. Голын карт үзэгч рүү шууд харна; хажуугийнх нь
   rotateY-ээр хазайж, translateZ-ээр ухарна.

   Хэрхэн ажилладаг вэ:
     • JS карт бүр дээр data-off тавина — идэвхтэйгээс хэдэн
       алхмын зайд байгаа нь (0 = гол, -1 = зүүн, +1 = баруун).
     • CSS зөвхөн ТЭР ТООГ мэднэ. Аль индекс идэвхтэйг мэдэх
       шаардлагагүй тул төсөл нэмэхэд CSS засах хэрэггүй.
     • Хажуугийн карт дээр дарахад тэр нь гол болно.
========================================================= */

.flow {
  position: relative;
}

.flow-stage {
  position: relative;
  height: 620px;
  perspective: 1150px;
  perspective-origin: 50% 46%;

  /* Хажуугийн карт хүрээнээс цааш үргэлжлэх нь coverflow-ийн
     мөн чанар. Тэднийг ХҮРЭЭНДЭЭ таслаж, хуудсыг хэвтээ
     чиглэлд халихаас сэргийлнэ. */
  overflow: hidden;
}

.flow-track {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.flow-card {
  grid-area: 1 / 1;
  position: relative;
  width: min(640px, 68%);
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #0c0f15;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  will-change: transform, opacity;
  transition:
    transform 0.85s cubic-bezier(0.45, 0.05, 0.2, 1),
    opacity 0.85s ease,
    filter 0.85s ease,
    border-color 0.4s ease;
}

/* --- Байрлал бүрийн байдал --- */

/* Гол карт — шууд харна */
.flow-card[data-off="0"] {
  transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
  opacity: 1;
  filter: none;
  z-index: 5;
  border-color: rgba(89, 246, 255, 0.4);
}

/* Хажуугийн карт — дотогшоо хазайж ухарна */
.flow-card[data-off="-1"] {
  transform: translateX(-58%) translateZ(-300px) rotateY(34deg) scale(1);
  opacity: 0.7;
  filter: brightness(0.62);
  z-index: 4;
}

.flow-card[data-off="1"] {
  transform: translateX(58%) translateZ(-300px) rotateY(-34deg) scale(1);
  opacity: 0.7;
  filter: brightness(0.62);
  z-index: 4;
}

/* Гурав дахь эгнээ — 4-өөс дээш төсөл нэмэгдвэл ажиллана */
.flow-card[data-off="-2"] {
  transform: translateX(-98%) translateZ(-560px) rotateY(42deg) scale(1);
  opacity: 0.32;
  filter: brightness(0.45);
  z-index: 3;
}

.flow-card[data-off="2"] {
  transform: translateX(98%) translateZ(-560px) rotateY(-42deg) scale(1);
  opacity: 0.32;
  filter: brightness(0.45);
  z-index: 3;
}

/* Үүнээс цаашхи карт бүрэн нуугдана */
.flow-card:not([data-off="0"]):not([data-off="1"]):not([data-off="-1"]):not([data-off="2"]):not([data-off="-2"]) {
  transform: translateZ(-700px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.flow-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.flow-card[data-off="0"]:hover img {
  transform: scale(1.04);
}

/* Хажуугийн картын дэлгэрэнгүй бичиг илүүц. Оронд нь доод
   талд нь товч нэрийг data-title-аас шууд гаргана — ингэснээр
   шинэ төсөл нэмэхэд нэмэлт HTML бичих шаардлагагүй. */
.flow-card:not([data-off="0"]) .project-interface,
.flow-card:not([data-off="0"]) .project-text {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.flow-card::after {
  content: attr(data-title);
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 26px;
  z-index: 3;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: rgba(245, 247, 255, 0.92);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.flow-card:not([data-off="0"])::after {
  opacity: 1;
}

/* Хажуугийн картын зөвхөн ГАДНА тал нь харагддаг (дотоод талыг
   нь голын карт халхална). Тиймээс нэрийг гадагш нь түлхэв. */
.flow-card[data-off="-1"]::after,
.flow-card[data-off="-2"]::after {
  text-align: left;
  left: 8%;
  right: 46%;
}

.flow-card[data-off="1"]::after,
.flow-card[data-off="2"]::after {
  text-align: right;
  left: 46%;
  right: 8%;
}

/* Гол биш картын холбоос идэвхгүй — эхлээд голд нь авчирна */
.flow-card:not([data-off="0"]) .project-link {
  pointer-events: none;
}

/* --- Доорх удирдлагын мөр --- */
.flow-bar {
  margin: 34px auto 0;
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(9, 12, 18, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.flow-nav {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.flow-nav:hover {
  background: rgba(89, 246, 255, 0.12);
  border-color: rgba(89, 246, 255, 0.45);
  color: var(--cyan);
}

.flow-nav:active {
  transform: scale(0.93);
}

.flow-nav svg {
  width: 16px;
  height: 16px;
}

/* Зүүн сум — нэг л дүрсийг эргүүлж ашиглав */
#flowPrev svg {
  transform: rotate(180deg);
}

.flow-thumb {
  width: 46px;
  height: 46px;
  flex: none;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(89, 246, 255, 0.35);
  background: #0c0f15;
}

.flow-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow-label {
  min-width: 0;
  padding-right: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flow-label strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flow-label span {
  font-size: 11px;
  color: #7b8396;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Гарчиг солигдох үеийн зөөлөн шилжилт */
.flow-label strong,
.flow-label span,
.flow-thumb img {
  transition: opacity 0.3s ease;
}

.flow-bar.is-swapping .flow-label strong,
.flow-bar.is-swapping .flow-label span,
.flow-bar.is-swapping .flow-thumb img {
  opacity: 0;
}

/* --- Цэгүүд --- */
.flow-dots {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.flow-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 247, 255, 0.25);
  cursor: pointer;
  transition:
    width 0.35s ease,
    background 0.35s ease;
}

.flow-dot.is-active {
  width: 22px;
  background: var(--cyan);
}

.flow-dot:hover {
  background: rgba(245, 247, 255, 0.5);
}

.flow-dot.is-active:hover {
  background: var(--cyan);
}

/* --- Нарийн дэлгэц --- */
@media (max-width: 1024px) {
  .flow-stage {
    height: 500px;
    perspective: 1200px;
  }

  .flow-card {
    width: min(560px, 74%);
  }

  .flow-card[data-off="-1"] {
    transform: translateX(-56%) translateZ(-260px) rotateY(32deg) scale(1);
  }

  .flow-card[data-off="1"] {
    transform: translateX(56%) translateZ(-260px) rotateY(-32deg) scale(1);
  }
}

@media (max-width: 768px) {
  .flow-stage {
    height: 380px;
    perspective: 900px;
  }

  .flow-card {
    width: 78%;
    border-radius: 20px;
  }

  .flow-card[data-off="-1"] {
    transform: translateX(-52%) translateZ(-190px) rotateY(30deg) scale(1);
  }

  .flow-card[data-off="1"] {
    transform: translateX(52%) translateZ(-190px) rotateY(-30deg) scale(1);
  }

  .flow-card .project-text h3 {
    font-size: 18px;
  }

  .flow-bar {
    gap: 10px;
    padding: 8px 10px;
  }

  .flow-label strong {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  /* Жижиг картад урт гарчиг багтахгүй тул нэрийг доорх
     удирдлагын мөр дангаараа үүрнэ. Домэйн, сумны тэмдэг
     (холбоос гэдгийг илэрхийлнэ) үлдэнэ. */
  .flow-card .project-text {
    display: none;
  }

  .flow-card::after {
    font-size: 15px;
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .flow-stage {
    height: 290px;
  }

  .flow-card {
    width: 84%;
  }

  .flow-thumb {
    display: none;
  }

  .flow-label {
    max-width: 46vw;
  }
}

/* Хөдөлгөөн багасгасан үед эргэлт хийхгүй — зөвхөн идэвхтэй
   карт харагдана. */
@media (prefers-reduced-motion: reduce) {
  .flow-card {
    transition: opacity 0.2s ease;
  }

  .flow-card[data-off="0"] {
    transform: none;
  }

  .flow-card:not([data-off="0"]) {
    transform: none;
    opacity: 0;
    pointer-events: none;
  }
}

/* =========================================================
   W. ХҮРТЭЭМЖ — БИЧГИЙН КОНТРАСТ
   ---------------------------------------------------------
   Хэмжилтээр 15 гаруй бичгийн загвар WCAG AA (4.5:1) -д
   хүрэхгүй байсан. Хамгийн муу нь 2.77:1.

   ЗАСАХ ЗАРЧИМ:
     • Хамгийн ЖИЖИГ бичигт хамгийн ИХ контраст хэрэгтэй.
       Тиймээс өмнө нь хамгийн бүдэг байсан 8-9px микро-
       шошгуудыг #98a1b4 (7.5:1) болгов.
     • Дунд зэргийн туслах бичгийг #8e97ab (6.6:1) болгов.
     • 8px-ээс жижиг бичгийг бүгдийг 9.5px болгов — 8px нь
       ямар ч өнгөөр гар утсан дээр уншигдахад хэцүү.

   Дүр төрх бага зэрэг цайрсан ч гэрэлтэй өрөөнд уншигдана.
========================================================= */

/* Хөвөгч тэмдэглэгээ, доош гүйлгэх заавар — өмнө нь 2.77:1 */
.scroll-indicator,
.floating-tech span {
  color: #98a1b4;
}

/* Тикер — брэндийн ая барихын зэрэгцээ уншигдахуйц болгов */
.ticker-group {
  color: #98a1b4;
}

/* Хэсгийн дугаар ба нэр */
.section-title > span,
.bento-tag,
.perks-head,
.mock-note {
  color: #98a1b4;
}

/* =========================================================
   X. УТСАН ДЭЭР ХЭВТЭЭ ГҮЙЛГЭЛТ
   ---------------------------------------------------------
   АСУУДАЛ: утсан дээр хуудас 22,402px буюу ~26 дэлгэц болсон.
   Тооцоолуурын 27 карт, 15 нэмэлт, 7 үйлчилгээний карт бүгд
   БОСОО өрөгдөж уртсаж байв. Портфолио 11,000px-ийн гүнд
   үлдэж, ирсэн хүний ихэнх нь хүрэхгүй өнгөрдөг.

   ШИЙДЭЛ: 768px-ээс доош эдгээр жагсаалтыг ХЭВТЭЭ гүйлгэдэг
   зурвас болгов. Төслүүдийн coverflow-той нэг зарчим —
   хуруугаараа хажуу тийш гүйлгэж хардаг.

   ЯАГААД CSS-ЭЭР БОЛОХ ВЭ:
     • scroll-snap нь карт бүрийг ирмэг дээр нь "барина"
     • грид дотор grid-auto-flow: column болгоход л хангалттай —
       HTML огт засахгүй, JS нэмэхгүй
     • overscroll-behavior-inline: contain нь хэвтээ гүйлгэлт
       дуусахад хуудас өөрөө хажуу тийш явахаас сэргийлнэ

   ХҮРТЭЭМЖ: эдгээр нь жинхэнэ гүйлгэдэг элемент тул гар
   утасны дэлгэц уншигч, гар (Tab) хоёуланд ажиллана. Tab
   дарахад браузер өөрөө тухайн карт руу гүйлгэнэ.
========================================================= */

@media (max-width: 768px) {
  .scroll-row {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;

    /* ⚠️ ЭНЭ МӨР ЗААВАЛ ХЭРЭГТЭЙ. Грид/флексийн элемент нь
       анхнаасаа min-width: auto тул дотоод агуулгынхаа бүтэн
       өргөнөөр (6000px+) тэлж, хуудсыг хэвтээ чиглэлд халина.
       0 болгосноор тэлэхээ болиод жинхэнэ гүйлгэдэг болно. */
    min-width: 0;
  }

  /* Гүйлгэдэг зурвасыг агуулж яваа БҮХ эцэг мөн адил тэлэхээ
     болих ёстой. Эс тэгвэл эцэг нь 1288px болж, доторх зурвас
     нь "гүйлгэх" биш зүгээр л халина.
     :has() дэмжигдээгүй хуучин браузерт зориулж гол эцгүүдийг
     нэрээр нь мөн бичив. */
  .calc-form-box,
  .about-left,
  .about-right,
  .benefits,
  .metrics,
  .bento-card,
  .container *:has(.scroll-row) {
    min-width: 0;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;

    /* Ирмэг хүртэл гүйлгэж, эхлэлээ хүрээндээ барина */
    margin-inline: -16px;
    padding: 4px 16px 16px;
    scroll-padding-inline: 16px;

    /* Гүйлгэх зурвасыг нарийсгаж, брэндийн өнгөөр будав */
    scrollbar-width: thin;
    scrollbar-color: rgba(89, 246, 255, 0.35) transparent;
  }

  .scroll-row::-webkit-scrollbar {
    height: 4px;
  }

  .scroll-row::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
  }

  .scroll-row::-webkit-scrollbar-thumb {
    background: rgba(89, 246, 255, 0.4);
    border-radius: 99px;
  }

  .scroll-row > * {
    scroll-snap-align: start;
  }

  /* --- Хэмжээ: төрөл бүрт өөр --- */

  /* 27 төрлийн карт — ХОЁР эгнээгээр өрөгдөж хажуу тийш явна.
     Ингэснээр 27 карт 14 багана болж, босоо зай 6 дахин
     богиносоно. */
  .calc-type-grid.scroll-row {
    grid-auto-flow: column;
    /* Үндсэн дүрэм нь `grid-template-columns: repeat(3, 1fr)` өгдөг.
       Тэр нь үлдвэл ЭХНИЙ 3 БАГАНА 1fr болж нарийсаад (86px, 133px),
       үлдсэн нь 73% (261px) болж, картууд ЖИГД БУС өргөнтэй болно.
       Хэрэглэгч эхний хоёр картыг шахагдсан гэж хардаг. */
    grid-template-columns: none;
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: 73%;
    gap: 12px;
    align-items: stretch;
  }

  /* Үнийн хүрээ ("1,200,000 – 1,600,000₮") хоёр мөр болж
     хуваагдахгүйн тулд картын дотоод зай, бичгийн хэмжээг
     нарийсгав. */
  .calc-type-grid.scroll-row .calc-type-card {
    padding: 18px 14px;
  }

  .calc-type-grid.scroll-row .type-price {
    font-size: 11.5px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .calc-type-grid.scroll-row .calc-type-card strong {
    font-size: 14.5px;
  }

  /* 15 нэмэлт — мөн хоёр эгнээ */
  .calc-addons-list.scroll-row {
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: 78%;
    gap: 12px;
  }

  /* --- Үйлчилгээний 7 карт ---
     Босоо байхад 3,808px эзэлдэг байв — хуудасны хамгийн урт
     блок. Хэвтээ болгохын өмнө картын дотоод чимэглэлийг
     цэгцлэв: эс тэгвэл хамгийн өндөр карт (935px) эгнээний
     өндрийг тогтоож, богино картуудын доор хоосон зай үлдэнэ. */
  .bento-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: auto;
    grid-auto-columns: 88%;
    align-items: start;
    gap: 14px;

    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    min-width: 0;
    margin-inline: -16px;
    padding: 4px 16px 16px;
    scroll-padding-inline: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(89, 246, 255, 0.35) transparent;
  }

  .bento-grid::-webkit-scrollbar {
    height: 4px;
  }

  .bento-grid::-webkit-scrollbar-thumb {
    background: rgba(89, 246, 255, 0.4);
    border-radius: 99px;
  }

  .bento-grid > * {
    scroll-snap-align: start;
  }

  /* Хэвтээ горимд өргөн/бүтэн картууд эгнээ эзлэхээ болино */
  .bento-grid .bento-wide,
  .bento-grid .bento-full,
  .bento-grid .bento-wide.is-row {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  /* Эгнээний өндрийг ХАМГИЙН ӨНДӨР карт тогтоодог тул урт
     картуудыг богиносгов — эс тэгвэл богино картуудын доор
     300px+ хоосон зай үүснэ.
       • мокап дэлгэцүүд (694px → 438px)
       • VIP картын 4 багана хэвтээ гүйлгэлт биш 2×2 тор
         (гүйлгэдэг зурвас дотор дахин гүйлгэдэг зурвас
         байвал хуруу аль нь болохыг мэдэхгүй) */
  .bento-grid .mini-browser,
  .bento-grid .bento-visual {
    display: none;
  }

  .bento-grid .vip-pillars.scroll-row {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-columns: auto;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
    gap: 14px 12px;
  }

  /* Картууд өөрсдийн БОДИТ өндрөө хадгална. stretch хийвэл
     богино картын дунд 300px хоосон завсар үүсдэг байв. */
  .bento-grid {
    align-items: start;
  }

  /* Арчилгааны багц, эх кодын сонголт
     ⚠️ Өмнө нь энд `.code-options.scroll-row` гэж байсан нь буруу.
     `.code-options` дотор <h3> гарчиг БА `.code-grid` хоёулаа
     байдаг тул `grid-auto-flow: column` нь тэр хоёрыг зэрэгцээ
     багана болгож, гарчиг дэлгэцийг бүтэн эзэлдэг байв.
     Гүйлгэгдэх ёстой нь ГРИД өөрөө. */
  .care-grid.scroll-row,
  .code-grid.scroll-row {
    /* 980px-ийн дүрэм эдгээрт `grid-template-columns: 1fr` өгдөг.
       Тэр нь ҮЛДВЭЛ эхний багана 1fr болж нарийсаад, үлдсэн нь
       grid-auto-columns-оор 84% болж, картууд ӨӨР ӨӨР ӨРГӨНТЭЙ
       болно. Тиймээс энд заавал `none` болгож тэглэнэ. */
    grid-template-columns: none;
    grid-template-rows: auto;
    grid-auto-columns: 84%;
    gap: 14px;
  }

  /* Давуу талын нүднүүд, VIP багана */
  .benefits-grid.scroll-row,
  .vip-pillars.scroll-row,
  .metrics-grid.scroll-row {
    /* Дээрх тайлбарыг үзнэ үү — тэглэхгүй бол эхний 2-3 карт
       1fr болж нарийсаад, үлдсэн нь 68% болж жигд бус болно. */
    grid-template-columns: none;
    grid-template-rows: auto;
    grid-auto-columns: 68%;
    gap: 12px;
  }

  /* Гүйлгэх боломжтойг заасан бяцхан тэмдэглэгээ */
  .scroll-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    letter-spacing: 1.2px;
    color: #98a1b4;
  }

  .scroll-hint::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(89, 246, 255, 0.35), transparent);
  }

  .scroll-hint svg {
    width: 13px;
    height: 13px;
    color: var(--cyan);
    animation: hint-slide 2.4s ease-in-out infinite;
  }

  @keyframes hint-slide {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(5px);
    }
  }
}

/* 768px-ээс дээш заавар харагдахгүй — тэнд босоо тор хэвээр.

   ⚠️ ЗАСВАР. Өмнө нь энэ дүрэм ямар ч нөхцөлгүй (media-гүй)
   бичигдсэн бөгөөд дээрх @media (max-width: 768px) блокоос
   ДООР байрлаж байв. Тодорхойлолтын жин ижил (0,0,1,0) тул
   CSS-ийн дараалалаар СҮҮЛИЙНХ нь хожиж, «ХАЖУУ ТИЙШ ГҮЙЛГЭЖ
   ҮЗНЭ ҮҮ» гэсэн 3 тэмдэглэгээ УТСАН ДЭЭР Ч харагдахгүй,
   бүх өргөнд нуугдаж байлаа.
   Одоо min-width: 769px-ээр хязгаарлав. */
@media (min-width: 769px) {
  .scroll-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint svg {
    animation: none;
  }
}

/* =========================================================
   Y. ЗАСВАР — ХЭМЖЭЭГҮЙ ҮЛДСЭН ДҮРС
   ---------------------------------------------------------
   .bento-link доторх "+" тэмдэг хэмжээ заагаагүй тул SVG нь
   эцгийнхээ зайг бүхэлд нь эзэлж 270×270px болж байв (утсан
   дээр 238px). Дэлгэцэн дээр асар том шар загалмай харагдаж
   байсан. Дүрс бүхэн заавал хэмжээтэй байх ёстой.
========================================================= */

.bento-link svg {
  width: 14px;
  height: 14px;
  flex: none;
}

/* =========================================================
   Z. ЗААВРЫН ХУУДСУУД (SEO нийтлэл)
   ---------------------------------------------------------
   .legal-wrap-ийн бичвэрийн загварыг бүрэн өвлөнө — зөвхөн
   замчлал, оршил, төгсгөлийн уриалга нэмэв.
========================================================= */

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #98a1b4;
}

.crumbs a {
  color: #98a1b4;
  transition: color 0.2s ease;
}

.crumbs a:hover {
  color: var(--cyan);
}

.crumbs a[aria-current] {
  color: var(--white);
}

.legal-lead {
  margin: 0 0 18px;
  max-width: 720px;
  color: #c3c9d6;
  font-size: 17px;
  line-height: 1.75;
}

.article-cta {
  margin: 54px 0 42px;
  padding: 32px;
  border: 1px solid rgba(89, 246, 255, 0.28);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(89, 246, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
}

.article-cta h2 {
  margin-bottom: 12px;
}

.article-cta .towch {
  margin-top: 10px;
}

.article-more ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-more a {
  color: var(--cyan);
  font-size: 14.5px;
}

.article-more a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .article-cta {
    padding: 24px 20px;
  }
}

/* =========================================================
   ГУРАВДУГААР ХЭСЭГ · AA. ЗАХИАЛГЫН ТОВЧОО (форм БИШ)
   ---------------------------------------------------------
   Захиалгын формыг авч хаяад, оронд нь "сонголтоо хуулаад
   Messenger-т наах" бүтэц тавив. Тиймээс энд шинэ хэв маяг
   хэрэгтэй болов. Хуучин .order-brief-form-ын дүрмүүд одоо
   ашиглагдахгүй ч устгаагүй — хожим форм эргэж хэрэгтэй
   болвол бэлэн байна.
========================================================= */

.order-direct h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--white);
}

.order-direct > p {
  font-size: 12.5px;
  color: #98a1b4;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Хуулах товч — үндсэн үйлдэл тул бүтэн өргөн */
.order-copy-btn {
  width: 100%;
}

/* Хуулагдсаны дараа товч дээрх дүрс өөрчлөгдөхгүй — оронд нь
   доорх .order-feedback мессеж гарч ирж баталгаажуулна. */

/* Messenger + утас — хажуу хажуугаа, тэнцүү өргөнтэй */
.order-direct-links {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-direct-links .towch {
  min-height: 46px;
  padding: 0 12px;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-width: 0;                 /* урт дугаар багануудыг сунгахаас сэргийлнэ */
}

.order-direct-links .towch svg {
  width: 15px;
  height: 15px;
  flex: none;
}

/* Утасны дугаар багтахгүй бол багануудыг дээр доор нь болгоно */
@media (max-width: 420px) {
  .order-direct-links {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ГУРАВДУГААР ХЭСЭГ · BB. КИРИЛЛ Ү, Ө, Й-ИЙН ТАСРАЛТ
   ---------------------------------------------------------
   АСУУДАЛ
   Том гарчгуудад line-height 0.9–1.0 тавьсан байсан. Латин
   үсэгт энэ хангалттай — их үсгийн өндөр нь мөрийн өндрөөс
   бага. Харин КИРИЛЛ дээр:

     Ү Ө Й Ё  —  дээд талдаа нэмэлт зураас, цэг, нумтай
     Ц Щ Д    —  доод талдаа сүүлтэй

   Эдгээр нь мөрийн хайрцгаас ГАДАГШ гарна. Хайрцаг нь өөрөө
   тайрдаггүй ч, overflow:hidden-тэй өвөг элемент дотор орвол
   эсвэл Safari дээр background-clip:text хэрэглэсэн үед
   үсгийн дээд, доод хэсэг ТАСАРНА.

   ШИЙДЭЛ
   line-height-ийг 1.02–1.05 болгож бага зэрэг сулруулав.
   Харагдах байдал бараг өөрчлөгдөхгүй (98px дээр 5px зөрүү)
   ч Ү, Ө бүрэн багтана.

   Chromium дээр тасралт ажиглагдаагүй ч Safari/iOS-ийн
   background-clip:text нь мөрийн хайрцгаар тайрдаг тул
   урьдчилан сэргийлэв.
========================================================= */

.hero h1 {
  line-height: 1.02;
}

.technology-heading h2 {
  line-height: 1;
}

/* Градиент ба контур бүхий текст — Safari дээр мөрийн хайрцгаар
   тайрагддаг тул дээр, доор нь бага зэрэг зай өгнө. Хайрцгийн
   өндөр өөрчлөгдөхгүйн тулд margin-аар нөхнө. */
.hero-gradient-text,
.outline-text,
.technology-heading strong {
  padding-block: 0.06em;
  margin-block: -0.06em;
}

.phone-stat strong,
.bento-card h3 {
  line-height: 1.08;
}

@media (max-width: 768px) {
  .hero h1 {
    line-height: 1.02;
  }
}
