.home-hero,
.home-features,
.home-steps,
.home-integrations,
.home-news,
.home-security,
.home-consultation,
.home-final-cta {
	--home-title-color: #22313f;
	--home-interactive-transition: color .15s cubic-bezier(.4, 0, .2, 1);
	--home-transition-all: all .15s cubic-bezier(.4, 0, .2, 1);
	--home-transition-transform: transform .2s ease;
	--home-transition-transform-soft: transform .15s cubic-bezier(.4, 0, .2, 1);
	--home-card-padding: 24px;
	--home-card-radius: 10px;
	--home-text-sm: 14px;
	--home-text-base: 16px;
	--home-title-md: 24px;
	--home-gap-sm: 12px;
	--home-gap-md: 16px;
	--home-gap-lg: 24px;
	--home-gap-xl: 32px;
	--home-section-padding: 64px 0;
	--home-content-width: 760px;
}

.home-features,
.home-steps,
.home-integrations,
.home-news,
.home-security,
.home-consultation,
.home-final-cta {
	--home-section-border: #e7ebef;
}

.home-hero,
.home-features,
.home-steps,
.home-integrations,
.home-news,
.home-security,
.home-final-cta {
	padding: var(--home-section-padding);
}

.home-hero {
	background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
	border-bottom: 1px solid var(--home-section-border, #e7ebef);
	padding: 80px 0;
}

.home-hero__content {
	max-width: var(--home-content-width);
}

.home-hero h1 {
	margin: 0 0 18px;
	color: var(--home-title-color);
	font-size: 48px;
	line-height: 1.15;
}

.home-hero p {
	margin: 0 0 28px;
	color: #586370;
	font-size: 18px;
	line-height: 1.6;
}

.home-hero__actions {
	display: flex;
	gap: var(--home-gap-sm);
	flex-wrap: wrap;
}

.home-hero__primary,
.home-hero__secondary,
.home-final-cta__primary,
.home-final-cta__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 8px;
	padding: 12px 24px;
	font-size: var(--home-text-base);
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
}

