.is-modern-home {
	--deep: #10402f;
	--deep-soft: #17553f;
	--mint: #22d3a4;
	--ink: #0d1b16;
	--muted: #5c7268;
	--glass: rgba(255, 255, 255, 0.72);
	--glass-line: rgba(255, 255, 255, 0.9);
	--shadow-soft: 0 30px 60px -28px rgba(13, 60, 45, 0.35), 0 10px 24px -16px rgba(13, 60, 45, 0.22);
	--shadow-lift: 0 44px 80px -32px rgba(13, 60, 45, 0.42), 0 16px 32px -20px rgba(13, 60, 45, 0.26);
	--radius-lg: 32px;
	--radius-md: 20px;
	--radius-sm: 14px;

	background:
		radial-gradient(1200px 620px at 78% -8%, rgba(74, 222, 128, 0.18), transparent 62%),
		radial-gradient(900px 520px at 4% 22%, rgba(34, 211, 164, 0.12), transparent 60%),
		var(--bg-page);
}

.is-modern-home .section {
	padding: 72px 0;
}

.is-modern-home.has-reveal [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-modern-home.has-reveal [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 24px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	font-size: 15px;
	color: var(--ink);
}

.pill--dark {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.22);
	box-shadow: none;
	color: var(--white);
}

.pill__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.16);
}

.arrow {
	width: 16px;
	height: 16px;
	flex: none;
}

.btn--solid,
.btn--ghost,
.btn--light {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 28px;
	border-radius: var(--radius-sm);
	font-size: 16px;
	font-weight: 600;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--solid {
	background: linear-gradient(140deg, var(--deep-soft), var(--deep));
	color: var(--white);
	box-shadow: 0 22px 40px -20px rgba(16, 64, 47, 0.75);
}

.btn--ghost {
	background: var(--white);
	color: var(--ink);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.btn--light {
	background: var(--white);
	color: var(--deep);
	box-shadow: 0 22px 40px -22px rgba(0, 0, 0, 0.45);
}

.btn--solid:hover,
.btn--ghost:hover,
.btn--light:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lift);
}

.btn__icon {
	width: 20px;
	height: 20px;
	flex: none;
}

.lead {
	position: relative;
	padding: 72px 0 96px;
	overflow: hidden;
}

