/* nmatic.uz — one stylesheet. Colours and sizes come from the tokens below; the brand colours are the product's
   (frontend/src/styles.css): primary #1b4f9c, display gold #f6b73c, teal #5fd4c8, display navy #0a1a2f. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/assets/fonts/inter-latin.3100e775e8.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/assets/fonts/inter-cyrillic.71d5ee93cc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/fonts/unbounded-num.18fb6b6ae8.woff2) format('woff2');
  unicode-range: U+002D, U+0030-0039, U+0041-005A;
}

:root {
  --text: #1d1d1f;
  --text-2: #6e6e73;
  --text-3: #86868b;
  --bg: #ffffff;
  --bg-2: #f5f5f7;
  --line: #d2d2d7;
  --line-2: #e8e8ed;
  --brand: #1b4f9c;
  --brand-press: #143c78;
  --brand-2: #1d5fc4;
  --brand-tint: #e9f0fb;
  --teal: #5fd4c8;
  --teal-2: #0b7a75;
  --gold: #f6b73c;
  --navy: #0a1a2f;
  --navy-2: #12294a;
  --ink: #000000;
  --dark-text: #f5f5f7;
  --dark-text-2: #a1a1a6;
  --danger: #d70015;
  --ok: #1b7a3a;

  --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-num: 'Unbounded', var(--font);
  --gutter: 22px;
  --max: 1120px;
  --r-s: 12px;
  --r-m: 18px;
  --r-l: 24px;
  --r-xl: 30px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow-dev: 0 50px 80px -40px rgba(0, 0, 0, 0.45), 0 26px 44px -30px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 1px 1px rgba(0, 0, 0, 0.03), 0 10px 30px -18px rgba(0, 0, 0, 0.25);
  --nav-h: 52px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.47 var(--font);
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--brand-2); }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.028em; line-height: 1.1; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; }
:focus-visible { outline: 3px solid rgba(29, 95, 196, 0.55); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--text); color: #fff; padding: 10px 16px; border-radius: 10px; text-decoration: none; }
.skip:focus { top: 12px; }
.i { flex: none; }
.i.flip { transform: scaleX(-1); }

/* ---- type ---- */
.eyebrow { font-size: clamp(17px, 1.5vw, 19px); font-weight: 600; letter-spacing: -0.01em; color: var(--brand-2); margin-bottom: 10px; }
.h2 { font-size: clamp(34px, 5vw, 60px); line-height: 1.06; letter-spacing: -0.038em; }
.h3 { font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.03em; }
.sec { padding-block: clamp(88px, 11vw, 150px); }
.sec__head { max-width: 780px; }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__lead { margin-top: 18px; font-size: clamp(18px, 1.6vw, 21px); line-height: 1.45; color: var(--text-2); letter-spacing: -0.015em; }

/* ---- buttons ---- */
.btn {
  --h: 44px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--h); padding: 0 22px; border: 0; border-radius: 980px;
  font: 600 17px/1 var(--font); letter-spacing: -0.01em; text-decoration: none; cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-press); }
