:root {
	--color-primary: #8344B7;
	--color-primary-light: #6E63FF;
	--color-white: #ffffff;
	--color-text: #101828;
	--color-muted: #D6D9E6;
	--color-dark: #020817;
	--container: 1280px;
	--radius-md: 14px;
	--transition: 0.25s ease;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Albert Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--color-text);
	background: #ffffff;
}

.container {
	width: min(100% - 48px, var(--container));
	margin: 0 auto;
}

/* HEADER */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 28px 0;
	background: rgba(2, 8, 23, 0.18);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	transition: all 0.3s ease;
}

.site-header.scrolled {
	padding: 18px 0;
	background: rgba(2, 8, 23, 0.88);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	z-index: 2;
}

.brand-logo {
	height: 20px;
	display: block;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 42px;
}

.main-nav a,
.btn-link {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: var(--transition);
}

.main-nav a:hover,
.btn-link:hover {
	color: #ffffff;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.mobile-nav-actions {
	display: none;
}

.menu-button {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	cursor: pointer;
	padding: 0;
	z-index: 2;
}

.menu-button span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: #ffffff;
	border-radius: 999px;
	transition: var(--transition);
}

.menu-button.active span:first-child {
	transform: translateY(5px) rotate(45deg);
}

.menu-button.active span:last-child {
	transform: translateY(-5px) rotate(-45deg);
}

/* BUTTONS */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 28px;
	border-radius: var(--radius-md);
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	transition: var(--transition);
	white-space: nowrap;
}

.btn-primary {
	color: #fff;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
	box-shadow: 0 18px 40px rgba(105, 88, 255, 0.35);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 46px rgba(105, 88, 255, 0.44);
}

.btn-secondary {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* HERO */

.hero {
	position: relative;
	min-height: 760px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient( 90deg, rgba(2, 8, 23, .96) 0%, rgba(2, 8, 23, .82) 32%, rgba(2, 8, 23, .22) 62%, rgba(2, 8, 23, .04) 100%), url("/assets/hero-priuser.webp") right center / cover no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient( circle at 72% 42%, rgba(131, 68, 183, .12), transparent 35%);
	pointer-events: none;
}

.hero-container {
	position: relative;
	z-index: 5;
	padding-top: 96px;
}

.hero-content {
	max-width: 620px;
}

.hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 60px);
	line-height: 1.05;
	letter-spacing: -0.05em;
	font-weight: 850;
}

.hero h1 span {
	color: var(--color-primary-light);
}

.hero p {
	margin: 28px 0 0;
	max-width: 560px;
	color: var(--color-muted);
	font-size: 20px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	gap: 20px;
	margin-top: 44px;
}

/* ISOLOGO CENTRAL */

