:root {
    --primary: #7aa2ff;
    --primary-dark: #4361ee;
    --secondary: #b983ff;
    --accent: #f72585;
    --dark: #23272f;
    --dark-head: #191b1f;
    --light: #f8f9fa;
	--white: #ffffff;
    --gray: #b0b8c1;
    --success: #4cc9f0;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.45);
    --border-radius: 12px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.6;
	color: var(--light);
	background-color: var(--dark);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 100px 0;
}

.text-center {
	text-align: center;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.25rem;
	color: var(--gray);
	max-width: 700px;
	margin: 0 auto 60px;
}

.hero {
	padding: 180px 0 100px;
	position: relative;
	overflow: hidden;
}

.hero-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.hero-text {
	flex: 1;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	line-height: 1.2;
}

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

.hero p {
	font-size: 1.25rem;
	color: var(--gray);
	margin-bottom: 40px;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	margin-top: 30px;
}

.hero-image {
	flex: 1;
	position: relative;
}

.hero-img-container {
	position: relative;
	border-radius: var(--border-radius);
    overflow: visible !important;
	box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
}

.hero-img {
	border-radius: var(--border-radius);
	width: 100%;
	height: auto;
	display: block;
    z-index: 10;
}

.hero-highlight {
	position: absolute;
	background: var(--dark);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 20px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease-in-out;
	gap: 15px;
}

.hero-highlight:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.hero-highlight > div:nth-child(2) {
    text-align: left;
    width: 100%;
}

.hero p {
	margin-bottom: 0px;
}

.highlight-1 {
	top: -20px;
	right: -75px;
	max-width: 350px;
}

.highlight-2 {
	bottom: 30px;
	left: -75px;
	max-width: 280px;
}

.highlight-icon {
	font-size: 2rem;
	color: var(--accent);
	flex-shrink: 0;
}

.features {
	background: var(--dark);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.feature-card {
	background: var(--dark);
	border-radius: var(--border-radius);
	padding: 40px 30px;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow);
	border-top: 4px solid var(--primary);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
}

.feature-icon {
	font-size: 3rem;
	color: var(--primary);
	margin-bottom: 20px;
}

.feature-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.steps {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	position: relative;
}

.steps:before {
	content: '';
    border-radius: 2.5px;
	position: absolute;
	top: 32.5px;
	left: 50px;
	right: 50px;
	height: 5px;
	background: var(--primary);
	z-index: 1;
}

.step {
	position: relative;
	z-index: 2;
	text-align: center;
	flex: 1;
	padding: 0 20px;
}

.step-number {
	width: 70px;
	height: 70px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 auto 30px;
}

.step-title {
	font-size: 1.4rem;
	margin-bottom: 15px;
}

.cta {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: var(--white);
	text-align: center;
	padding: 100px 0;
}

.cta h2 {
	font-size: 3rem;
	margin-bottom: 20px;
}

.cta p {
	font-size: 1.3rem;
	max-width: 700px;
	margin: 0 auto 40px;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-light {
	background: var(--dark);
	color: var(--primary);
}

.btn-light:hover {
	background: rgba(255, 255, 255, 0.9);
}

footer {
	background: var(--dark);
	padding: 80px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
}

.footer-col h3 {
	font-size: 1.5rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.footer-col h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--accent);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #aaa;
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--white);
	padding-left: 5px;
}

.footer-links.lr a {
	color: var(--white);
}

.footer-links.lr a:hover {
	color: var(--white);
	padding-left: 0;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border-radius: 50%;
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--primary);
	transform: translateY(-5px);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #aaa;
	font-size: 0.9rem;
}

@media (max-width: 1057px) {
	.hero p {
		font-size: 1rem;
		color: var(--gray);
		max-width: 600px;
	}

	.highlight-1 {
		max-width: 240px;
		right: -20px;
	}

	.highlight-2 {
		left: -75px;
    	max-width: 230px;
	}
}

@media (max-width: 877px) {
	.hero-content {
		flex-direction: column;
		text-align: center;
	}

	.hero-text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.steps {
		flex-direction: column;
		gap: 60px;
	}

	.steps:before {
		display: none;
	}

	.hero h1 {
		font-size: 2.8rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
        width: 75%;
	}
    
	.hero-buttons a {
        width: 100%;
    }

    .hero-image {
        width: 100%;
    }

    .hero-img-container {
        position: relative;
        border-radius: var(--border-radius);
        overflow: visible !important;
        box-shadow: none;
        width: 100%;
    }

	.highlight-1,
	.highlight-2 {
        box-shadow: none;
		position: relative;
		top: 0;
		right: 0;
		left: 0;
        border: 1px solid var(--primary);
		margin: 20px auto;
		max-width: 100%;
        width: 100%;
	}

    .hero-img {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

	.section-title {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2.2rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.step {
		padding: 0 10px;
	}
}