:root {
	--ink: #0f172a;
	--muted: #64748b;
	--line: #e2e8f0;
	--soft: #f8fafc;
	--white: #ffffff;
	--teal: #0f766e;
	--teal-dark: #115e59;
	--teal-soft: #ecfdf5;
	--teal-mid: #14b8a6;
	--orange: #ea580c;
	--orange-soft: #fff7ed;
	--shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
	--radius: 18px;
	--font-display: "Outfit", system-ui, sans-serif;
	--font-body: "Figtree", system-ui, sans-serif;
	--header-h: 72px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	max-width: 1920px;
	margin-inline: auto;
	overflow-wrap: break-word;
}

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

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

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

ul,
ol {
	list-style: none;
}

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

.narrow {
	width: min(760px, calc(100% - 32px));
	margin-inline: auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 12px;
}

.eyebrow--light {
	color: #99f6e4;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	line-height: 1.15;
	font-weight: 700;
}

h1 {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	letter-spacing: -0.03em;
	margin-bottom: 18px;
}

h2 {
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	letter-spacing: -0.02em;
	margin-bottom: 14px;
}

h3 {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.section {
	padding: 88px 0;
}

.section--soft {
	background:
		radial-gradient(circle at 10% 0%, #ecfdf5 0%, transparent 42%),
		radial-gradient(circle at 90% 20%, #f0fdfa 0%, transparent 36%),
		var(--soft);
}

.section__head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.section__lead {
	color: var(--muted);
	font-size: 1.05rem;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 999px;
	padding: 12px 22px;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--sm {
	padding: 10px 16px;
	font-size: 0.9375rem;
}

.btn--lg {
	padding: 15px 26px;
	font-size: 1.05rem;
}

.btn--full {
	width: 100%;
}

.btn--primary {
	background: var(--teal);
	color: #fff;
	box-shadow: 0 10px 24px rgba(15, 118, 110, 0.25);
}

.btn--primary:hover {
	background: var(--teal-dark);
	transform: translateY(-1px);
}

.btn--ghost {
	background: #fff;
	color: var(--ink);
	border: 1.5px solid var(--line);
}

.btn--ghost:hover {
	border-color: var(--teal-mid);
	color: var(--teal);
}

/* Header */
.header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--header-h);
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.logo__brand {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
}

.logo__place {
	font-size: 0.75rem;
	color: var(--teal);
	font-weight: 600;
}

.nav {
	display: flex;
	gap: 22px;
}

.nav a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--muted);
	transition: color 0.2s;
}

.nav a:hover {
	color: var(--teal);
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header__phone {
	font-weight: 700;
	font-family: var(--font-display);
	color: var(--ink);
	white-space: nowrap;
}

.header__phone:hover {
	color: var(--teal);
}

.burger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid var(--line);
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-direction: column;
	padding: 10px;
	flex-shrink: 0;
}

.burger span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: 0.2s;
}

/* Hero */
.hero {
	position: relative;
	padding: 56px 0 40px;
	overflow: hidden;
}

.hero__glow {
	position: absolute;
	inset: -20% auto auto -10%;
	width: 55vw;
	height: 55vw;
	background: radial-gradient(circle, rgba(20, 184, 166, 0.16), transparent 65%);
	pointer-events: none;
	animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(40px, 30px);
	}
}

.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 40px;
	align-items: center;
}

.hero__lead {
	font-size: 1.125rem;
	color: var(--muted);
	max-width: 34rem;
	margin-bottom: 28px;
}

.hero__lead strong {
	color: var(--teal-dark);
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero__pills li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid var(--line);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--muted);
}

.hero__pills svg {
	color: var(--teal);
	flex-shrink: 0;
}

.hero__visual {
	animation: riseIn 0.8s ease both;
}

@keyframes riseIn {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.infographic--hero {
	width: 100%;
	height: auto;
	filter: drop-shadow(var(--shadow));
	border-radius: 28px;
}

/* Strip */
.strip {
	padding: 8px 0 48px;
}

.strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	padding: 8px;
	border-radius: 24px;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.strip__item {
	text-align: center;
	padding: 22px 12px;
	border-radius: 18px;
}

.strip__item:nth-child(odd) {
	background: var(--teal-soft);
}

.strip__num {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.35rem, 3.5vw, 1.75rem);
	color: var(--teal-dark);
	letter-spacing: -0.03em;
}

.strip__label {
	font-size: 0.875rem;
	color: var(--muted);
}

/* About */
.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.about__text p {
	color: var(--muted);
	margin-bottom: 16px;
}

.about__text .btn {
	margin-top: 8px;
}

.about__cards {
	display: grid;
	gap: 14px;
}

.info-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
	padding: 18px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: var(--white);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.info-card p {
	color: var(--muted);
	font-size: 0.95rem;
}

/* Services */
.services {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 28px;
}

.service {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.service__icon {
	width: 120px;
}

.service p {
	color: var(--muted);
	margin-bottom: 8px;
}

.price-tag {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 10px;
	margin: 12px 0 18px;
	padding: 14px 16px;
	border-radius: 14px;
	background: var(--teal-soft);
}

.price-tag__value {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--teal-dark);
}