.hero-logo-core {
	position: absolute;
	right: 28%;
	top: 50%;
	width: 120px;
	height: 120px;
	transform: translateY(-50%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #8344b76e;
	box-shadow: 0 0 0 14px rgba(131, 68, 183, 0.2), 0 0 0 28px rgba(131, 68, 183, 0.2), 0 0 80px rgba(131, 68, 183, 1);
	z-index: 6;
	animation: corePulse 4s ease-in-out infinite;
}

.hero-logo-core img {
	width: 58px;
	height: auto;
	display: block;
}

@keyframes corePulse {
	0%,
	100% {
		transform: translateY(-50%) scale(1);
	}
	50% {
		transform: translateY(-50%) scale(1.06);
	}
}

/* TABLET / MOBILE */

@media (max-width: 980px) {
	.container {
		width: min(100% - 40px, var(--container));
	}
	.site-header {
		padding: 20px 0;
		background: rgba(2, 8, 23, 0.62);
	}
	.header-container {
		gap: 16px;
	}
	.brand-logo {
		height: 20px;
	}
	.header-actions {
		display: none;
	}
	.menu-button {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	.main-nav {
		position: absolute;
		top: calc(100% + 18px);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 22px;
		border-radius: 0;
		background: rgba(2, 8, 23, .96);
		backdrop-filter: blur(18px);
		border: 1px solid rgba(255, 255, 255, .08);
		box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
	}
	.main-nav.active {
		display: flex;
	}
	.main-nav a {
		padding: 14px 0;
		font-size: 16px;
	}
	.mobile-nav-actions {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding-top: 16px;
		margin-top: 12px;
		border-top: 1px solid rgba(255, 255, 255, .10);
	}
	.mobile-nav-actions .btn {
		width: 100%;
	}
	.hero {
		min-height: 720px;
		align-items: flex-end;
		background: linear-gradient( 180deg, rgba(2, 8, 23, .30) 0%, rgba(2, 8, 23, .88) 58%, #020817 100%), url("/assets/hero-priuser.webp") 85% center / cover no-repeat;
	}
	.hero-container {
		padding: 0 0 70px 0;
	}
	.hero h1 {
		font-size: 34px;
	}
	.hero p {
		font-size: 18px;
	}
	.hero-actions {
		flex-direction: column;
		gap: 14px;
	}
	.hero-actions .btn {
		width: 100%;
	}
	.hero-logo-core {
		display: none;
	}
}

/* MOBILE SMALL */

@media (max-width: 520px) {
	.container {
		width: min(100% - 32px, var(--container));
	}
	.hero {
		min-height: 700px;
		background-position: 72% center;
	}
	.hero h1 {
		font-size: clamp(30px, 10vw, 42px);
		line-height: 1.04;
		letter-spacing: -0.05em;
	}
	.hero p {
		font-size: 17px;
		line-height: 1.5;
	}
	.hero-actions {
		margin-top: 34px;
	}
}

/* IMPACT SECTION */

.impact-section {
	position: relative;
	padding: 110px 0 120px;
	background: radial-gradient(circle at 50% 10%, rgba(131, 68, 183, .08), transparent 34%), #ffffff;
	overflow: hidden;
}

.impact-section::before {
	content: "";
	position: absolute;
	inset: 80px 0 auto;
	height: 180px;
	background-image: radial-gradient(circle, rgba(131, 68, 183, .18) 1px, transparent 1px);
	background-size: 58px 58px;
	opacity: .45;
	pointer-events: none;
}

.impact-container {
	position: relative;
	z-index: 2;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 70px;
	text-align: center;
}

.section-eyebrow {
	display: inline-block;
	margin-bottom: 16px;
	color: var(--color-primary);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.section-heading h2 {
	margin: 0;
	color: #070b24;
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.05;
	letter-spacing: -0.05em;
	font-weight: 850;
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.impact-card {
	position: relative;
	padding: 0 34px;
	text-align: center;
}

.impact-card:not(:last-child) {
	border-right: 1px solid rgba(16, 24, 40, .10);
}

.impact-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 22px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--color-primary);
	background: rgba(131, 68, 183, .07);
	box-shadow: 0 12px 34px rgba(131, 68, 183, .12);
	font-size: 22px;
	font-weight: 800;
}

.impact-card h3 {
	margin: 0 0 18px;
	color: #11142d;
	font-size: 18px;
	font-weight: 800;
}

.impact-card strong {
	display: block;
	margin-bottom: 12px;
	color: var(--color-primary);
	font-size: clamp(58px, 6vw, 92px);
	line-height: .9;
	letter-spacing: -0.07em;
	font-weight: 900;
}

.impact-card strong span {
	font-size: .52em;
	letter-spacing: -0.04em;
}

.impact-card h4 {
	max-width: 220px;
	margin: 0 auto 28px;
	color: #101828;
	font-size: 18px;
	line-height: 1.28;
	font-weight: 850;
}

.impact-card h4::after {
	content: "";
	display: block;
	width: 34px;
	height: 2px;
	margin: 24px auto 0;
	background: var(--color-primary);
	border-radius: 999px;
}

.impact-card p {
	max-width: 250px;
	margin: 0 auto;
	color: #34384b;
	font-size: 20px;
	line-height: 1.7;
	font-weight: 500;
}

.impact-card p b {
	color: var(--color-primary);
	font-weight: 850;
}

/* IMPACT RESPONSIVE */

@media (max-width: 980px) {
	.impact-section {
		padding: 84px 0 90px;
	}
	.impact-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 44px 0;
	}
	.impact-card:nth-child(2) {
		border-right: none;
	}
}

@media (max-width: 620px) {
	.impact-section {
		padding: 70px 0;
	}
	.section-heading {
		margin-bottom: 44px;
		text-align: left;
	}
	.section-heading h2 {
		font-size: clamp(30px, 9vw, 42px);
	}
	.impact-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}
	.impact-card {
		padding: 34px 24px;
		border: 1px solid rgba(16, 24, 40, .08) !important;
		border-radius: 24px;
		background: rgba(255, 255, 255, .82);
		box-shadow: 0 18px 50px rgba(16, 24, 40, .06);
	}
	.impact-card strong {
		font-size: 72px;
	}
}

/* REALITY SECTION */

.reality-section {
	position: relative;
	padding: 110px 0 120px;
	background: #ffffff;
	overflow: hidden;
}

.reality-container {
	position: relative;
	z-index: 2;
}

.reality-heading {
	max-width: 760px;
	margin-bottom: 70px;
}

.reality-heading h2 {
	margin: 0 0 26px;
	color: #070b24;
	font-size: clamp(34px, 4vw, 60px);
	line-height: 1.05;
	letter-spacing: -0.05em;
	font-weight: 850;
}

.reality-heading p {
	max-width: 720px;
	margin: 0 0 18px;
	color: #34384b;
	font-size: 20px;
	line-height: 1.7;
	font-weight: 500;
}

.reality-flow {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 46px;
	align-items: start;
}

.reality-card {
	position: relative;
}

.reality-visual {
	height: 260px;
	margin-bottom: 32px;
	border-radius: 28px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.reality-visual img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.reality-card-title {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 22px;
}

.reality-card-title span {
	color: rgba(131, 68, 183, .35);
	font-size: 34px;
	line-height: 1;
	font-weight: 850;
	letter-spacing: -0.04em;
}

.reality-card-title h3 {
	margin: 0;
	color: #11142d;
	font-size: 20px;
	line-height: 1.1;
	text-transform: uppercase;
	font-weight: 850;
}

.reality-card p {
	margin: 0;
	color: #34384b;
	font-size: 18px;
	line-height: 1.7;
	font-weight: 500;
}

/* REALITY RESPONSIVE */

@media (max-width: 980px) {
	.reality-section {
		padding: 84px 0 90px;
	}
	.reality-heading {
		margin-bottom: 54px;
	}
	.reality-flow {
		grid-template-columns: 1fr;
		gap: 42px;
	}
	.reality-card {
		padding: 28px;
		border-radius: 28px;
		background: rgba(255, 255, 255, .86);
		border: 1px solid rgba(16, 24, 40, .08);
		box-shadow: 0 18px 50px rgba(16, 24, 40, .06);
	}
	.reality-visual {
		height: 240px;
		margin-bottom: 26px;
	}
}

@media (max-width: 520px) {
	.reality-section {
		padding: 70px 0;
	}
	.reality-heading h2 {
		font-size: clamp(32px, 9vw, 44px);
	}
	.reality-heading p {
		font-size: 16px;
	}
	.reality-card {
		padding: 22px;
	}
	.reality-visual {
		height: 210px;
	}
	.reality-card-title span {
		font-size: 30px;
	}
	.reality-card-title h3 {
		font-size: 17px;
	}
}

/* ==========================================================
   SECTION 4 - ECOSISTEMA
========================================================== */

.ecosystem-section {
	background: #020817;
	color: #ffffff;
	overflow: hidden;
}

/* ==========================================================
   HERO SUPERIOR
========================================================== */

.ecosystem-hero {
	position: relative;
	min-height: 820px;
	display: flex;
	align-items: center;
	background: linear-gradient( 90deg, rgba(2, 8, 23, .98) 0%, rgba(2, 8, 23, .92) 30%, rgba(2, 8, 23, .55) 55%, rgba(2, 8, 23, .12) 100%), url("/assets/ecosystem-section-bg.webp") center right / cover no-repeat;
	background-repeat: no-repeat;
}

.ecosystem-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 280px;
	background: linear-gradient( to bottom, rgba(2, 8, 23, 0), #020817);
	pointer-events: none;
}

.ecosystem-container {
	position: relative;
	z-index: 2;
}

.ecosystem-content {
	max-width: 560px;
}

.section-eyebrow {
	display: block;
	margin-bottom: 18px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #6e63ff;
}

.ecosystem-content h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 60px);
	line-height: 1.05;
	font-weight: 850;
	letter-spacing: -0.05em;
	color: #ffffff;
}

