/**
 * Вариант 6 — продуктовый лендинг (светлый).
 */

html {
	margin: 0;
	padding: 0;
}

body.relsoft-landing {
	margin: 0;
	padding: 0;
	font-family: Manrope, system-ui, sans-serif;
	background: #ffffff !important;
	color: #0f172a;
	line-height: 1.5;
}

.relsoft-landing-root {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.relsoft-landing-main {
	flex: 1;
}

.relsoft-landing-header {
	border-bottom: 1px solid #e2e8f0;
	background: #fff;
}

.relsoft-landing-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	padding: 18px 11px 20px;
	max-width: 960px;
	margin: 0 auto;
	box-sizing: border-box;
}

.relsoft-landing-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

.relsoft-landing-brand img {
	width: auto;
	max-width: min(220px, 46vw);
	height: auto;
	max-height: 48px;
	object-fit: contain;
}

.relsoft-landing-navwrap {
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 200px;
}

.relsoft-landing-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 12px;
	font-size: 0.8rem;
	font-weight: 600;
}

.relsoft-landing-menu a {
	color: #64748b;
	text-decoration: none;
}

.relsoft-landing-menu a:hover {
	color: #2563eb;
}

.relsoft-landing-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.relsoft-landing-tel {
	font-weight: 700;
	color: #0c1e3c;
	font-size: 0.9rem;
	white-space: nowrap;
}

.relsoft-landing-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.15s, transform 0.1s;
}

.relsoft-landing-btn--primary {
	background: #2563eb;
	color: #fff;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.relsoft-landing-btn--primary:hover {
	background: #1d4ed8;
	color: #fff;
}

.relsoft-landing-hero {
	padding: 36px 0 48px;
}

.relsoft-landing-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 11px;
	box-sizing: border-box;
}

@media (max-width: 880px) {
	.relsoft-landing-hero__grid {
		grid-template-columns: 1fr;
	}
}

.relsoft-landing-hero__copy h1 {
	margin: 0 0 14px;
	font-size: clamp(1.55rem, 3.5vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.15;
	color: #0f172a;
}

.relsoft-landing-hero__lead {
	margin: 0 0 22px;
	color: #64748b;
	font-size: 1.02rem;
}

.relsoft-landing-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.relsoft-landing-btn--orange {
	background: #ea580c;
	color: #fff;
	box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.relsoft-landing-btn--orange:hover {
	background: #c2410c;
	color: #fff;
}

.relsoft-landing-btn--outline {
	background: #fff;
	color: #0c1e3c;
	border: 2px solid #e2e8f0;
}

.relsoft-landing-btn--outline:hover {
	border-color: #2563eb;
	color: #2563eb;
}

.relsoft-landing-hero__art {
	position: relative;
	min-height: 260px;
	border-radius: 20px;
	background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 50%, #fff 100%);
	border: 1px solid #bfdbfe;
}

.relsoft-landing-hero__orb {
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: linear-gradient(135deg, #fb923c, #ea580c);
	top: 28px;
	right: 10%;
	box-shadow: 0 20px 40px rgba(234, 88, 12, 0.28);
}

.relsoft-landing-hero__panel {
	position: absolute;
	bottom: 28px;
	left: 8%;
	right: 8%;
	height: 110px;
	border-radius: 14px;
	background: linear-gradient(180deg, #1e3a5f 0%, #0c1e3c 100%);
	box-shadow: 0 14px 28px rgba(12, 30, 60, 0.35);
}

.relsoft-landing-hero__panel::after {
	content: "";
	position: absolute;
	inset: 14px;
	border-radius: 8px;
	background: repeating-linear-gradient(90deg, rgba(147, 197, 253, 0.35) 0 6px, transparent 6px 12px);
	opacity: 0.55;
}

.relsoft-landing-hero__chip {
	position: absolute;
	bottom: 42px;
	right: 12%;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: #312e81;
	box-shadow: 0 8px 18px rgba(49, 46, 129, 0.4);
}

.relsoft-landing-content {
	padding: 8px 11px 32px;
	max-width: 960px;
	margin: 0 auto;
}

.relsoft-landing-entry {
	color: #334155;
	font-size: 0.98rem;
}

.relsoft-landing-entry p {
	margin: 0 0 12px;
}

.relsoft-landing-entry a {
	color: #2563eb;
}

.relsoft-landing-numcards {
	padding: 0 0 48px;
}

.relsoft-landing-numcards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 11px;
	box-sizing: border-box;
}

@media (max-width: 800px) {
	.relsoft-landing-numcards__grid {
		grid-template-columns: 1fr;
	}
}

.relsoft-landing-card {
	border-radius: 20px;
	padding: 24px 20px 28px;
	color: #fff;
	min-height: 170px;
}

.relsoft-landing-card__num {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 12px;
	opacity: 0.95;
}

.relsoft-landing-card__title {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 700;
}

.relsoft-landing-card__text {
	margin: 0;
	font-size: 0.9rem;
	opacity: 0.92;
	line-height: 1.45;
}

.relsoft-landing-card--1 {
	background: linear-gradient(135deg, #f97316, #ea580c);
}

.relsoft-landing-card--2 {
	background: linear-gradient(135deg, #1e293b, #0c1e3c);
}

.relsoft-landing-card--3 {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.relsoft-landing-contact {
	padding: 24px 11px 48px;
	max-width: 960px;
	margin: 0 auto;
}

.relsoft-landing-contact .contacts_us {
	max-width: 520px;
	margin: 0 auto;
}

.relsoft-landing-contact .contacts_us h3 {
	color: #0f172a;
}

.relsoft-landing-contact .contacts_us label,
.relsoft-landing-contact .contacts_us .input_text,
.relsoft-landing-contact .contacts_us textarea {
	color: #334155;
}

.relsoft-landing-footer {
	border-top: 1px solid #e2e8f0;
	background: #f8fafc;
	margin-top: auto;
	padding: 28px 0 36px;
}

.relsoft-landing-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 11px;
}

.relsoft-landing-footer__logo img {
	display: block;
	width: auto;
	max-height: 36px;
	object-fit: contain;
}

.relsoft-landing-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	font-size: 0.85rem;
}

.relsoft-landing-footer__menu a {
	color: #64748b;
	text-decoration: none;
}

.relsoft-landing-footer__menu a:hover {
	color: #2563eb;
}

@media (max-width: 720px) {
	.relsoft-landing-header__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.relsoft-landing-navwrap {
		width: 100%;
		justify-content: flex-start;
	}

	.relsoft-landing-actions {
		width: 100%;
	}
}