.home-hero__primary {
	background: #20b573;
	color: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.home-hero__primary:hover { background: #1a9d63; }

.home-hero__secondary {
	border: 2px solid var(--home-title-color);
	color: var(--home-title-color);
}

.home-section-subtitle {
	margin: 0 0 24px;
	color: #6a7480;
	font-size: var(--home-text-sm);
}

.home-section-head,
.home-features h2,
.home-steps h2,
.home-news h2 {
	margin-bottom: 48px;
}

.home-section-head h2 {
	margin: 0 0 8px;
}

.home-section-head .home-section-subtitle {
	margin: 0;
}

.home-section-link {
	margin: 48px 0 0;
	display: flex;
	justify-content: flex-end;
}

.home-features,
.home-integrations,
.home-news {
	background: #f5f7f9;
	border-bottom: 1px solid var(--home-section-border);
}

.home-features__grid,
.home-steps__grid,
.home-security__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-steps__grid p,
.home-security__grid p,
.home-news__card p,
.home-integrations__card p,
.home-features__grid p {
	margin: 0;
	color: #5e6772;
	font-size: var(--home-text-sm);
	line-height: 1.625;
}

.home-feature-card,
.home-security__grid > div,
.home-integrations__card,
.home-news__card {
	--home-card-border: #e5e5e5;
	--home-card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
	border: 1px solid var(--home-card-border);
	border-radius: var(--home-card-radius);
	transition: var(--home-transition-all);
}

.home-features h2,
.home-steps h2,
.home-integrations h2,
.home-news h2,
.home-security h2,
.home-final-cta h2,
.home-consultation h2 {
	margin: 0 0 10px;
	color: var(--home-title-color);
	font-size: var(--home-title-md);
	line-height: 1.2;
}

.home-features__grid,
.home-steps__grid,
.home-integrations__grid,
.home-security__grid {
	display: grid;
	gap: var(--home-gap-lg);
}

.home-feature-card,
.home-security__grid > div,
.home-integrations__card {
	padding: var(--home-card-padding);
	background: #f5f7f9;
}

.home-feature-card__icon,
.home-security__icon {
	--home-card-icon-bg: linear-gradient(145deg, #20b573 0%, #1a9d63 100%);
	--home-card-icon-shadow: 0 8px 18px rgba(32, 181, 115, 0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: var(--home-card-radius);
	background: var(--home-card-icon-bg);
	box-shadow: var(--home-card-icon-shadow);
	color: #fff;
	line-height: 1;
	transition: var(--home-transition-transform);
}

.home-security__icon {
	--home-card-icon-bg: linear-gradient(145deg, #22313f 0%, #1a4d5f 100%);
	--home-card-icon-shadow: none;
	transition: var(--home-transition-transform-soft);
}

.home-feature-card__icon svg,
.home-security__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

.home-features__grid h3,
.home-steps__grid h3,
.home-security__grid h3,
.home-news__card h3 {
	margin: 0 0 var(--home-gap-sm);
	color: var(--home-title-color);
	font-size: var(--home-text-base);
	line-height: 1.35;
}

.home-security__grid > div {
	background: #fff;
}

.home-feature-card:hover,
.home-security__grid > div:hover,
.home-integrations__card:hover,
.home-news__card:hover {
	border-color: #20b573;
	box-shadow: var(--home-card-shadow-hover);
}

.home-feature-card {
	background: #f8fafc;
}

.home-feature-card:hover .home-feature-card__icon,
.home-security__grid > div:hover .home-security__icon {
	transform: scale(1.1);
}

.home-security__grid h3 {
	margin-bottom: 12px;
}

.home-steps,
.home-security {
	background: #f5f7f9;
	border-top: 1px solid var(--home-section-border);
	border-bottom: 1px solid var(--home-section-border);
}

.home-steps__grid > div {
	position: relative;
}

.home-steps__grid > div span {
	display: inline-block;
	font-size: 58px;
	line-height: 1;
	font-weight: 700;
	color: #20b573;
	opacity: .14;
	margin-bottom: 10px;
}

.home-step-card h3 {
	max-width: 280px;
}

.home-steps__grid > div:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -16px;
	top: 32px;
	width: 32px;
	height: 2px;
	background: linear-gradient(90deg, #20b573 0%, rgba(32, 181, 115, 0) 100%);
}

.home-integrations__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-integrations__card {
	display: block;
	text-decoration: none;
	color: var(--home-title-color);
	font-weight: 600;
	padding: 32px;
	background: transparent;
}

.home-integrations__logo {
	height: 48px;
	margin-bottom: var(--home-gap-lg);
	display: flex;
	align-items: center;
}

.home-integrations__logo img {
	max-height: 100%;
	max-width: 120px;
	object-fit: contain;
}

.home-integrations__card h3 {
	margin: 0 0 12px;
	color: var(--home-title-color);
	font-size: 18px;
	line-height: 1.5556;
	transition: var(--home-interactive-transition);
}

.home-integrations__card p {
	font-weight: 400;
}

.home-integrations__all,
.home-news__all {
	margin: 26px 0 0;
	text-align: right;
}

.home-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--home-gap-lg);
}

.home-news__card {
	position: relative;
	display: block;
	text-decoration: none;
	color: inherit;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #fff;
}

.home-news__card-content {
	position: relative;
	z-index: 10;
	padding: var(--home-card-padding);
	min-height: 180px;
	display: flex;
	flex-direction: column;
}

.home-news__card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	filter: blur(20px);
	opacity: 0.1;
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.home-news__card:hover .home-news__card-bg {
	opacity: 0.15;
}

.home-news__date {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #788390;
	margin-bottom: 12px;
}

.home-news__date span {
	width: 13px;
	height: 13px;
	display: inline-flex;
	opacity: .75;
}

.home-news__date svg {
	width: 13px;
	height: 13px;
	display: block;
}

.home-news__card h3 {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 600;
	color: var(--home-title-color);
	transition: var(--home-interactive-transition);
}

.home-integrations__card:hover h3,
.home-news__card:hover h3 {
	color: #20b573;
}

.home-news__card p {
	margin: 0;
	color: #56616d;
	font-size: var(--home-text-sm);
	line-height: 1.625;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-section-link a,
.home-news__all a,
.home-integrations__all a {
	color: #4f5965;
	text-decoration: none;
	font-weight: 500;
	font-size: var(--home-text-sm);
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 8px;
	transition: color .2s ease, background-color .2s ease;
}

.home-section-link a:hover,
.home-news__all a:hover,
.home-integrations__all a:hover {
	color: #20b573;
	background: #f8fafc;
}

.home-consultation {
	background: #fff;
	border-top: 1px solid var(--home-section-border);
	border-bottom: 1px solid var(--home-section-border);
	padding: 64px 0;
}

.home-consultation__head {
	margin-bottom: var(--home-gap-xl);
}

.home-consultation #question-form {
	background: transparent;
	margin: 0;
	padding: 0;
	box-shadow: none;
	display: block;
	width: auto;
	max-width: none;
}

.home-consultation h2 {
	margin-bottom: 8px;
	line-height: 1.3333;
	font-weight: 600;
}

.home-consultation__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: calc(var(--home-gap-xl) + var(--home-gap-md));
	align-items: start;
}

.home-consultation__form-wrap form {
	margin-top: 0;
	display: grid;
	gap: var(--home-gap-lg);
}

.home-consultation__form-wrap {
	max-width: 640px;
}

.home-consultation__grid,
.home-consultation__meta-card p:last-child {
	margin-bottom: 0;
}

.home-consultation__submit-wrap {
	margin-top: 0;
}

.home-consultation__form-card {
	padding: 0;
	max-width: 100%;
}

.home-consultation__meta {
	display: flex;
	align-items: flex-start;
	padding-top: var(--home-gap-xl);
}

.home-consultation__meta-card {
	background: #f8fafc;
	border: 1px solid #e5e5e5;
	border-radius: var(--home-card-radius);
	padding: var(--home-card-padding);
	color: #5f6974;
	font-size: var(--home-text-sm);
	line-height: 1.5;
}

.home-consultation__meta-card p {
	margin: 0 0 10px;
}

.home-final-cta {
	background: linear-gradient(135deg, #22313f 0%, #1a4d5f 100%);
	border-top: 1px solid var(--home-section-border);
	border-bottom: 1px solid #cfdee8;
}

.home-final-cta__content {
	max-width: var(--home-content-width);
	margin: 0 auto;
}

.home-final-cta h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 30px;
	line-height: 1.15;
	font-weight: 600;
}

.home-final-cta p {
	margin: 0;
	color: #c8d0d8;
	font-size: 18px;
	line-height: 1.5;
}

.home-final-cta__actions {
	margin-top: var(--home-gap-xl);
	display: flex;
	gap: var(--home-gap-md);
	justify-content: center;
	flex-wrap: wrap;
}

.home-final-cta__primary {
	background: #20b573;
	color: #fff;
	padding-inline: 32px;
}

.home-final-cta__secondary {
	border: 2px solid #fff;
	color: #fff;
	padding-inline: 32px;
}

.home-final-cta__secondary:hover {
	background: #fff;
	color: #22313f;
}

@media (max-width: 1100px) {
	.home-features__grid,
	.home-steps__grid,
	.home-security__grid,
	.home-news__grid,
	.home-integrations__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero h1 {
		font-size: 42px;
	}

	.home-consultation__layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.home-consultation__meta { padding-top: 0; }

	.home-steps__grid > div:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 767px) {
	.home-hero,
	.home-features,
	.home-steps,
	.home-integrations,
	.home-news,
	.home-security,
	.home-final-cta {
		padding: 42px 0;
	}

	.home-features__grid,
	.home-steps__grid,
	.home-news__grid,
	.home-integrations__grid,
	.home-security__grid,
	.home-consultation__grid {
		grid-template-columns: 1fr;
	}

	.home-hero h1 {
		font-size: 34px;
	}

	.home-final-cta h2 {
		font-size: 28px;
	}

	.home-news__all,
	.home-section-link {
		text-align: left;
	}

	.home-news__card-content {
		min-height: 0;
		padding: 18px;
	}

	.home-feature-card,
	.home-step-card {
		min-height: 0;
	}

	.home-steps__grid > div span {
		font-size: 48px;
	}

	.home-news__all a,
	.home-news__date,
	.home-features__grid p,
	.home-steps__grid p,
	.home-security__grid p,
	.home-integrations__card p,
	.home-consultation .form-consent label,
	.home-consultation__meta-card,
	.home-consultation .consult-form-input {
		font-size: 14px;
	}

	.home-features__grid h3,
	.home-steps__grid h3,
	.home-security__grid h3,
	.home-integrations__card h3 {
		font-size: 16px;
	}

	.home-consultation .container {
		max-width: 390px;
		margin-inline: auto;
	}

	.home-consultation__form-wrap,
	.home-consultation__meta {
		width: 100%;
		max-width: 352px;
		margin-inline: auto;
	}

	.home-consultation__form-card,
	.home-consultation__meta-card,
	.home-consultation #question-form {
		width: 100%;
		margin-inline: auto;
	}

	.home-consultation__submit-wrap,
	.home-consultation__submit-wrap button,
	.home-consultation__submit-wrap input[type="submit"] {
		width: 100%;
	}

	.home-consultation__layout {
		max-width: 352px;
		margin-inline: auto;
		justify-items: stretch;
	}

	.home-consultation__head {
		max-width: 352px;
		margin-inline: auto;
	}

	.home-consultation__meta {
		justify-content: flex-start;
	}

	.home-consultation__meta-card {
		width: 100%;
		max-width: 320px;
	}
}

@media (min-width: 1024px) {
	.home-consultation {
		padding: 80px 0;
	}

	.home-consultation__meta {
		padding-top: 64px;
	}
}