.section-line {
	width: 56px;
	height: 2px;
	margin: 28px 0;
	background: #6e63ff;
	border-radius: 999px;
}

.ecosystem-content p {
	margin: 0 0 20px;
	font-size: 20px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .72);
}

.ecosystem-content strong {
	color: #8344b7;
}

/* ==========================================================
   CARDS
========================================================== */

.ecosystem-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: -40px;
	position: relative;
	z-index: 10;
}

.ecosystem-card {
	position: relative;
	padding: 30px 30px 0;
	border-radius: 22px;
	background: #020817;
	border: 1px solid rgba(255, 255, 255, .08);
	overflow: hidden;
}

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

.ecosystem-card.green {
	box-shadow: inset 0 0 0 1px rgba(107, 230, 138, .12);
}

.ecosystem-card.purple {
	box-shadow: inset 0 0 0 1px rgba(155, 116, 255, .12);
}

.ecosystem-card.blue {
	box-shadow: inset 0 0 0 1px rgba(78, 168, 255, .12);
}

.ecosystem-card-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 20px;
}

.green .ecosystem-card-icon {
	color: #6BE68A;
}

.purple .ecosystem-card-icon {
	color: #8344b7;
}

.blue .ecosystem-card-icon {
	color: #6e63ff;
}

.ecosystem-card h3 {
	margin: 0 0 14px;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.1;
}

