:root{
	--paper:#F6F4EE;
	--paper-dim:#ECE8DE;
	--card:#FFFFFF;
	--ink:#1B1A17;
	--ink-soft:#5A5548;
	--teal:#1F7A5C;
	--teal-deep:#123F2E;
	--teal-tint:#E3EFE9;
	--amber:#D9752E;
	--amber-tint:#F7E7DA;
	--line:rgba(27,26,23,0.14);
	--line-soft:rgba(27,26,23,0.08);
	--radius:24px; /* Увеличил базовое скругление */
	/* Сделал тень более мягкой и многослойной */
	--shadow:0 20px 40px -15px rgba(18,26,22,0.12), 0 8px 16px -8px rgba(18,26,22,0.08);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
	margin:0;
	background:var(--paper);
	color:var(--ink);
	font-family:'Golos Text', sans-serif;
	font-size:16px;
	line-height:1.55;
	-webkit-font-smoothing:antialiased;
}
h1,h2,h3,.display{
	font-family:'Montserrat', sans-serif;
	letter-spacing:-0.01em;
	margin:0;
}
.mono{font-family:'IBM Plex Mono', monospace;}
p{margin:0;}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
section{scroll-margin-top:88px;}
::selection{background:var(--teal);color:#fff;}

.wrap{
	max-width:1180px;
	margin:0 auto;
	padding:0 32px;
}

/* ---------- Buttons ---------- */
.btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	padding:14px 26px;
	border-radius:100px; /* Идеальная таблетка */
	font-family:'Golos Text', sans-serif;
	font-weight:600;
	font-size:15px;
	cursor:pointer;
	border:1.5px solid transparent;
	transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	white-space:nowrap;
}
.btn:active{transform:translateY(2px);}
.btn-primary{background:var(--teal); color:#fff;}
.btn-primary:hover{background:var(--teal-deep); box-shadow:0 12px 28px -8px rgba(31,122,92,0.45);}
.btn-ghost{background:transparent; color:var(--ink); border-color:var(--line);}
.btn-ghost:hover{border-color:var(--ink); background: rgba(27,26,23,0.03);}
.btn-sm{padding:10px 20px;font-size:13.5px;}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
	outline:3px solid rgba(31,122,92,0.5);
	outline-offset:3px;
}

/* ---------- Header ---------- */
header{
	position:sticky;
	top:0;
	z-index:100;
	background:rgba(246,244,238,0.85);
	backdrop-filter:blur(12px);
	border-bottom:1px solid transparent;
	transition:border-color .3s ease, box-shadow .3s ease;
}
header.scrolled{
	border-color:var(--line);
	box-shadow:0 8px 32px -12px rgba(0,0,0,0.08);
}
.nav{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:18px 0;
}
.logo{
	display:flex;
	align-items:center;
	gap:12px;
	font-family:'Montserrat', sans-serif;
	font-weight:700;
	font-size:17px;
}
.logo-mark{
	width:36px;height:36px;
	border-radius:12px;
	background:var(--teal);
	display:flex;align-items:center;justify-content:center;
	color:#fff;font-size:16px;flex:none;
	transform:rotate(-4deg);
	transition:transform .3s ease;
}
.logo:hover .logo-mark { transform:rotate(0deg) scale(1.05); }
.nav-links{
	display:flex;
	gap:32px;
	font-size:14.5px;
	font-weight: 500;
	color:var(--ink-soft);
}
.nav-links a{transition:color .2s ease;}
.nav-links a:hover{color:var(--teal);}
.nav-cta{display:flex;align-items:center;gap:18px;}
.burger{
	display:none;
	width:42px;height:42px;
	border-radius:12px;
	border:1.5px solid var(--line);
	background:transparent;
	align-items:center;justify-content:center;
	cursor:pointer;
	transition: background .2s ease;
}
.burger:hover { background: rgba(27,26,23,0.04); }
.burger span, .burger span::before, .burger span::after{
	content:'';display:block;width:18px;height:1.5px;background:var(--ink);position:relative;
	transition: all .2s ease;
}
.burger span::before{position:absolute;top:-6px;}
.burger span::after{position:absolute;top:6px;}