.btn--primary:active { transform: scale(0.98); }
.btn--link { color: var(--brand-2); padding-inline: 4px; }
.btn--link:hover span { text-decoration: underline; text-underline-offset: 3px; }
.btn--lg { --h: 52px; padding: 0 28px; }
.btn--sm { --h: 30px; padding: 0 14px; font-size: 13px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* ---- checks ---- */
.checks { display: grid; gap: 12px; margin-top: 28px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks .i { width: 24px; height: 24px; padding: 4px; margin-top: 1px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); }

/* ---- navigation ---- */
.gnav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}
.gnav.is-scrolled { border-bottom-color: rgba(0, 0, 0, 0.08); }
.gnav__in { display: flex; align-items: center; gap: 20px; height: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--text); text-decoration: none; font-weight: 700; font-size: 19px; letter-spacing: -0.03em; }
.brand .logo { width: 28px; height: 28px; }
.gnav__menu { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.gnav__links { display: flex; gap: 20px; }
.gnav__links a { color: var(--text); opacity: 0.8; text-decoration: none; font-size: 13px; letter-spacing: -0.005em; transition: opacity 0.2s; }
.gnav__links a:hover { opacity: 1; }
.langs { display: inline-flex; gap: 2px; padding: 2px; border-radius: 99px; background: rgba(0, 0, 0, 0.05); }
.langs a { padding: 3px 9px; border-radius: 99px; font-size: 12px; font-weight: 600; color: var(--text-2); text-decoration: none; letter-spacing: 0.02em; }
.langs a:hover { color: var(--text); }
.langs a[aria-current] { background: #fff; color: var(--text); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12); }
.gnav__toggle { display: none; width: 44px; height: 44px; margin-right: -10px; border: 0; background: none; color: var(--text); cursor: pointer; }
.burger { position: relative; display: block; width: 18px; height: 12px; margin: auto; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.6px; border-radius: 2px; background: currentColor; transition: transform 0.3s var(--ease), top 0.3s var(--ease); }
.burger span:first-child { top: 2px; }
.burger span:last-child { top: 9px; }
.gnav.is-open .burger span:first-child { top: 5.5px; transform: rotate(45deg); }
.gnav.is-open .burger span:last-child { top: 5.5px; transform: rotate(-45deg); }

@media (max-width: 1099px) {
  .gnav__toggle { display: block; }
  .gnav__cta { margin-left: auto; }
  .gnav__menu {
    position: fixed; inset: var(--nav-h) 0 0; z-index: 49; margin: 0;
    display: flex; flex-direction: column; align-items: stretch; gap: 28px;
    padding: 24px var(--gutter) 40px; overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s var(--ease), visibility 0s 0.25s;
  }
  .gnav.is-open .gnav__menu { opacity: 1; visibility: visible; transform: none; transition: opacity 0.25s, transform 0.25s var(--ease); }
  .gnav__links { flex-direction: column; gap: 0; }
  .gnav__links a { display: block; padding: 12px 0; font-size: 26px; font-weight: 600; letter-spacing: -0.02em; opacity: 1; border-bottom: 1px solid var(--line-2); }
  .gnav__menu .langs { align-self: flex-start; }
  .gnav__menu .langs a { font-size: 15px; padding: 8px 16px; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 380px) { .gnav__cta { padding: 0 11px; } }

/* ---- hero ---- */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(56px, 8vw, 104px);
  background:
    radial-gradient(900px 480px at 50% 100%, rgba(27, 79, 156, 0.12), transparent 70%),
    radial-gradient(600px 300px at 85% 10%, rgba(246, 183, 60, 0.1), transparent 70%),
    linear-gradient(#fff, #f7f8fb);
}
.hero__text { text-align: center; }
.hero__title { font-size: clamp(46px, 8.4vw, 104px); line-height: 1.02; letter-spacing: -0.048em; }
.hero__title span { display: inline-block; }
.grad { background: linear-gradient(100deg, var(--brand) 10%, #2f7fd6 50%, var(--teal-2) 95%); -webkit-background-clip: text; background-clip: text; color: transparent; padding-bottom: 0.06em; }
.hero__lead { max-width: 760px; margin: 24px auto 0; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.45; color: var(--text-2); letter-spacing: -0.015em; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; margin-top: 34px; }
.hero__points { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 28px; font-size: 15px; color: var(--text-2); }
.hero__points li { display: flex; align-items: center; gap: 8px; }
.hero__points .i { width: 18px; height: 18px; padding: 2px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); }

.stage { position: relative; max-width: 1180px; margin: clamp(52px, 7vw, 88px) auto 0; padding: 0 var(--gutter) clamp(40px, 6vw, 72px); }
/* The kiosk and the phone flank the TV and only touch its edges: the called number must stay visible. */
.stage__tv { width: min(880px, calc(100% - 320px)); margin-inline: auto; }
.stage__kiosk { position: absolute; left: var(--gutter); bottom: clamp(20px, 3vw, 40px); width: clamp(96px, 12vw, 168px); }
.stage__phone { position: absolute; right: calc(var(--gutter) + 8px); bottom: clamp(26px, 3.4vw, 48px); width: clamp(88px, 11vw, 156px); }
@media (max-width: 1067px) {
  .stage { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 18px; align-items: end; }
  .stage__tv { grid-column: 1 / -1; width: 100%; }
  .stage__kiosk, .stage__phone { position: static; width: 72%; justify-self: center; }
}

/* entrance */
@media (prefers-reduced-motion: no-preference) {
  .hero__text > * { animation: rise 0.9s var(--ease) both; }
  .hero__text > :nth-child(2) { animation-delay: 0.06s; }
  .hero__text > :nth-child(3) { animation-delay: 0.12s; }
  .hero__text > :nth-child(4) { animation-delay: 0.18s; }
  .hero__text > :nth-child(5) { animation-delay: 0.24s; }
  .stage__tv { animation: rise 1.1s 0.2s var(--ease) both; }
  .stage__kiosk { animation: rise-side 1.1s 0.45s var(--ease) both; }
  .stage__phone { animation: rise-side 1.1s 0.55s var(--ease) both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes rise-side { from { opacity: 0; transform: translateY(48px) scale(0.96); } to { opacity: 1; transform: none; } }

/* scroll reveal: site.js marks only what is still below the fold */
.reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-pending { opacity: 0; transform: translateY(28px); }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.is-pending { opacity: 1; transform: none; transition: none; } }

/* ---- device frames ---- */
.dev img { width: 100%; }
.tv__bezel {
  position: relative; padding: clamp(5px, 0.9%, 11px); border-radius: clamp(10px, 1.6%, 18px);
  background: linear-gradient(160deg, #3a3b3f, #121214 40%, #0b0b0c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), var(--shadow-dev);
}
.tv__bezel img { border-radius: clamp(4px, 0.8%, 8px); }
.tv__stand { width: 30%; height: clamp(8px, 1.4%, 16px); margin: 0 auto; background: linear-gradient(#d7d9de, #a8abb2); clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%); border-radius: 0 0 6px 6px; }
.tv--dark .tv__stand { background: linear-gradient(#3a3b40, #1c1d20); }

.kiosk__body {
  position: relative; padding: 9% 8% 0; border-radius: 16% 16% 7% 7% / 9% 9% 4% 4%;
  background: linear-gradient(120deg, #fbfbfd 0%, #e6e7eb 55%, #cfd1d7 100%);
  box-shadow: inset 0 1px 0 #fff, inset 0 0 0 1px rgba(0, 0, 0, 0.06), var(--shadow-dev);
}
.kiosk__screen { padding: 3.5%; border-radius: 9% / 5%; background: #0b0b0c; }
.kiosk__screen img { border-radius: 6% / 3.4%; }
.kiosk__printer { display: grid; justify-items: center; padding: 11% 0 16%; }
.kiosk__slot { width: 46%; height: 5px; border-radius: 99px; background: #1b1b1d; box-shadow: 0 1px 0 #fff; }
.kiosk__paper { width: 30%; height: 18px; margin-top: -2px; border-radius: 0 0 3px 3px; background: linear-gradient(#fff, #f2f2f4); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12); }
.kiosk__foot { width: 58%; height: 9px; margin: 0 auto; border-radius: 0 0 10px 10px; background: linear-gradient(#bfc2c8, #9ea1a8); }

.phone { container-type: inline-size; }
.phone__frame {
  position: relative; padding: 3.4%; border-radius: 15% / 7%;
  background: linear-gradient(150deg, #3b3c40, #0f0f10 35%, #1a1a1c);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.1), var(--shadow-dev);
}
.phone__screen { aspect-ratio: 390 / 844; overflow: hidden; border-radius: 12% / 5.6%; background: #f4f6f9; }
.phone__bar { display: flex; justify-content: space-between; align-items: center; padding: 7.6% 11% 2.6% 13%; font-size: 4.4cqi; font-weight: 600; line-height: 1; color: #14213d; letter-spacing: 0; }
.phone__bar svg { width: 12cqi; height: auto; }
.phone__frame::after { content: ''; position: absolute; top: 5%; left: 50%; width: 28%; height: 3.2%; transform: translateX(-50%); border-radius: 99px; background: #000; }

.laptop { padding-inline: 5%; }
.laptop__lid { padding: 2.3% 2.3% 3.2%; border-radius: 3.2% / 5%; background: #0e0e10; box-shadow: inset 0 0 0 1px #2c2c2f, var(--shadow-dev); }
.laptop__lid img { border-radius: 4px; }
.laptop__base { position: relative; height: clamp(9px, 1.5vw, 17px); margin: 0 -5.5%; border-radius: 0 0 50% 50% / 0 0 100% 100%; background: linear-gradient(#e4e5e9, #b4b7bd); }
.laptop__base::before { content: ''; position: absolute; top: 0; left: 50%; width: 15%; height: 45%; transform: translateX(-50%); border-radius: 0 0 10px 10px; background: #a3a6ad; }

.tablet__frame { padding: 2.4%; border-radius: 5% / 8%; background: linear-gradient(150deg, #36373b, #0f0f10 40%); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), var(--shadow-dev); }
.tablet__frame img { border-radius: 2.4% / 3.8%; }

/* ---- facts ---- */
.facts { padding-top: clamp(40px, 6vw, 72px); }
.facts__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 24px; padding-top: 40px; border-top: 1px solid var(--line-2); }
.facts strong {
  display: block; font-size: clamp(38px, 4.6vw, 60px); font-weight: 700; line-height: 1; letter-spacing: -0.045em; white-space: nowrap;
  background: linear-gradient(120deg, var(--brand), #2f7fd6 60%, var(--teal-2)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.facts span { display: block; max-width: 18em; margin-top: 12px; font-size: 15px; line-height: 1.4; color: var(--text-2); }
@media (max-width: 733px) { .facts__list { grid-template-columns: 1fr 1fr; } }

/* ---- how ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.step { position: relative; padding: 28px 26px 32px; border-radius: var(--r-l); background: var(--bg-2); }
.step__n { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--text-3); }
.step .i { margin: 26px 0 18px; color: var(--brand); }
.step h3 { font-size: 21px; letter-spacing: -0.022em; }
.step p { margin-top: 10px; font-size: 16px; line-height: 1.5; color: var(--text-2); }
@media (max-width: 1023px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .steps { grid-template-columns: 1fr; } }

/* ---- product modules ---- */
.mod { padding-block: clamp(88px, 10vw, 140px); overflow: hidden; }
.mod--gray { background: var(--bg-2); }
.mod__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); align-items: center; gap: clamp(40px, 6vw, 96px); }
.mod__in--flip .mod__text { order: 2; }
.mod__p { max-width: 34em; margin-top: 20px; font-size: clamp(17px, 1.45vw, 19px); line-height: 1.5; color: var(--text-2); }
.mod__head { display: grid; grid-template-columns: 1fr 1fr; gap: 24px clamp(40px, 6vw, 96px); align-items: end; }
.mod__head .mod__p { margin-top: 0; }
.mod__visual--wide { max-width: 1000px; margin: clamp(52px, 6vw, 80px) auto 0; }
@media (max-width: 899px) { .mod__head { grid-template-columns: 1fr; } .mod__head .mod__p { margin-top: 4px; } }
.visual-kiosk { width: min(340px, 72%); margin-inline: auto; }
.visual-phone { position: relative; display: grid; justify-items: center; }
.visual-phone .phone { width: min(280px, 58%); margin-right: 22%; }
.visual-stats { position: relative; }
.chat { position: absolute; right: 0; bottom: 16%; display: grid; gap: 14px; width: min(310px, 56%); }
.chat__msg {
  padding: 12px 15px 14px; border-radius: 18px; font-size: 14px; line-height: 1.42;
  background: rgba(255, 255, 255, 0.86); -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 18px 40px -18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.chat__msg:nth-child(2) { margin-left: 12%; }
.chat__from { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; font-size: 13px; font-weight: 600; color: var(--brand-2); }
.chat__from .i { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--brand-2); color: #fff; }
.chat__from time { margin-left: auto; font-size: 12px; font-weight: 400; color: var(--text-3); }
.chip-float {
  position: absolute; right: 2%; bottom: 14%; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 99px; font-size: 14px; font-weight: 600; color: #0f5d34;
  background: rgba(255, 255, 255, 0.9); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05);
}
@media (max-width: 899px) {
  .mod__in { grid-template-columns: 1fr; }
  .mod__in--flip .mod__text { order: 0; }
  .visual-phone .phone { width: min(260px, 64%); margin-right: 0; }
  .chat { position: static; width: min(420px, 100%); margin-top: -12%; }
  .chat__msg:nth-child(2) { margin-left: 8%; }
}

/* dark display module */
.mod--dark {
  color: var(--dark-text);
  background:
    radial-gradient(900px 500px at 50% 62%, rgba(18, 41, 74, 0.95), transparent 70%),
    radial-gradient(600px 300px at 50% 100%, rgba(246, 183, 60, 0.08), transparent 70%),
    #000;
}
.mod--dark .eyebrow { color: var(--gold); }
.mod--dark .mod__p { color: var(--dark-text-2); margin-inline: auto; }
.mod__text--center { max-width: 840px; margin-inline: auto; text-align: center; }
.mod--display .mod__visual { max-width: 1040px; margin: clamp(48px, 6vw, 72px) auto 0; }
.voice { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; margin-top: 44px; }
.voice__btn {
  display: inline-flex; align-items: center; gap: 10px; height: 50px; padding: 0 22px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 99px; background: rgba(255, 255, 255, 0.08); color: #fff;
  font-weight: 600; font-size: 16px; cursor: pointer; transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.voice__btn:hover { background: rgba(255, 255, 255, 0.14); }
.voice__btn[aria-pressed='true'] { background: var(--gold); border-color: var(--gold); color: #231600; }
.voice__btn--ghost { background: transparent; }
.eq { display: none; align-items: flex-end; gap: 2px; height: 14px; }
.eq i { width: 3px; height: 100%; border-radius: 2px; background: currentColor; transform-origin: bottom; animation: eq 0.9s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: -0.3s; }
.eq i:nth-child(3) { animation-delay: -0.6s; }
.voice__btn[aria-pressed='true'] .eq { display: inline-flex; }
@keyframes eq { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }
.voice__quote { flex-basis: 100%; margin-top: 14px; text-align: center; font-size: clamp(17px, 1.7vw, 22px); font-weight: 500; letter-spacing: -0.015em; color: #e8e8ed; }
.points-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: 1040px; margin: clamp(56px, 7vw, 88px) auto 0; padding-top: 36px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.points-row li { display: grid; gap: 12px; font-size: 15px; line-height: 1.45; color: #d2d2d7; }
.points-row .i { color: var(--gold); }
@media (max-width: 899px) { .points-row { grid-template-columns: 1fr 1fr; } }

/* ---- bento ---- */
.more { background: var(--bg-2); }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.tile { padding: 28px 26px 30px; border-radius: var(--r-l); background: #fff; box-shadow: var(--shadow-card); }
.tile .i { color: var(--brand); }
.tile h3 { margin-top: 22px; font-size: 19px; letter-spacing: -0.02em; }
.tile p { margin-top: 8px; font-size: 15px; line-height: 1.5; color: var(--text-2); }
.tile--branches, .tile--priority, .tile--security, .tile--updates { grid-column: span 2; }
.tile--branches { background: linear-gradient(135deg, #1b4f9c, #2869c7); color: #fff; }
.tile--branches .i, .tile--branches p { color: rgba(255, 255, 255, 0.86); }
.tile--priority { background: linear-gradient(135deg, #0a1a2f, #173a6b); color: #fff; }
.tile--priority .i { color: var(--gold); }
.tile--priority p { color: #b8c4d6; }
.tile--branches h3, .tile--priority h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.03em; }
.tile--branches p, .tile--priority p { font-size: 16px; max-width: 34em; }
@media (max-width: 1023px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .bento { grid-template-columns: 1fr; } .bento .tile { grid-column: auto; } }

/* ---- clinics ---- */
.clinic {
  color: var(--dark-text);
  background:
    radial-gradient(1100px 600px at 50% -5%, rgba(40, 90, 160, 0.55), transparent 65%),
    linear-gradient(180deg, #0a1a2f 0%, #07111f 100%);
}
.clinic .eyebrow { color: var(--teal); }
.clinic .sec__lead { color: #a9b6c9; }
.clinic__stage { display: grid; grid-template-columns: 1fr 2.6fr 1fr; align-items: end; gap: clamp(16px, 3vw, 40px); max-width: 1080px; margin: clamp(52px, 7vw, 84px) auto 0; }
.clinic__kiosk, .clinic__phone { width: 100%; }
.clinic__phone { padding-bottom: 4%; }
.ccards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(56px, 7vw, 88px); }
.ccard { padding: 26px 24px 28px; border-radius: var(--r-l); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09); }
.ccard .i { color: var(--teal); }
.ccard h3 { margin-top: 20px; font-size: 18px; letter-spacing: -0.02em; }
.ccard p { margin-top: 8px; font-size: 15px; line-height: 1.5; color: #a9b6c9; }
.clinic__pair { display: grid; grid-template-columns: 1.15fr 1fr; align-items: end; gap: clamp(24px, 4vw, 56px); margin-top: clamp(56px, 7vw, 88px); }
@media (max-width: 1023px) { .ccards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 733px) {
  .clinic__stage { grid-template-columns: 1fr 1fr; }
  .clinic__tablet { grid-column: 1 / -1; order: -1; }
  .clinic__kiosk, .clinic__phone { width: 74%; justify-self: center; }
  .clinic__pair { grid-template-columns: 1fr; }
}
@media (max-width: 599px) { .ccards { grid-template-columns: 1fr; } }

/* ---- sectors ---- */
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.sector { padding: 26px 24px 28px; border-radius: var(--r-l); background: var(--bg-2); transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease); }
.sector:hover { background: #fff; box-shadow: 0 22px 44px -26px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--line-2); transform: translateY(-3px); }
.sector .i { color: var(--brand); }
.sector h3 { margin-top: 20px; font-size: 18px; letter-spacing: -0.02em; }
.sector p { margin-top: 8px; font-size: 15px; line-height: 1.5; color: var(--text-2); }
.sectors__note { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 12px; margin-top: 40px; text-align: center; color: var(--text-2); }
@media (max-width: 1023px) { .sector-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 733px) { .sector-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 479px) { .sector-grid { grid-template-columns: 1fr; } }

/* ---- benefits ---- */
.benefits { background: var(--bg-2); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 32px; margin-top: 56px; }
.benefit { padding-top: 22px; border-top: 1px solid var(--line); }
.benefit__n { font-size: 14px; font-weight: 700; color: var(--brand-2); letter-spacing: 0.02em; }
.benefit h3 { margin-top: 12px; font-size: 21px; letter-spacing: -0.022em; }
.benefit p { margin-top: 8px; font-size: 16px; line-height: 1.5; color: var(--text-2); }
.local {
  position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
  margin-top: clamp(64px, 8vw, 96px); padding: clamp(32px, 5vw, 64px); border-radius: var(--r-xl); overflow: hidden;
  color: #fff; background: radial-gradient(600px 300px at 90% 20%, rgba(95, 212, 200, 0.18), transparent 70%), linear-gradient(135deg, #0a1a2f, #143260);
}
.local h3 { font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -0.035em; }
.local p { max-width: 40em; margin-top: 14px; font-size: clamp(17px, 1.5vw, 19px); line-height: 1.5; color: #b8c4d6; }
.local__art { display: grid; grid-template-columns: auto auto; gap: 14px; align-items: center; font-family: var(--font-num); font-weight: 600; }
.local__art span:first-child { font-size: clamp(44px, 6vw, 84px); color: var(--gold); letter-spacing: 0.01em; }
.local__art span:last-child { display: grid; place-items: center; min-width: 1.6em; padding: 8px 14px; border-radius: 16px; font-size: clamp(34px, 4.5vw, 60px); background: rgba(255, 255, 255, 0.08); }
@media (max-width: 1023px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 733px) { .local { grid-template-columns: 1fr; } .local__art { justify-self: start; } }
@media (max-width: 479px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ---- turnkey ---- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.tl { position: relative; padding: 28px 26px 30px; border-radius: var(--r-l); border: 1px solid var(--line-2); background: #fff; }
.tl__n { position: absolute; top: 24px; right: 24px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; font-size: 14px; font-weight: 700; color: var(--brand); background: var(--brand-tint); }
.tl .i { color: var(--brand); }
.tl h3 { margin-top: 20px; font-size: 19px; letter-spacing: -0.02em; }
.tl p { margin-top: 8px; font-size: 15px; line-height: 1.5; color: var(--text-2); }
.company { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; margin-top: 24px; padding: clamp(28px, 5vw, 56px); border-radius: var(--r-xl); background: var(--bg-2); }
.company__text p:not(.eyebrow) { margin-top: 14px; color: var(--text-2); }
.company__text .btn { margin-top: 18px; margin-left: -4px; }
.company__pts { display: grid; gap: 16px; }
.company__pts li { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.company__pts .i { color: var(--brand); }
@media (max-width: 1023px) { .timeline { grid-template-columns: 1fr 1fr; } .company { grid-template-columns: 1fr; } }
@media (max-width: 599px) { .timeline { grid-template-columns: 1fr; } }

/* ---- specs ---- */
.specs { background: var(--bg-2); }
.spec-list { margin-top: 48px; }
.spec { display: grid; grid-template-columns: minmax(180px, 280px) 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); }
.spec:last-child { border-bottom: 1px solid var(--line); }
.spec dt { font-weight: 600; }
.spec dd { margin: 0; color: var(--text-2); }
@media (max-width: 733px) { .spec { grid-template-columns: 1fr; gap: 6px; } }

/* ---- pricing ---- */
.pricing__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.pricing__pay { display: flex; gap: 12px; align-items: flex-start; margin: 26px 0 30px; color: var(--text-2); }
.pricing__pay .i { margin-top: 1px; color: var(--brand); }
.pricing__card { padding: clamp(28px, 4vw, 48px); border-radius: var(--r-xl); background: linear-gradient(160deg, #fff, var(--bg-2)); box-shadow: 0 0 0 1px var(--line-2), 0 40px 70px -50px rgba(0, 0, 0, 0.4); }
.pricing__card h3 { font-size: 19px; letter-spacing: -0.02em; }
.pricing__card .checks { margin: 18px 0 34px; }
.dots { display: grid; gap: 10px; margin-top: 16px; color: var(--text-2); }
.dots li { position: relative; padding-left: 20px; }
.dots li::before { content: ''; position: absolute; left: 4px; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@media (max-width: 899px) { .pricing__in { grid-template-columns: 1fr; } }

/* ---- faq ---- */
.faq__list { max-width: 860px; margin: 48px auto 0; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; list-style: none; cursor: pointer; font-size: clamp(18px, 1.6vw, 21px); font-weight: 600; letter-spacing: -0.018em; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .i { color: var(--text-3); transition: transform 0.35s var(--ease); }
.qa[open] summary .i { transform: rotate(180deg); }
.qa p { max-width: 44em; padding-bottom: 26px; color: var(--text-2); }

/* ---- request ---- */
.request { background: var(--bg-2); }
.request__in { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 88px); align-items: start; }
.contacts { display: grid; gap: 10px; margin-top: 40px; }
.contacts h3 { margin-bottom: 6px; font-size: 17px; letter-spacing: -0.015em; }
.contact { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--r-m); background: #fff; color: var(--text); text-decoration: none; box-shadow: 0 0 0 1px var(--line-2); transition: box-shadow 0.2s, transform 0.2s var(--ease); }
.contact:hover { box-shadow: 0 0 0 1px var(--line), 0 14px 30px -18px rgba(0, 0, 0, 0.3); transform: translateY(-1px); }
.contact .i { width: 42px; height: 42px; padding: 10px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); }
.contact small { display: block; font-size: 13px; color: var(--text-2); }
.contact strong { display: block; font-weight: 600; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; padding: clamp(24px, 4vw, 44px); border-radius: var(--r-xl); background: #fff; box-shadow: 0 0 0 1px var(--line-2), 0 50px 90px -60px rgba(0, 0, 0, 0.45); }
.field { display: grid; gap: 8px; align-content: start; min-width: 0; margin: 0; padding: 0; border: 0; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { padding: 0; font-size: 14px; font-weight: 600; }
.opt { font-weight: 400; color: var(--text-3); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-s); background: #fff; color: var(--text);
  font: 17px/1.35 var(--font); letter-spacing: -0.01em; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 104px; }
.field select { padding-right: 40px; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%236e6e73' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field input::placeholder, .field textarea::placeholder { color: #a1a1a6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-2); box-shadow: 0 0 0 4px rgba(29, 95, 196, 0.16); }
.field.is-invalid input { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(215, 0, 21, 0.1); }
.field__err { min-height: 0; font-size: 13px; color: var(--danger); }
.field__err:empty { display: none; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips legend { width: 100%; margin-bottom: 8px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chip span { display: inline-flex; align-items: center; height: 42px; padding: 0 18px; border: 1px solid var(--line); border-radius: 99px; font-size: 15px; font-weight: 500; transition: background-color 0.2s, border-color 0.2s, color 0.2s; }
.chip input:checked + span { background: var(--brand); border-color: var(--brand); color: #fff; }
.chip input:focus-visible + span { outline: 3px solid rgba(29, 95, 196, 0.55); outline-offset: 2px; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form { position: relative; }
.form [hidden] { display: none !important; }
.form__actions { display: grid; gap: 14px; margin-top: 4px; }
.form__consent { font-size: 13px; line-height: 1.45; color: var(--text-2); }
.form__note { font-size: 14px; color: var(--text-2); }
.form__status:empty { display: none; }
.form__status { padding: 16px 18px; border-radius: var(--r-m); font-size: 15px; line-height: 1.5; }
.form__status.is-error { background: #fff1f2; color: #8a0010; }
.form__status.is-error a { color: inherit; font-weight: 600; }
.form__done { grid-column: 1 / -1; display: grid; justify-items: center; gap: 12px; padding: 28px 8px; text-align: center; }
.form__done .i { width: 64px; height: 64px; padding: 16px; border-radius: 50%; color: #fff; background: var(--ok); }
.form__done h3 { font-size: 26px; letter-spacing: -0.03em; }
.form__done p { color: var(--text-2); }
@media (max-width: 899px) { .request__in { grid-template-columns: 1fr; } }
@media (max-width: 599px) { .form { grid-template-columns: 1fr; } }

/* ---- footer ---- */
.foot { padding: 56px 0 36px; background: var(--bg-2); border-top: 1px solid var(--line-2); font-size: 13px; color: var(--text-2); }
.foot__in { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 32px; }
.foot__brand p { max-width: 30em; margin-top: 14px; }
.foot h2 { margin-bottom: 12px; font-size: 13px; font-weight: 600; letter-spacing: -0.005em; color: var(--text); }
.foot ul { display: grid; gap: 8px; }
.foot a { color: var(--text-2); text-decoration: none; }
.foot a:hover { color: var(--text); text-decoration: underline; }
.foot__legal { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 32px; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; }
.foot__links { display: flex; align-items: center; gap: 16px; }
.foot .langs a { color: var(--text-2); }
.foot .langs a[aria-current] { color: var(--text); }
@media (max-width: 733px) { .foot__in { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }

/* ---- documents (privacy, 404) ---- */
.doc { max-width: 800px; padding-block: clamp(56px, 8vw, 110px); }
.doc h2:not(.h2) { margin-top: 36px; font-size: 22px; letter-spacing: -0.02em; }
.doc p { margin-top: 12px; color: var(--text-2); }
.doc__date { font-size: 15px; }
.doc .btn { margin-top: 28px; margin-left: -4px; }
.doc--center { text-align: center; }
.doc--center > div + div { margin-top: 28px; }
.nf__code { font-family: var(--font-num); font-weight: 600; font-size: clamp(72px, 14vw, 160px); line-height: 1; color: var(--gold); }

@media print {
  .gnav, .stage, .mod__visual, .voice, .form, .foot { display: none; }
  .reveal.is-pending { opacity: 1; transform: none; }
}