.green h3 {
	color: #6BE68A;
}

.purple h3 {
	color: #8344b7;
}

.blue h3 {
	color: #6e63ff;
}

.ecosystem-card p {
	max-width: 280px;
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .72);
}

.ecosystem-card-image {
	position: relative;
	margin-top: 24px;
}

.ecosystem-card-image img {
	display: block;
	width: 100%;
	height: auto;
}

.ecosystem-card-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: -30px;
	right: -30px;
	height: 100px;
	background: linear-gradient( to bottom, #020817 0%, rgba(2, 8, 23, .85) 30%, rgba(2, 8, 23, .45) 60%, rgba(2, 8, 23, 0) 100%);
	z-index: 2;
	pointer-events: none;
}

/* ==========================================================
   FOOTER
========================================================== */

.ecosystem-footer {
	padding: 40px 0 80px;
	text-align: center;
	font-size: 18px;
	color: rgba(255, 255, 255, .65);
}

.ecosystem-footer strong {
	color: #6e63ff;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 980px) {
	.ecosystem-hero {
		min-height: 780px;
		background: linear-gradient( 180deg, rgba(2, 8, 23, .15) 0%, rgba(2, 8, 23, .75) 45%, #020817 72%), url("/assets/ecosystem-section-bg.webp") 70% top / cover no-repeat;
	}
	.ecosystem-content {
		max-width: 100%;
	}
	.ecosystem-cards {
		grid-template-columns: 1fr;
		margin-top: 0;
	}
	.ecosystem-card {
		min-height: 320px;
	}
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 520px) {
	.ecosystem-hero {
		min-height: 700px;
	}
	.ecosystem-content h2 {
		font-size: clamp(30px, 10vw, 42px);
	}
	.ecosystem-content p {
		font-size: 16px;
	}
	.ecosystem-card {
		min-height: 300px;
		padding: 24px;
	}
	.ecosystem-card h3 {
		font-size: 24px;
	}
	.ecosystem-footer {
		font-size: 16px;
	}
}

/* ==========================================================

   SECTION 6 - WORKFLOW

========================================================== */

.workflow-section {
	position: relative;
	padding: 120px 0;
	background: radial-gradient(circle at 58% 26%, rgba(131, 68, 183, .08), transparent 34%), #ffffff;
	overflow: hidden;
}

.workflow-container {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 80px;
	align-items: start;
}

.workflow-copy {
	position: sticky;
	top: 120px;
}

.workflow-copy .section-eyebrow {
	color: var(--color-primary);
}

.workflow-copy h2 {
	margin: 0 0 26px;
	color: #070b24;
	font-size: clamp(34px, 4vw, 60px);
	line-height: 1.05;
	letter-spacing: -0.05em;
	font-weight: 850;
}

.workflow-copy p {
	margin: 0;
	color: #34384b;
	font-size: 20px;
	line-height: 1.7;
	font-weight: 500;
}

.workflow-timeline {
	position: relative;
	max-width: 760px;
	margin-left: auto;
	padding: 0 0 20px;
}

.workflow-timeline::before {
	content: "";
	position: absolute;
	top: 96px;
	left: 50%;
	bottom: 92px;
	width: 2px;
	transform: translateX(-50%);
	background: linear-gradient( to bottom, rgba(131, 68, 183, 0), rgba(131, 68, 183, .55), rgba(131, 68, 183, 0));
}

.workflow-client {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 18px;
	width: max-content;
	margin: 0 auto 34px;
	padding: 14px 22px 14px 14px;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 18px 60px rgba(16, 24, 40, .10);
}

.workflow-avatar {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(131, 68, 183, .22);
}

.workflow-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.workflow-client h3,
.workflow-node h3,
.workflow-business h3 {
	margin: 0 0 4px;
	color: #070b24;
	font-size: 18px;
	font-weight: 850;
	text-transform: uppercase;
}

.workflow-client p,
.workflow-node p,
.workflow-business p {
	margin: 0;
	color: #34384b;
	font-size: 14px;
	line-height: 1.45;
}

.workflow-card {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 170px 1fr;
	align-items: center;
	gap: 24px;
	margin: 0 auto 34px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .86);
	border: 1px solid rgba(16, 24, 40, .08);
	box-shadow: 0 24px 70px rgba(16, 24, 40, .10);
	overflow: hidden;
	backdrop-filter: blur(12px);
}