@media (max-width:860px){
	.nav-links{
		position:fixed; top:76px; left:16px; right:16px;
		background:var(--card);
		border:1px solid var(--line);
		border-radius:var(--radius);
		flex-direction:column;
		padding:24px;
		gap:20px;
		box-shadow:var(--shadow);
		transform:translateY(-12px);
		opacity:0;
		pointer-events:none;
		transition:all .3s cubic-bezier(0.16, 1, 0.3, 1);
	}
	.nav-links.open{transform:translateY(0);opacity:1;pointer-events:auto;}
	.burger{display:flex;}
	.nav-cta .btn-ghost{display:none;}
}

/* ---------- Hero ---------- */
.hero{
	padding:110px 0 130px;
	position:relative;
	overflow:hidden;
}
.hero::before{
	content:'';
	position:absolute;
	top:-140px; left:-120px;
	width:500px;height:500px;
	background:radial-gradient(circle, var(--teal-tint) 0%, rgba(227,239,233,0) 70%);
	z-index:0;
	pointer-events:none;
}
.hero::after{
	content:'';
	position:absolute;
	bottom:-200px; right:-160px;
	width:600px;height:600px;
	background:radial-gradient(circle, var(--amber-tint) 0%, rgba(247,231,218,0) 70%);
	z-index:0;
	pointer-events:none;
}
.hero-grid{
	display:grid;
	grid-template-columns:1.05fr 0.85fr;
	gap:72px;
	align-items:center;
	position:relative;
	z-index:1;
}
.eyebrow{
	display:inline-flex;
	align-items:center;
	gap:8px;
	font-family:'IBM Plex Mono', monospace;
	font-size:12.5px;
	letter-spacing:0.06em;
	text-transform:uppercase;
	color:var(--teal-deep);
	background:var(--teal-tint);
	padding:8px 16px;
	border-radius:100px;
	margin-bottom:28px;
}
.eyebrow::before{
	content:'';
	width:6px;height:6px;border-radius:50%;
	background:var(--teal);
	flex:none;
}
.hero h1{
	font-size:clamp(38px, 4.5vw, 60px);
	line-height:1.12;
	font-weight:800;
	letter-spacing:-0.02em;
	color:var(--ink);
}
.hl{
	background:var(--amber-tint);
	padding:2px 14px;
	border-radius:12px;
	display:inline-block;
	box-decoration-break:clone;
	-webkit-box-decoration-break:clone;
}
.hl-teal{background:var(--teal-tint);}
.section-head h2 .hl{padding:2px 12px;border-radius:10px;}
.hero h1 .accent{color:var(--teal-deep);}
.hero-sub{
	margin-top:28px;
	font-size:18px;
	line-height:1.6;
	color:var(--ink-soft);
	max-width:520px;
}
.hero-cta{
	display:flex;
	gap:16px;
	margin-top:40px;
	flex-wrap:wrap;
}
.hero-cta .btn-primary svg{transition:transform .2s ease;}
.hero-cta .btn-primary:hover svg{transform:translateX(4px);}
.hero-note{
	margin-top:28px;
	font-size:13.5px;
	color:var(--ink-soft);
	display:flex;
	align-items:center;
	gap:10px;
}
.hero-note svg{flex:none;color:var(--teal);}

/* Анимация левитации для карточки */
@keyframes float {
	0% { transform: rotate(-2deg) translateY(0px); }
	50% { transform: rotate(-2deg) translateY(-12px); }
	100% { transform: rotate(-2deg) translateY(0px); }
}

.waybill {
position: relative;

/* --- НОВЫЙ ФОН С ПОЛОСКОЙ --- */
background: 
	linear-gradient(90deg, var(--teal) 0%, var(--teal) 60%, var(--amber) 100%) top left / 100% 6px no-repeat, 
	var(--card);
/* ---------------------------- */

border: 1px solid rgba(27,26,23,0.08);
border-radius: var(--radius);
box-shadow: 0 30px 60px -20px rgba(18,26,22,0.15), 0 10px 24px -14px rgba(18,26,22,0.1);
transform: rotate(-2deg);
padding: 32px 32px 36px;
max-width: 420px;
margin: 0 auto;
animation: float 6s ease-in-out infinite;
}