.price-tag__unit {
	color: var(--muted);
	font-size: 0.9rem;
}

.combo {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 24px;
	align-items: center;
	padding: 24px;
	border-radius: 24px;
	background: var(--white);
	border: 1px solid var(--line);
}

.combo__text p {
	color: var(--muted);
}

.infographic--combo {
	width: 100%;
	height: auto;
}

/* Steps */
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.step {
	position: relative;
	padding: 24px 20px;
	border-radius: 20px;
	border: 1px solid var(--line);
	background: var(--white);
	transition: transform 0.25s ease;
}

.step:hover {
	transform: translateY(-4px);
}

.step__num {
	position: absolute;
	top: 16px;
	right: 16px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.85rem;
	color: #99f6e4;
}

.step svg {
	margin-bottom: 14px;
}

.step p {
	color: var(--muted);
	font-size: 0.95rem;
}

/* Areas */
.areas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
}

.areas li {
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid var(--line);
	font-weight: 600;
	font-size: 0.95rem;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.areas li:first-child {
	background: var(--teal);
	border-color: var(--teal);
	color: #fff;
}

.areas li:hover {
	border-color: var(--teal-mid);
	color: var(--teal-dark);
}

.areas li:first-child:hover {
	color: #fff;
	background: var(--teal-dark);
}

.areas__note {
	text-align: center;
	color: var(--muted);
	font-size: 0.95rem;
}

/* FAQ */
.faq {
	display: grid;
	gap: 10px;
}

.faq__item {
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--white);
	padding: 4px 18px;
	transition: border-color 0.2s;
}

.faq__item[open] {
	border-color: #99f6e4;
	background: linear-gradient(180deg, #f0fdfa, #fff);
}

.faq__item summary {
	cursor: pointer;
	list-style: none;
	font-family: var(--font-display);
	font-weight: 600;
	padding: 16px 28px 16px 0;
	position: relative;
}

.faq__item summary::-webkit-details-marker {
	display: none;
}

.faq__item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--teal-soft);
	color: var(--teal);
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	font-weight: 700;
}

.faq__item[open] summary::after {
	content: "–";
}

.faq__item p {
	color: var(--muted);
	padding-bottom: 16px;
}

/* SEO content - same visual language, no redesign */
.seo-body {
	display: grid;
	gap: 16px;
}

.seo-body p,
.seo-body li {
	color: var(--muted);
	font-size: 1.02rem;
}

.seo-body h3 {
	margin-top: 8px;
	color: var(--ink);
}

.seo-body a {
	color: var(--teal-dark);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.seo-keywords {
	justify-content: flex-start;
	margin: 4px 0 8px;
}

.seo-keywords li {
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--muted);
}

.seo-keywords li:first-child {
	background: var(--teal);
	border-color: var(--teal);
	color: #fff;
	font-weight: 600;
}

.footer__geo {
	margin-top: 10px;
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.5;
}

.footer__geo a {
	color: var(--teal-dark);
	font-weight: 600;
}

/* CTA */
.cta {
	padding: 40px 0 88px;
}

.cta__box {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 32px;
	padding: 40px;
	border-radius: 28px;
	background:
		radial-gradient(circle at 90% 10%, rgba(153, 246, 228, 0.25), transparent 40%),
		linear-gradient(135deg, #0f766e, #134e4a);
	color: #fff;
	box-shadow: 0 20px 50px rgba(15, 118, 110, 0.28);
}

.cta__copy h2 {
	color: #fff;
}

.cta__copy > p {
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 18px;
}

.cta__phones {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin-bottom: 10px;
}

.cta__phones a {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.15rem, 4vw, 1.35rem);
	word-break: break-word;
}

.cta__phones a:hover {
	color: #99f6e4;
}

.cta__hours {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.cta__messengers {
	display: grid;
	gap: 12px;
	align-content: center;
}

.msg {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-weight: 700;
	transition: transform 0.2s, background 0.2s;
}

.msg:hover {
	transform: translateX(4px);
	background: rgba(255, 255, 255, 0.2);
}

.msg svg {
	flex-shrink: 0;
}

.msg__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	min-width: 0;
	line-height: 1.15;
}

.msg__label {
	font-weight: 700;
	font-size: 1rem;
}

.msg__hint {
	font-weight: 500;
	font-size: 0.8125rem;
	opacity: 0.75;
	letter-spacing: 0.01em;
}

.msg--viber {
	color: #fff;
}
.msg--telegram {
	color: #fff;
}
.msg--whatsapp {
	color: #fff;
}

/* Footer */
.footer {
	background: var(--soft);
	border-top: 1px solid var(--line);
	padding: 48px 0 24px;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}

.footer__brand p {
	color: var(--muted);
	margin-top: 12px;
	max-width: 28ch;
}

.footer__col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer__col h3 {
	font-size: 0.95rem;
	margin-bottom: 4px;
}

.footer__col a,
.footer__msg-btn {
	color: var(--muted);
	text-align: left;
	font-weight: 500;
}