.workflow-card-visual {
	min-height: 122px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(131, 68, 183, .12), rgba(110, 99, 255, .04));
}

.workflow-visual-icon {
	width: 82px;
	height: 82px;
	border-radius: 24px;
	display: grid;
	place-items: center;
	color: var(--color-primary);
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 20px 50px rgba(131, 68, 183, .22), inset 0 0 0 1px rgba(131, 68, 183, .12);
	font-size: 42px;
	font-weight: 850;
}

.workflow-visual-panel {
	width: 100px;
	height: 72px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(238, 235, 255, .95));
	box-shadow: 0 20px 50px rgba(131, 68, 183, .22), inset 0 0 0 1px rgba(131, 68, 183, .12);
	position: relative;
}

.workflow-visual-panel::before,
.workflow-visual-panel::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	height: 5px;
	border-radius: 999px;
	background: var(--color-primary-light);
}

.workflow-visual-panel::before {
	top: 20px;
}

.workflow-visual-panel::after {
	top: 38px;
	width: 44px;
	right: auto;
}

.workflow-card-content {
	padding: 24px 24px 8px 0;
}

.workflow-card-content h3 {
	margin: 0 0 8px;
	color: var(--color-primary);
	font-size: 22px;
	font-weight: 850;
}

.workflow-card-content p {
	margin: 0;
	color: #34384b;
	font-size: 15px;
	line-height: 1.5;
}

.workflow-tools {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	border-top: 1px solid rgba(16, 24, 40, .08);
	background: rgba(255, 255, 255, .76);
}

.workflow-tools span {
	min-height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 10px;
	text-align: center;
	color: #34384b;
	font-size: 12px;
	font-weight: 700;
	border-right: 1px solid rgba(16, 24, 40, .07);
}

.workflow-tools span:last-child {
	border-right: none;
	color: var(--color-primary);
}

.workflow-node {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 500px;
	margin: 0 auto 34px;
	padding: 20px 26px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .90);
	border: 1px solid rgba(131, 68, 183, .12);
	box-shadow: 0 20px 60px rgba(131, 68, 183, .18);
}

.workflow-node-icon,
.workflow-business-icon {
	width: 74px;
	height: 74px;
	flex: 0 0 74px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--color-primary);
	background: #ffffff;
	box-shadow: 0 0 0 12px rgba(131, 68, 183, .08), 0 18px 50px rgba(131, 68, 183, .26);
	font-size: 34px;
}

.workflow-business {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 74px 1fr 220px;
	align-items: center;
	gap: 20px;
	max-width: 650px;
	margin: 0 auto;
	padding: 24px;
	border-radius: 24px;
	background: rgba(255, 255, 255, .90);
	border: 1px solid rgba(16, 24, 40, .08);
	box-shadow: 0 24px 70px rgba(16, 24, 40, .10);
}

.workflow-business strong {
	display: block;
	color: var(--color-primary);
	font-weight: 850;
}

.workflow-business img {
	width: 100%;
	max-width: 220px;
	display: block;
}

/* WORKFLOW RESPONSIVE */