.waybill::before{
	content:'';
	position:absolute;
	top:20px;bottom:20px;left:-10px;
	width:20px;
	background:
		radial-gradient(circle at 10px 0, transparent 10px, var(--paper) 10.5px) 0 0/20px 28px repeat-y;
}
.waybill-top{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	font-family:'IBM Plex Mono', monospace;
	font-size:12px;
	color:var(--ink-soft);
	letter-spacing:0.03em;
}
.waybill-top b{display:block;color:var(--ink);font-size:13.5px;margin-bottom:4px;}
.waybill-title{
	margin-top:24px;
	font-family:'Montserrat', sans-serif;
	font-weight:700;
	font-size:20px;
	line-height:1.35;
}
.waybill-divider{
	margin:24px 0;
	border-top:1.5px dashed var(--line);
	position:relative;
}
.waybill-rows{display:flex;flex-direction:column;gap:12px;}
.waybill-row{
	display:flex;
	justify-content:space-between;
	font-size:13.5px;
	color:var(--ink-soft);
}
.waybill-row span:last-child{color:var(--ink);font-weight:600;font-family:'IBM Plex Mono', monospace;font-size:13px;}
.barcode{
	margin-top:24px;
	height:42px;
	background:repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 11px, var(--ink) 11px 14px, transparent 14px 17px);
	opacity:0.85;
}
.stamp{
	position:absolute;
	right:-24px; bottom:-24px;
	width:112px;height:112px;
	border-radius:50%;
	border:2.5px solid var(--amber);
	color:var(--amber);
	display:flex;
	align-items:center;
	justify-content:center;
	transform:rotate(-14deg);
	background:rgba(246,244,238,0.95);
	backdrop-filter: blur(4px);
	text-align:center;
	font-family:'IBM Plex Mono', monospace;
	font-size:11px;
	font-weight:600;
	letter-spacing:0.02em;
	line-height:1.3;
	padding:8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ---------- Section generic ---------- */
.section{padding:110px 0;}
.section-head{
	max-width:680px;
	margin-bottom:60px;
}
.section-tag{
	font-family:'IBM Plex Mono', monospace;
	font-size:12.5px;
	text-transform:uppercase;
	letter-spacing:0.08em;
	color:var(--teal-deep);
	margin-bottom:18px;
	display:block;
}
.section-head h2{
	font-size:clamp(28px,3.5vw,40px);
	font-weight:700;
	line-height:1.2;
}
.section-head p{
	margin-top:20px;
	color:var(--ink-soft);
	font-size:16.5px;
}
.alt-bg{
	background-color:var(--paper-dim);
	background-image:radial-gradient(circle, rgba(27,26,23,0.06) 1.5px, transparent 1.5px);
	background-size:24px 24px;
}

/* ---------- Context / pain points ---------- */
.pain-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:24px;
}
.pain-card{
	background:var(--card);
	border:1px solid transparent;
	border-radius:var(--radius);
	padding:32px 28px;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pain-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: rgba(27,26,23,0.08);
}
.pain-card .pain-icon{
	width:48px;height:48px;
	border-radius:14px;
	background:var(--amber-tint);
	color:var(--amber);
	display:flex;align-items:center;justify-content:center;
	margin-bottom:22px;
}
.pain-card h3{
	font-size:18px;
	font-weight:700;
	margin-bottom:12px;
}
.pain-card p{color:var(--ink-soft);font-size:15px;line-height: 1.6;}