.lead__aura {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.lead__aura--one {
	width: 520px;
	height: 520px;
	top: -180px;
	right: -80px;
	background: rgba(74, 222, 128, 0.35);
}

.lead__aura--two {
	width: 420px;
	height: 420px;
	bottom: -220px;
	left: -140px;
	background: rgba(34, 211, 164, 0.22);
}

.lead__body {
	position: relative;
	z-index: 2;
}

.lead__title {
	margin: 0 0 24px;
	font-size: clamp(38px, 4vw, 64px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--ink);
}

.lead__accent {
	background: linear-gradient(120deg, var(--green), var(--deep));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lead__text {
	max-width: 520px;
	margin: 0 0 36px;
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
}

.lead__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.lead__scene {
	position: relative;
	z-index: 1;
}

.scene {
	position: relative;
	aspect-ratio: 560 / 460;
	width: 100%;
}

.scene__glow {
	position: absolute;
	inset: 12% 6% 8%;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 50%, rgba(34, 211, 164, 0.28), transparent 68%);
	filter: blur(40px);
}

.scene__wires {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.9;
}

.scene [data-parallax] {
	translate: 0 0;
	transition: translate 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scene.is-tracking [data-parallax] {
	transition-duration: 0.35s;
}

.scene__device {
	position: absolute;
	left: 12%;
	top: 18%;
	width: 74%;
	animation: float-soft 9s ease-in-out infinite;
}

.device {
	transform: perspective(1400px) rotateX(6deg) rotateY(-9deg);
	transform-style: preserve-3d;
}

.device__screen {
	position: relative;
	padding: 10px;
	border-radius: 18px;
	background: linear-gradient(160deg, #dfe7e4, #9fb1a9);
	box-shadow: var(--shadow-lift);
}

.device__foot {
	height: 14px;
	margin: 0 -8%;
	border-radius: 0 0 16px 16px;
	background: linear-gradient(180deg, #cfd8d4, #93a49c);
	box-shadow: 0 26px 40px -22px rgba(13, 60, 45, 0.6);
}

.mock {
	padding: 20px 22px 24px;
	border-radius: 12px;
	background: linear-gradient(150deg, #12463a, #0b2c24);
	color: var(--white);
	overflow: hidden;
}

.mock__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	font-size: 11px;
	opacity: 0.85;
}

.mock__nav {
	display: flex;
	gap: 8px;
}

.mock__nav i {
	width: 26px;
	height: 5px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.35);
}

.mock__title {
	margin: 0 0 10px;
	font-size: clamp(14px, 1.5vw, 22px);
	font-weight: 700;
	line-height: 1.2;
}

.mock__title span {
	color: var(--green-light);
}

.mock__text {
	max-width: 60%;
	margin: 0 0 16px;
	font-size: clamp(8px, 0.75vw, 11px);
	line-height: 1.5;
	opacity: 0.7;
}

.mock__btn {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 8px;
	background: var(--green);
	font-size: clamp(8px, 0.75vw, 11px);
	font-weight: 600;
}

.mock__chart {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 54px;
	margin-top: 18px;
	padding-left: 55%;
}

.mock__chart i {
	flex: 1;
	height: var(--h);
	border-radius: 4px 4px 0 0;
	background: linear-gradient(180deg, var(--green-light), rgba(74, 222, 128, 0.15));
}

.scene__card {
	position: absolute;
	padding: 18px 20px;
	border-radius: var(--radius-md);
	background: var(--glass);
	border: 1px solid var(--glass-line);
	backdrop-filter: blur(18px) saturate(1.4);
	box-shadow: var(--shadow-lift);
	animation: float-soft 7.5s ease-in-out infinite;
}

.scene__card--support {
	top: 6%;
	right: -2%;
	width: 44%;
	animation-delay: -2s;
}

.scene__card--trust {
	bottom: 6%;
	left: -3%;
	width: 46%;
	animation-delay: -4s;
}

.scene__card-title {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
}

.scene__card-value {
	margin: 0 0 8px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	color: var(--green);
}

.scene__card-text {
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	color: var(--muted);
}

.scene__card-icon,
.scene__card-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(140deg, var(--green-light), var(--green-dark));
	color: var(--white);
	box-shadow: 0 14px 24px -12px rgba(16, 64, 47, 0.8);
}

.scene__card-icon {
	position: absolute;
	right: 16px;
	bottom: 16px;
}

.scene__card-badge {
	margin-bottom: 12px;
}

.scene__card-icon svg,
.scene__card-badge svg {
	width: 22px;
	height: 22px;
}

.scene__cube {
	position: absolute;
	top: 8%;
	left: 2%;
	animation: float-soft 8.5s ease-in-out infinite;
	animation-delay: -1s;
}

.cube {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 22px;
	background: linear-gradient(150deg, #1f6b4f, #0d3527);
	color: var(--green-light);
	box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.22), var(--shadow-lift);
	transform: perspective(600px) rotateX(12deg) rotateY(-14deg);
}

.cube svg {
	width: 40px;
	height: 40px;
}

.scene__sphere {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at 32% 26%, #7ff0bc, #16a34a 46%, #06301f 100%);
	box-shadow: inset -6px -10px 20px rgba(0, 0, 0, 0.4), 0 22px 32px -16px rgba(6, 48, 31, 0.6);
	animation: float-soft 10s ease-in-out infinite;
}

.scene__sphere::after {
	content: '';
	position: absolute;
	top: 14%;
	left: 20%;
	width: 30%;
	height: 22%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.65);
	filter: blur(3px);
}

.scene__sphere--lg {
	width: 62px;
	height: 62px;
	top: 0;
	right: 46%;
	animation-delay: -3s;
}

.scene__sphere--md {
	width: 40px;
	height: 40px;
	bottom: 6%;
	right: 26%;
	animation-delay: -5s;
}

.scene__sphere--sm {
	width: 26px;
	height: 26px;
	top: 46%;
	left: 6%;
	animation-delay: -1.5s;
}

.scene__pill {
	position: absolute;
	right: 6%;
	bottom: 16%;
	width: 96px;
	height: 26px;
	border-radius: 999px;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(214, 240, 226, 0.75));
	border: 1px solid var(--glass-line);
	box-shadow: var(--shadow-soft);
	animation: float-soft 9.5s ease-in-out infinite;
	animation-delay: -6s;
}

@keyframes float-soft {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

.services {
	padding-bottom: 24px;
}

.services__panel {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 40px 24px;
	border-radius: var(--radius-lg);
	background: linear-gradient(150deg, var(--deep-soft), var(--deep));
	box-shadow: var(--shadow-lift);
}

.service {
	position: relative;
	padding: 8px 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--white);
}

.service:first-child {
	border-left: 0;
}

.service__icon {
	display: block;
	margin-bottom: 18px;
}

.icon3d {
	width: 72px;
	height: 72px;
	filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
}

.icon3d__shadow {
	fill: rgba(0, 0, 0, 0.28);
}

.service__title {
	margin: 0 0 10px;
	font-size: 21px;
	font-weight: 700;
}

.service__text {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
}

.service__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: var(--white);
	transition: background 0.25s ease, transform 0.25s ease;
}

.service__link:hover {
	background: var(--green);
	transform: translateY(-2px);
}

.metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 24px;
	padding: 28px 24px;
	border-radius: var(--radius-lg);
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.metric {
	padding: 4px 28px;
	border-left: 1px solid var(--line);
}

.metric:first-child {
	border-left: 0;
}

.metric__value {
	margin: 0 0 4px;
	font-size: 26px;
	font-weight: 700;
	color: var(--ink);
}

.metric__label {
	font-size: 16px;
	font-weight: 600;
	color: var(--green-dark);
}

.metric__text {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}

.section-head--center {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.section-head__caption {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green-dark);
}

.section-head__title {
	margin: 0;
	font-size: clamp(28px, 2.6vw, 42px);
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: var(--ink);
}