@media (max-width: 980px) {
	.workflow-section {
		padding: 90px 0;
	}
	.workflow-container {
		grid-template-columns: 1fr;
		gap: 56px;
	}
	.workflow-copy {
		position: relative;
		top: auto;
		max-width: 680px;
	}
	.workflow-timeline {
		margin: 0;
		max-width: 100%;
	}
	.workflow-card {
		grid-template-columns: 140px 1fr;
	}
	.workflow-tools {
		grid-template-columns: repeat(3, 1fr);
	}
	.workflow-tools span {
		border-bottom: 1px solid rgba(16, 24, 40, .07);
	}
	.workflow-business {
		grid-template-columns: 74px 1fr;
	}
	.workflow-business img {
		grid-column: 1 / -1;
		max-width: 320px;
		margin: 0 auto;
	}
}

@media (max-width: 620px) {
	.workflow-section {
		padding: 70px 0;
	}
	.workflow-copy h2 {
		font-size: clamp(30px, 10vw, 42px);
	}
	.workflow-card {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.workflow-card-visual {
		min-height: 150px;
	}
	.workflow-card-content {
		padding: 22px 22px 12px;
	}
	.workflow-tools {
		grid-template-columns: repeat(2, 1fr);
	}
	.workflow-client,
	.workflow-node,
	.workflow-business {
		width: 100%;
		border-radius: 24px;
	}
	.workflow-client {
		align-items: flex-start;
	}
	.workflow-node {
		align-items: flex-start;
	}
	.workflow-business {
		grid-template-columns: 1fr;
	}
	.workflow-business-icon {
		margin-bottom: 4px;
	}
}

/* CONTACT SECTION */

.contact-section {
	position: relative;
	padding: 60px 0;
	background: linear-gradient( 90deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .35) 40%, rgba(255, 255, 255, .90) 70%, #ffffff 100%), url("/assets/contact-background.webp") left bottom / cover no-repeat;
	overflow: hidden;
}

.contact-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, .40);
	pointer-events: none;
	z-index: 1;
}

.contact-container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 560px;
	gap: 80px;
}

.contact-content .section-eyebrow {
	color: var(--color-primary);
}

.contact-content h2 {
	margin: 0 0 26px;
	color: #070b24;
	font-size: clamp(34px, 4vw, 60px);
	line-height: 1.05;
	letter-spacing: -0.05em;
	font-weight: 850;
}

.contact-content p {
	max-width: 620px;
	margin: 0;
	color: #34384b;
	font-size: 20px;
	line-height: 1.7;
	font-weight: 500;
}

.contact-visual {
	width: 100%;
	max-width: 620px;
	margin-top: 38px;
	display: block;
}

.contact-form {
	padding: 34px;
	border-radius: 26px;
	background: rgba(255, 255, 255, .88);
	border: 1px solid rgba(16, 24, 40, .08);
	box-shadow: 0 28px 90px rgba(16, 24, 40, .10);
	backdrop-filter: blur(18px);
}

.form-field {
	min-height: 76px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 18px;
	margin-bottom: 18px;
	padding: 0 22px;
	border-radius: 14px;
	border: 1px solid rgba(131, 68, 183, .16);
	background: rgba(255, 255, 255, .72);
}

.form-field span {
	flex-basis: 100%;
	color: #c0392b;
	font-size: 12px;
	line-height: 1;
	padding-bottom: 8px;
}

.form-field span:empty {
	display: none;
}

.form-field input,
.form-field select,
.form-field textarea {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #070b24;
	font: inherit;
	font-size: 17px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: rgba(52, 56, 75, .62);
}

.form-field.textarea {
	min-height: 156px;
	align-items: flex-start;
	padding-top: 24px;
}

.form-field textarea {
	min-height: 110px;
	resize: vertical;
}

.contact-submit {
	width: 100%;
	min-height: 72px;
	margin-top: 8px;
	border: 0;
	border-radius: 14px;
	cursor: pointer;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--color-primary), #5425e9);
	box-shadow: 0 18px 44px rgba(84, 37, 233, .28);
}

.contact-submit span {
	margin-left: 18px;
}

.contact-note {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-top: 24px;
	color: rgba(52, 56, 75, .72);
}

.contact-note span {
	color: var(--color-primary);
	font-size: 24px;
}