/* ---------- Offers ---------- */
.offer-grid{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:24px;
}
.offer-card{
	background:var(--card);
	border:1px solid transparent;
	border-radius:var(--radius);
	padding:36px 30px;
	position:relative;
	transition:border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.offer-card:hover{
	border-color:var(--teal-tint);
	transform:translateY(-6px);
	box-shadow:var(--shadow);
}
.offer-icon{
	width:52px;height:52px;
	border-radius:14px;
	background:var(--teal-tint);
	color:var(--teal-deep);
	display:flex;align-items:center;justify-content:center;
	margin-bottom:24px;
}
.offer-card h3{font-size:19px;font-weight:700;margin-bottom:12px;padding-right:80px;}
.offer-card p{color:var(--ink-soft);font-size:15px; margin-bottom: 20px;}
.offer-features{
	display:flex;
	flex-direction:column;
	gap:12px;
}
.offer-features li{
	font-size:14px;
	color:var(--ink-soft);
	padding-left:26px;
	position:relative;
}
.offer-features li::before{
	content:'✓';
	position:absolute;
	left:0; top:0;
	color:var(--teal);
	font-weight:700;
}
.free-tag{
	position:absolute;
	top:28px;right:24px;
	font-family:'IBM Plex Mono', monospace;
	font-size:11px;
	text-transform:uppercase;
	letter-spacing:0.04em;
	color:var(--teal-deep);
	border:1.5px dashed var(--teal);
	border-radius:100px;
	padding:6px 12px;
	transform:rotate(-3deg);
}

/* ---------- Process ---------- */
.process-list{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:0;
	position:relative;
}
.process-item{
	padding:0 24px 0 0;
	position:relative;
}
.process-item:not(:last-child)::after{
	content:'';
	position:absolute;
	top:26px; right:-4px;
	width:calc(100% - 52px);
	border-top:2px dashed var(--line);
}
.process-num{
	font-family:'Montserrat', sans-serif;
	font-size:14px;
	font-weight:800;
	color:var(--teal-deep);
	background:var(--teal-tint);
	width:52px;height:52px;
	border-radius:50%;
	display:flex;align-items:center;justify-content:center;
	margin-bottom:24px;
}
.process-item h3{font-size:17px;font-weight:700;margin-bottom:12px;}
.process-item p{font-size:14.5px;color:var(--ink-soft);line-height: 1.6;}

/* ---------- Testimonials ---------- */
.test-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:24px;
}
.test-card{
	background:var(--card);
	border:1px solid transparent;
	border-radius:var(--radius);
	padding:32px 28px;
	display:flex;
	flex-direction:column;
	gap:20px;
	transition: transform .3s ease, box-shadow .3s ease;
}
.test-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}
.test-quote{font-size:15.5px;color:var(--ink);line-height:1.6;}
.test-quote::before{content:'“';font-family:'Montserrat', sans-serif;color:var(--teal); font-size: 20px;}
.test-person{
	display:flex;align-items:center;gap:14px;
	margin-top:auto;
}
.test-avatar{
	width:42px;height:42px;border-radius:50%;
	background:var(--teal-deep);
	color:#fff;
	display:flex;align-items:center;justify-content:center;
	font-family:'Montserrat', sans-serif;font-size:14px;font-weight:700;
	flex:none;
}
.test-name{font-size:14px;font-weight:700;}
.test-role{font-size:13px;color:var(--ink-soft);}
.test-disclaimer{
	margin-top:32px;
	font-size:13px;
	color:var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq-list{max-width:820px;}
.faq-item{
	border-bottom:1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }
.faq-q{
	width:100%;
	background:none;
	border:none;
	text-align:left;
	padding:26px 0;
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:20px;
	cursor:pointer;
	font-family:'Golos Text', sans-serif;
	font-size:17px;
	font-weight:600;
	color:var(--ink);
	transition: color .2s ease;
}
.faq-q:hover { color: var(--teal); }
.faq-plus{
	flex:none;
	width:34px;height:34px;
	border-radius:50%;
	background:var(--teal-tint);
	border:none;
	position:relative;
	transition:transform .3s ease, background .3s ease;
}
.faq-plus::before, .faq-plus::after{
	content:'';
	position:absolute;
	background:var(--teal-deep);
	top:50%;left:50%;
	transform:translate(-50%,-50%);
	transition:background .3s ease;
	border-radius: 2px;
}
.faq-plus::before{width:12px;height:2px;}
.faq-plus::after{width:2px;height:12px;transition:opacity .2s ease;}
.faq-item.open .faq-plus{transform:rotate(90deg);background:var(--teal-deep);}
.faq-item.open .faq-plus::before{background:#fff;}
.faq-item.open .faq-plus::after{opacity:0;}
.faq-a{
	max-height:0;
	overflow:hidden;
	transition:max-height .35s ease;
}
.faq-a p{
	padding-bottom:26px;
	color:var(--ink-soft);
	font-size:15px;
	max-width:680px;
	line-height: 1.6;
}

/* ---------- CTA / Form ---------- */
.cta-section{
	background-color:var(--teal-deep);
	background-image:radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
	background-size:24px 24px;
	color:#fff;
	border-radius: 32px;
	padding:72px;
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:56px;
	align-items:center;
}
.cta-section .section-tag{color:var(--amber);}
.cta-section h2{color:#fff;font-size:clamp(26px,3vw,36px);}
.cta-section h2 .hl{background:rgba(255,255,255,0.12);color:#fff;}
.cta-section p{color:rgba(255,255,255,0.8);margin-top:20px;font-size:16px; line-height: 1.6;}
.cta-list{margin-top:28px;display:flex;flex-direction:column;gap:14px;}
.cta-list li{display:flex;gap:12px;align-items:flex-start;font-size:15px;color:rgba(255,255,255,0.95);}
.cta-list svg{flex:none;margin-top:3px;color:var(--amber);}

.contact-card{
	background:#fff;
	border-radius:24px;
	padding:40px 36px;
	color:var(--ink);
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.contact-icon{
	width:56px;height:56px;
	border-radius:14px;
	background:var(--teal-tint);
	color:var(--teal-deep);
	display:flex;align-items:center;justify-content:center;
	margin-bottom:24px;
}
.contact-card h3{font-size:20px;font-weight:700;margin-bottom:12px;}
.contact-card p{color:var(--ink-soft);font-size:15px;margin-bottom:28px;}
.contact-buttons{display:flex;flex-direction:column;gap:14px;}
.contact-buttons .btn{width:100%; padding:16px 26px;}

/* ---------- Footer ---------- */
footer{
	padding:48px 0 44px;
	border-top:1px solid var(--line);
}
.footer-row{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	gap:20px;
}
.footer-links{display:flex;gap:26px;font-size:14px;font-weight: 500; color:var(--ink-soft);}
.footer-links a:hover { color: var(--teal); }
.footer-copy{font-size:13.5px;color:var(--ink-soft);}

/* ---------- Reveal animation ---------- */
.reveal{
	opacity:0;
	transform:translateY(24px);
	transition:opacity .8s ease, transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible{opacity:1;transform:translateY(0);}

@media (prefers-reduced-motion: reduce){
	.reveal{opacity:1;transform:none;transition:none;}
	html{scroll-behavior:auto;}
	.waybill { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width:980px){
	.hero-grid{grid-template-columns:1fr;}
	.waybill{margin-top:32px;}
	.pain-grid, .offer-grid, .test-grid{grid-template-columns:repeat(2,1fr);}
	.process-list{grid-template-columns:repeat(2,1fr);row-gap:42px;}
	.process-item:nth-child(2)::after{display:none;}
	.cta-section{grid-template-columns:1fr;padding:48px 32px;border-radius:28px;}
}
@media (max-width:620px){
	.wrap{padding:0 24px;}
	.pain-grid, .offer-grid, .test-grid, .process-list{grid-template-columns:1fr;}
	.process-item::after{display:none !important;}
	.section{padding:72px 0;}
	.hero{padding:64px 0 72px;}
}

/* cyrillic-ext */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcEx58hLxR.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcExd8hLxR.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcEx18hLxR.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcExN8hA.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;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcEx58hLxR.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcExd8hLxR.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcEx18hLxR.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcExN8hA.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;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcEx58hLxR.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcExd8hLxR.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcEx18hLxR.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcExN8hA.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;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcEx58hLxR.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcExd8hLxR.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcEx18hLxR.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Golos Text';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/q5uCsoe9Lv5t7Meb31EcExN8hA.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;
}
/* cyrillic-ext */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/-F63fjptAgt5VM-kVkqdyU8n1iIq129k.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/-F63fjptAgt5VM-kVkqdyU8n1isq129k.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/-F63fjptAgt5VM-kVkqdyU8n1iAq129k.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/-F63fjptAgt5VM-kVkqdyU8n1iEq129k.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/-F63fjptAgt5VM-kVkqdyU8n1i8q1w.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;
}
/* cyrillic-ext */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl1FgtIU.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwlRFgtIU.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl9FgtIU.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl5FgtIU.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'IBM Plex Mono';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwlBFgg.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;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.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;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.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;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.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;
}
/* cyrillic-ext */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2) format('woff2');
	unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url(../fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.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;
}