.works__grid,
.journal__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.work {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-lg);
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lift);
}

.work__media {
	position: relative;
	display: flex;
	align-items: flex-end;
	aspect-ratio: 16 / 10;
	padding: 18px;
	background-size: cover;
	background-position: center;
}

.work__media--blank {
	background:
		radial-gradient(120px 90px at 78% 24%, rgba(74, 222, 128, 0.55), transparent 70%),
		linear-gradient(150deg, #17553f, #0a2b20);
}

.work__media--blank::after {
	content: '';
	position: absolute;
	right: 18%;
	top: 26%;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: radial-gradient(circle at 32% 26%, #7ff0bc, #16a34a 46%, #06301f 100%);
	box-shadow: inset -5px -8px 16px rgba(0, 0, 0, 0.4), 0 18px 26px -14px rgba(6, 48, 31, 0.7);
}

.work__tag {
	position: relative;
	z-index: 1;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--glass);
	border: 1px solid var(--glass-line);
	backdrop-filter: blur(10px);
	font-size: 13px;
	font-weight: 600;
	color: var(--deep);
}

.work__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px;
}

.work__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--ink);
}

.work__text {
	font-size: 15px;
	line-height: 1.55;
	color: var(--muted);
}

.work__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	font-size: 15px;
	font-weight: 600;
	color: var(--green-dark);
}

.steps__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.step {
	position: relative;
	padding: 32px 26px;
	border-radius: var(--radius-lg);
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 14px;
	background: linear-gradient(140deg, var(--green-light), var(--green-dark));
	color: var(--white);
	font-size: 17px;
	font-weight: 700;
	box-shadow: 0 16px 26px -14px rgba(16, 64, 47, 0.8);
}

.step__title {
	margin: 0 0 8px;
	font-size: 19px;
	color: var(--ink);
}

.step__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: var(--muted);
}

.rent-modern__panel {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 48px;
	padding: 56px;
	border-radius: var(--radius-lg);
	background: linear-gradient(150deg, var(--deep-soft), #0a2b20);
	color: var(--white);
	box-shadow: var(--shadow-lift);
}

.rent-modern__title {
	margin: 0 0 16px;
	font-size: clamp(26px, 2.4vw, 38px);
	line-height: 1.15;
}

.rent-modern__text {
	margin: 0 0 28px;
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
}

.rent-modern__note {
	margin: 16px 0 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
}

.rent-modern__features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	align-content: center;
}

.rent-modern__feature {
	padding: 24px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
}

.rent-modern__feature-title {
	margin: 0 0 6px;
	font-size: 17px;
}

.rent-modern__feature-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.7);
}

.note {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 28px;
	border-radius: var(--radius-lg);
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.note:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lift);
}

.note__meta {
	display: flex;
	gap: 14px;
	font-size: 13px;
	color: var(--muted);
}

.note__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--ink);
}

.note__text {
	font-size: 15px;
	line-height: 1.55;
	color: var(--muted);
}

.cta__panel {
	position: relative;
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 48px;
	padding: 56px;
	border-radius: var(--radius-lg);
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-lift);
	overflow: hidden;
}

.cta__aura {
	position: absolute;
	width: 420px;
	height: 420px;
	top: -180px;
	right: -120px;
	border-radius: 50%;
	background: rgba(74, 222, 128, 0.22);
	filter: blur(80px);
	pointer-events: none;
}

.cta__intro {
	position: relative;
	z-index: 1;
}

.cta__title {
	margin: 0 0 14px;
	font-size: clamp(26px, 2.4vw, 38px);
	color: var(--ink);
}

.cta__text {
	margin: 0 0 24px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--muted);
}

.cta__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.cta__list li {
	position: relative;
	padding-left: 30px;
	font-size: 15px;
	color: var(--ink);
}

.cta__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: linear-gradient(140deg, var(--green-light), var(--green-dark));
}

.cta__form {
	position: relative;
	z-index: 1;
}

.faq-block .section-head {
	margin-bottom: 32px;
}

@media (max-width: 1199px) {
	.services__panel,
	.metrics,
	.steps__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.service,
	.metric {
		border-left: 0;
		padding: 0;
	}

	.works__grid,
	.journal__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rent-modern__panel,
	.cta__panel {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 40px;
	}

	.lead__scene {
		margin-top: 48px;
	}
}

@media (max-width: 786px) {
	.is-modern-home .section {
		padding: 48px 0;
	}

	.lead {
		padding: 40px 0 64px;
	}

	.services__panel,
	.metrics,
	.steps__grid,
	.works__grid,
	.journal__grid {
		grid-template-columns: 1fr;
	}

	.services__panel {
		padding: 32px 24px;
	}

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

	.rent-modern__features {
		grid-template-columns: 1fr;
	}

	.rent-modern__panel,
	.cta__panel {
		padding: 28px;
	}

	.lead__actions .btn--solid,
	.lead__actions .btn--ghost {
		flex: 1 1 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.is-modern-home.has-reveal [data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.scene__device,
	.scene__card,
	.scene__cube,
	.scene__sphere,
	.scene__pill {
		animation: none;
	}
}