.contact-note p {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

/* RESPONSIVE CONTACT */

@media (max-width: 980px) {
	.contact-section {
		padding: 90px 0;
	}
	.contact-container {
		grid-template-columns: 1fr;
		gap: 54px;
	}
	.contact-form {
		max-width: 640px;
		width: 100%;
	}
}

@media (max-width: 520px) {
	.contact-section {
		padding: 70px 0;
	}
	.contact-content h2 {
		font-size: clamp(32px, 10vw, 44px);
	}
	.contact-content p {
		font-size: 17px;
	}
	.contact-form {
		padding: 22px;
		border-radius: 22px;
	}
	.form-field {
		min-height: 64px;
		padding: 0 16px;
	}
	.contact-submit {
		min-height: 64px;
		font-size: 17px;
	}
}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
	padding: 80px 0 32px;
	background: #ffffff;
	border-top: 1px solid rgba(16, 24, 40, .06);
}

.footer-container {
	display: grid;
	gap: 30px;
}

/* ==========================================================
   MAIN
========================================================== */

.footer-main {
	display: grid;
	grid-template-columns: 1.3fr 1.4fr 0.9fr 0.7fr;
	gap: 50px;
	align-items: start;
}

/* ==========================================================
   BRAND
========================================================== */

.footer-brand img {
	width: 200px;
	display: block;
}

.footer-brand p {
	margin: 0;
	color: #5d6273;
	font-size: 15px;
	font-weight: 600;
}

.footer-brand strong {
	display: block;
	margin-bottom: 30px;
	color: #34384b;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -.04em;
}

.footer-brand span {
	display: block;
	color: #7a7f90;
	font-size: 14px;
	line-height: 1.6;
}

/* ==========================================================
   TITLES
========================================================== */

.footer-main h4 {
	margin: 0 0 18px;
	color: #070b24;
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .12em;
}

/* ==========================================================
   SOLUTIONS
========================================================== */

.footer-solution {
	margin-bottom: 18px;
}

.footer-solution strong {
	display: block;
	margin-bottom: 6px;
	color: #070b24;
	font-size: 15px;
	font-weight: 800;
}

.footer-solution p {
	margin: 0;
	color: #6b7080;
	font-size: 13px;
	line-height: 1.55;
}

/* ==========================================================
   NAVIGATION
========================================================== */

.footer-onepage a {
	display: block;
	margin-bottom: 12px;
	text-decoration: none;
	color: #5d6273;
	font-size: 14px;
	font-weight: 600;
	transition: .25s ease;
}

.footer-onepage a:hover {
	color: var(--color-primary);
}

/* ==========================================================
   SOCIAL
========================================================== */

.social-links {
	display: flex;
	gap: 12px;
}

.social-links a {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	color: #fff;
	background: linear-gradient( 135deg, var(--color-primary), var(--color-primary-light));
	box-shadow: 0 14px 34px rgba(131, 68, 183, .20);
}

.social-links a:hover {
	transform: translateY(-2px);
}

.social-links button {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	font-size: inherit;
	color: #fff;
	background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
	box-shadow: 0 14px 34px rgba(131, 68, 183, .20);
}

.social-links button:hover {
	transform: translateY(-2px);
}

/* ==========================================================
   INFRA
========================================================== */

.footer-infra {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 30px;
	border-top: 1px solid rgba(16, 24, 40, .08);
}

.footer-infra span {
	color: #7a7f90;
	font-size: 24px;
	font-weight: 600;
}

.infra-logos {
	display: flex;
	align-items: center;
	gap: 10px;
}

.infra-logos img {
	height: 60px;
	width: auto;
	opacity: .70;
	filter: grayscale(100%);
}

/* ==========================================================
   BOTTOM
========================================================== */

.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(16, 24, 40, .08);
}

.footer-bottom p {
	width: 80%;
	margin: 0 0 18px;
	color: #7a7f90;
	font-size: 11px;
	line-height: 1.2;
}

.footer-legal {
	display: flex;
	gap: 18px;
}

.footer-legal a {
	color: #6b7080;
	font-size: 11px;
	text-decoration: none;
	font-weight: 600;
}

.footer-legal a:hover {
	color: var(--color-primary);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 980px) {
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.footer-infra {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 520px) {
	.footer-main {
		grid-template-columns: 1fr;
	}
	.footer-brand img {
		width: 160px;
	}
	.footer-brand strong {
		font-size: 22px;
	}
	.infra-logos {
		flex-wrap: wrap;
		gap: 20px;
	}
	.footer-legal {
		flex-direction: column;
		gap: 10px;
	}
}