:root {
	--color-primary: rgb(106, 101, 255);
	--color-text: rgb(34, 40, 61);
	--color-text-light: rgb(85, 85, 85);
	--color-white: rgb(255, 255, 255);
	--font-primary: "Manrope", sans-serif;
	--font-secondary: "Ubuntu", sans-serif;
	--font-mono: "Martian Mono", monospace;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-primary);
	color: var(--color-text);
	line-height: 1.6;
}

.header {
	background: var(--color-white);
	box-shadow: 1px 2px 4px rgba(2, 5, 211, 0.2);
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	max-width: 130px;
	height: auto;
}

.hero {
	min-height: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.hero h1 {
	font-family: var(--font-secondary);
	font-size: 3.375rem;
	font-weight: bold;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero h2 {
	font-size: 1.5rem;
	color: var(--color-text-light);
	margin-bottom: 2rem;
}

.code-text {
	font-family: var(--font-mono);
	font-size: 1.5rem;
	color: var(--color-primary);
	margin: 1rem 0;
}

.button {
	background: var(--color-primary);
	color: var(--color-white);
	padding: 1rem 2rem;
	border-radius: 14px;
	border: none;
	font-weight: bold;
	font-size: 1.125rem;
	cursor: pointer;
	transition: transform 0.2s;
}

.button:hover {
	transform: translateY(-2px);
}

.features {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, #f5f0ff 0%, #f0f5ff 100%);
}

.features-header {
	text-align: center;
	margin-bottom: 4rem;
}

.features-title {
	font-family: var(--font-secondary);
	font-size: 3.5rem;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.features-subtitle {
	font-size: 1.5rem;
	color: var(--color-text);
	margin: 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.feature-card {
	background: var(--color-white);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-card h3 {
	font-family: var(--font-secondary);
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--color-text);
	margin-bottom: 1.5rem;
}

.feature-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.feature-content p {
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.6;
}

.feature-image {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-top: 1.5rem;
}

.footer {
	background: linear-gradient(to right, rgb(152, 74, 251), rgb(51, 152, 245));
	color: var(--color-white);
	padding: 2rem;
	text-align: center;
}

.footer a {
	color: var(--color-white);
	text-decoration: none;
	margin: 0 1rem;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.features-title {
		font-size: 2.5rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}
}

.cta {
	width: 100%;
	padding: 2rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f5f5f5;
}

.cta-image {
	max-width: 85%;
	border-radius: 20px;
	box-shadow: 2px 2px 4px rgba(2, 5, 211, 0.1);
}

.logos {
	width: 100%;
	height: 135px;
	background-color: #f5f5f5;
	overflow: hidden;
	position: relative;
	margin: 2rem 0;
}

.logos-track {
	position: absolute;
	white-space: nowrap;
	will-change: transform;
	width: 100%;
	height: 100%;
}

.logos-content {
	display: inline-flex;
	animation: scroll 25s linear infinite;
}

.logos-content img {
	height: 135px;
	padding: 0 20px;
	object-fit: contain;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* Pause animation on hover */
.logos-track:hover .logos-content {
	animation-play-state: paused;
}

.offer {
	padding: 6rem 2rem;
	background: var(--color-white);
}

.offer-header {
	text-align: center;
	margin-bottom: 4rem;
}

.offer-title {
	font-family: var(--font-secondary);
	font-size: 3.5rem;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.offer-subtitle {
	font-size: 2.5rem;
	color: var(--color-text);
	margin: 0;
	line-height: 1.4;
}

.offer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.offer-card {
	background: var(--color-white);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(106, 101, 255, 0.1);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.offer-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	padding: 0.75rem;
	border-radius: 12px;
	border: 1px dashed var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.offer-card h3 {
	font-family: var(--font-secondary);
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--color-text);
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.offer-card p {
	color: var(--color-text-light);
	margin: 0;
	line-height: 1.5;
	font-size: 0.95rem;
}

@media (max-width: 1024px) {
	.offer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.offer-grid {
		grid-template-columns: 1fr;
	}
}

.transform-cta {
	background: linear-gradient(135deg, #984afb 0%, #6a65ff 100%);
	padding: 4rem 2rem;
	border-radius: 24px;
	margin: 4rem 2rem;
	max-width: 1200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	color: var(--color-white);
	margin-left: auto;
	margin-right: auto;
}

.transform-content {
	flex: 1;
	padding-left: 2rem;
}

.transform-content h2 {
	font-family: var(--font-secondary);
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.transform-content p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.transform-image {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	padding-right: 2rem;
}

.transform-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.button.glow {
	background: var(--color-white);
	color: var(--color-primary);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.button.glow:hover {
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
	.transform-cta {
		margin: 4rem 1rem;
		padding: 3rem 1.5rem;
	}

	.transform-content {
		padding-left: 0;
	}

	.transform-image {
		padding-right: 0;
	}

	.transform-content h2 {
		font-size: 2rem;
	}

	.transform-content p {
		font-size: 1.1rem;
	}
}

.process {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, #f5f0ff 0%, #f0f5ff 100%);
	display: flex;
	gap: 4rem;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
}

.process-left {
	flex: 1;
	max-width: 500px;
}

.process-right {
	flex: 1;
}

.process-title {
	font-family: var(--font-secondary);
	font-size: 3.5rem;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.process-subtitle {
	font-family: var(--font-secondary);
	font-size: 2.5rem;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.process-description {
	font-size: 1.1rem;
	color: var(--color-text-light);
	line-height: 1.6;
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.process-step {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	background: var(--color-white);
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	margin-top: 4px;
}

.step-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.step-content {
	flex: 1;
}

.step-content h4 {
	font-family: var(--font-secondary);
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--color-text);
	margin-top: 0;
	margin-bottom: 0.75rem;
	display: inline-block;
}

.step-content p {
	color: var(--color-text-light);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 1024px) {
	.process {
		flex-direction: column;
		gap: 3rem;
	}

	.process-left {
		max-width: 100%;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.process {
		padding: 4rem 1rem;
	}

	.process-title {
		font-size: 2.5rem;
	}

	.process-subtitle {
		font-size: 2rem;
	}

	.process-step {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		padding: 1.5rem;
	}

	.step-icon {
		margin-bottom: 0;
	}
}

#animated-text {
	font-family: "Martian Mono", monospace;
	font-size: 1em;
	color: var(--color-primary);
	white-space: nowrap;
	overflow: hidden;
	border-right: 2px solid;
	animation: blink 0.7s step-end infinite;
}

@keyframes blink {
	50% {
		border-color: transparent;
	}
}
