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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #3D1F5C;
	background-color: #ffffff;
	padding-top: 80px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgb(247 247 247);
	padding: 18px 0 11px;
	border-bottom: 1px solid #e8d7f545;
	backdrop-filter: blur(10px);
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(94, 42, 132, 0.08);
}

header.scrolled {
	box-shadow: 0 4px 20px rgba(94, 42, 132, 0.12);
}

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

.logo {
	display: inline-block;
	width: 155px;
}

.logo img {
	width: 100%;
	height: 100%;
}

.hero {
	padding: 80px 0 100px;
	background: linear-gradient(135deg, #faf7fc 0%, #ffffff 50%, #edfaf8 100%);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(94, 42, 132, 0.08) 0%, transparent 70%);
	border-radius: 50%;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgb(59 251 229 / 12%) 0%, transparent 70%);
	border-radius: 50%;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 46px;
	font-weight: 800;
	color: #3d205c;
	margin-bottom: 35px;
	line-height: 1.35;
	letter-spacing: -0.02em;
	background: linear-gradient(90deg, #522e7e 0%, #6d02b9 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.gradient-text {
	background: linear-gradient(90deg, #14B8A6 0%, #0f9a8b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
	position: relative;
}

@supports not (background-clip: text) {
	.gradient-text {
		color: #0f9a8b;
		-webkit-text-fill-color: #0f9a8b;
	}
}

.highlight-gold {
	color: #FBB03B;
	font-weight: 800;
}
h2 {
	font-size: 36px;
	font-weight: 700;
	color: #5f1a98;
	margin-bottom: 5px;
	line-height: 1.3;
	letter-spacing: -0.01em;
	position: relative;
	display: inline-block;
	width: 100%;
	text-align: center;
}

/* h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	width: 90px;
	height: 4px;
	background: linear-gradient(90deg, #14B8A6 0%, #13d5c0 100%);
	border-radius: 2px;
	margin: auto;
} */

h3 {
	font-size: 24px;
	font-weight: 600;
	color: #000000;
	margin-top: 48px;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

p {
	font-size: 18px;
	margin-bottom: 20px;
	color: #4a5568;
	line-height: 1.8;
}

.tagline {
	font-size: 18px;
	color: #4a5568;
	margin-bottom: 35px;
	font-weight: 400;
	line-height: 1.7;
	padding: 0 5rem;
}

.primary-text {
	font-size: 17px;
	color: #4a5568;
	line-height: 1.8;
	background-color: #ffffff;
	padding: 24px 10px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(94, 42, 132, 0.1);
	display: inline-block;
	border-left: 2px solid #14B8A6;
	border-right: 2px solid #04a593;
	max-width: 42rem;
}

section {
	padding: 80px 0;
}

section:nth-child(even) {
	background-color: #FAFAFA;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin: 32px 0;
}

ul {
	list-style: none;
	margin: 32px 0;
}

ul li {
	padding: 24px 28px 24px 56px;
	margin-bottom: 16px;
	position: relative;
	font-size: 17px;
	color: #4a5568;
	line-height: 1.8;
	background-color: #ffffff;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(94, 42, 132, 0.08);
	border-left: 3px solid transparent;
}

ul li:hover {
	transform: translateX(4px);
	box-shadow: 0 4px 16px rgba(94, 42, 132, 0.15);
	border-left-color: #14B8A6;
}

ul li::before {
	content: "→";
	position: absolute;
	left: 24px;
	top: 24px;
	color: #14B8A6;
	font-size: 20px;
	font-weight: 700;
}

ul li strong {
	color: #000000;
	font-weight: 600;
	font-size: 18px;
	display: block;
	margin-bottom: 4px;
}

a {
	color: #8a5ec4;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

a:hover {
	color: #904bff;
}

.use-case-card:first-of-type{
	margin-top: 30px;
}

.use-case-card {
	background-color: #ffffff;
	padding: 32px;
	border-radius: 16px;
	margin-bottom: 32px;
	box-shadow: 0 4px 16px rgba(94, 42, 132, 0.1);
	transition: all 0.3s ease;
	border-left: 4px solid #14B8A6;
	position: relative;
	overflow: hidden;
}

.use-case-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, rgba(251, 176, 59, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(30%, -30%);
}

.use-case-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(94, 42, 132, 0.18);
	border-left-color: #5E2A84;
}

.use-case-card h3 {
	margin-top: 0;
	color: #000000;
}

.steps {
	counter-reset: step-counter;
}

.steps li {
	counter-increment: step-counter;
	padding-left: 85px;
}

.steps li::before {
	content: counter(step-counter);
	left: 24px;
	font-weight: 700;
	color: #ffffff;
	font-size: 18px;
	background: linear-gradient(135deg, #11b39f 0%, #119d8c 100%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 42px;
	transform: translateY(-50%);
	border: 3px solid #119b8b;
}

.faq-section {
	background: linear-gradient(135deg, #FAF7FC 0%, #F4EDFA 100%);
	padding: 80px 0;
}

.faq-item:first-of-type{
	margin-top: 30px;
}

.faq-item {
	background-color: #ffffff;
	padding: 32px;
	margin-bottom: 20px;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(94, 42, 132, 0.1);
	transition: all 0.3s ease;
	border-left: 4px solid #5E2A84;
}

.faq-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(94, 42, 132, 0.15);
	border-left-color: #14B8A6;
}

.faq-question {
	font-size: 20px;
	font-weight: 600;
	color: #000000;
	margin-bottom: 12px;
}

.faq-answer {
	font-size: 17px;
	color: #4a5568;
	line-height: 1.8;
}

.section-intro {
	max-width: 800px;
	margin-bottom: 48px;
	font-size: 19px;
	color: #6B3896;
	line-height: 1.7;
}

.accent-bar {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #5E2A84 0%, #FBB03B 100%);
	margin: 16px 0 32px 0;
	border-radius: 2px;
}

strong {
	color: #000000;
	font-weight: 600;
}

section:nth-child(even):not(.faq-section) {
	background-color: #FAFAFA;
}

.footer {
    padding: 30px 0px;
    text-align: center;
}

.footer-links {
    color: #A0AEC0;
    margin-bottom: 5px;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: #00A3E0;
}

.footer-copyright {
    color: #718096;
    font-size: 14px;
}

@media (max-width: 768px) {
	body {
		padding-top: 70px;
	}

	.hero h1,
	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 18px;
		margin-top: 32px;
		line-height: 1.4;
	}

	p,
	.primary-text {
		font-size: 14px;
	}

	.tagline {
		font-size: 15px;
		padding: 0 5px;
		line-height: 1.6;
	}

	ul li {
		font-size: 14px;
		padding: 15px 15px 15px 40px;
	}

	ul li::before {
		left: 10px;
		top: 13px;
	}

	.steps li {
		padding-left: 50px;
	}

	.steps li::before {
		left: 8px;
		font-size: 14px;
		width: 25px;
		height: 25px;
		top: 33px;
	}

	.hero {
		padding: 60px 0 50px;
	}

	section {
		padding: 50px 0 !important;
	}

	.container {
		padding: 0 20px;
	}

	.use-case-card {
		padding: 20px 15px 5px;
	}

	.faq-item {
		padding: 16px;
	}

	.logo  {
		width: 125px;
	}

}

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

	h2 {
		font-size: 24px;
	}

	section {
        padding: 30px 0 !important;
    }
	
	.primary-text {
		padding: 15px 10px;
	}
	
	.faq-question{
		font-size: 16px;
	}
	
	.faq-answer {
		font-size: 14px;
	}
	.footer {
		padding: 30px 10px !important;
	}
}