.footer__col a:hover,
.footer__msg-btn:hover {
	color: var(--teal);
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	font-size: 0.875rem;
	color: var(--muted);
}

.stats-stealth-btn {
	cursor: pointer;
	user-select: none;
}

/* Modal */
.modal[hidden] {
	display: none;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 20px;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
	backdrop-filter: blur(4px);
}

.modal__dialog {
	position: relative;
	width: min(420px, 100%);
	max-height: min(90vh, 720px);
	overflow-y: auto;
	background: #fff;
	border-radius: 24px;
	padding: 28px 24px 24px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
	animation: riseIn 0.25s ease;
}

.modal__dialog--stats {
	width: min(480px, 100%);
}

.modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--muted);
}

.modal__close:hover {
	background: var(--soft);
	color: var(--ink);
}

.modal__dialog h2 {
	font-size: 1.35rem;
	margin-bottom: 6px;
	padding-right: 28px;
}

.modal__hint {
	color: var(--muted);
	margin-bottom: 18px;
}

.modal__messengers {
	display: grid;
	gap: 10px;
	margin-bottom: 16px;
}

.modal__messengers .msg {
	background: var(--soft);
	border: 1px solid var(--line);
	color: var(--ink);
}

.modal__messengers .msg__hint {
	opacity: 0.7;
	color: var(--muted);
}

.modal__messengers .msg--viber svg {
	color: #7360f2;
}
.modal__messengers .msg--telegram svg {
	color: #229ed9;
}
.modal__messengers .msg--whatsapp svg {
	color: #25d366;
}

.modal__phones {
	display: grid;
	gap: 8px;
}

.modal__phones a {
	display: block;
	text-align: center;
	padding: 12px;
	border-radius: 12px;
	background: var(--teal-soft);
	color: var(--teal-dark);
	font-weight: 700;
}

.stats-content {
	display: grid;
	gap: 10px;
	color: var(--muted);
}

.stats-content .stat-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 12px;
	border-radius: 12px;
	background: var(--soft);
	color: var(--ink);
	font-weight: 600;
}

/* FAB */
.fab {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 40;
	display: none;
	flex-direction: column;
	gap: 10px;
}

.fab__call,
.fab__msg {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

.fab__call {
	background: var(--teal);
}

.fab__msg {
	background: var(--orange);
}

/* Responsive */
@media (max-width: 1100px) {
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px) {
	.hero__grid,
	.about,
	.services,
	.combo,
	.cta__box,
	.footer__grid {
		grid-template-columns: 1fr;
	}

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

	.nav {
		position: fixed;
		inset: var(--header-h) 0 auto 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		flex-direction: column;
		padding: 16px 20px 20px;
		gap: 14px;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: 0.25s ease;
		z-index: 49;
	}

	.nav.is-open {
		transform: none;
		opacity: 1;
		pointer-events: auto;
	}

	.burger {
		display: flex;
	}

	.header__phone {
		display: none;
	}

	.fab {
		display: flex;
	}

	body {
		padding-bottom: 88px;
	}

	.hero {
		padding-top: 28px;
	}

	.section {
		padding: 64px 0;
	}

	.cta__box {
		padding: 28px 22px;
	}

	.service {
		padding: 22px;
	}
}

@media (max-width: 560px) {
	.container,
	.narrow {
		width: calc(100% - 24px);
	}

	.strip__grid,
	.steps {
		grid-template-columns: 1fr;
	}

	.hero__cta .btn {
		width: 100%;
	}

	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.header__actions .btn--sm {
		display: none;
	}

	h1 {
		font-size: clamp(1.55rem, 8vw, 2rem);
	}

	h2 {
		font-size: clamp(1.35rem, 6.5vw, 1.75rem);
	}

	.hero__lead {
		font-size: 1rem;
	}

	.hero__pills li {
		font-size: 0.8125rem;
		padding: 7px 12px;
	}

	.price-tag__value {
		font-size: clamp(1.25rem, 6vw, 1.6rem);
	}

	.section {
		padding: 48px 0;
	}

	.cta {
		padding: 24px 0 64px;
	}

	.modal {
		padding: 12px;
	}

	.modal__dialog {
		padding: 24px 16px 18px;
		border-radius: 18px;
	}

	.fab {
		right: 12px;
		bottom: 12px;
	}

	.fab__call,
	.fab__msg {
		width: 50px;
		height: 50px;
	}

	.info-card {
		grid-template-columns: 1fr;
	}

	.logo__brand {
		font-size: 0.95rem;
	}
}

@media (max-width: 360px) {
	.container,
	.narrow {
		width: calc(100% - 16px);
	}

	.header {
		--header-h: 64px;
		height: var(--header-h);
	}

	.header__inner {
		gap: 10px;
	}

	.logo__mark svg {
		width: 30px;
		height: 30px;
	}

	.service__icon {
		width: 96px;
	}

	.strip__num {
		font-size: 1.45rem;
	}

	.combo {
		padding: 16px;
	}

	.areas li {
		padding: 8px 12px;
		font-size: 0.875rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
