@charset "utf-8";

/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #faf7fc;
	color: #1c2033;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: min(1450px, 92%);
	margin: auto;
}

/* BACKGROUND */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(255, 80, 180, .10), transparent 30%),
		radial-gradient(circle at bottom left, rgba(160, 90, 255, .10), transparent 30%);
	pointer-events: none;
	z-index: -1;
}

/* NAV */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 92px;
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, .82);
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	z-index: 999;
}

.nav-inner {
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 54px;
	font-weight: 800;
	text-decoration: none;
	color: #111;
}

.logo span {
	color: #e64ab7;
}

.nav-links {
	display: flex;
	gap: 36px;
}

.nav-links a {
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	color: #222;
	position: relative;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff4ca7, #b03fe1);
	transition: .35s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-btn {
	height: 52px;
	padding: 0 24px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #ff4ca7, #b03fe1);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 12px 30px rgba(255, 80, 180, .20);
}

/* HERO */
.hero {
	padding-top: 160px;
	padding-bottom: 120px;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 18px;
	background: #fff;
	border: 2px solid #efb4dd;
	font-size: 14px;
	font-weight: 600;
	color: #e648b7;
	margin-bottom: 34px;
}

.hero h1 {
	font-size: 88px;
	line-height: 1.03;
	letter-spacing: -3px;
	margin-bottom: 30px;
}

.hero h1 span {
	background: linear-gradient(135deg, #ff4ca7, #b03fe1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.script-line {
	font-size: 58px;
	font-family: cursive;
	color: #e648b7;
	margin-bottom: 28px;
}

.hero p {
	font-size: 20px;
	line-height: 2;
	color: #666;
	margin-bottom: 22px;
	max-width: 700px;
}

.hero-buttons {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin-top: 42px;
}

.btn {
	height: 66px;
	padding: 0 34px;
	border-radius: 22px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: .35s ease;
}

.btn-primary {
	background: linear-gradient(135deg, #ff4ca7, #b03fe1);
	color: #fff;
	box-shadow: 0 18px 35px rgba(255, 80, 180, .22);
}

.btn-secondary {
	background: #fff;
	border: 2px solid #e8d5ea;
	color: #444;
}

.btn:hover {
	transform: translateY(-6px);
}

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 42px;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #666;
}

.trust-item i {
	color: #e648b7;
}

/* DASHBOARD */
.hero-visual {
	position: relative;
}

.dashboard-card {
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(14px);
	padding: 32px;
	border-radius: 36px;
	box-shadow: 0 25px 60px rgba(190, 140, 220, .15);
	animation: floatCard 6s ease-in-out infinite;
}

.dashboard-top {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 30px;
}

.metric {
	padding: 18px;
	background: #fff;
	border-radius: 22px;
}

.metric h4 {
	font-size: 14px;
	font-weight: 500;
	color: #777;
	margin-bottom: 10px;
}

.metric strong {
	font-size: 36px;
}

.metric span {
	display: block;
	margin-top: 8px;
	color: #ff4ca7;
	font-size: 13px;
}

.chart {
	position: relative;
	height: 260px;
	border-radius: 26px;
	background: linear-gradient(180deg, #fff, #fff7fc);
	overflow: hidden;
}

.chart svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.chart path {
	stroke-dasharray: 1800;
	stroke-dashoffset: 1800;
	animation: lineAnim 5s ease forwards infinite;
}

.heatmap-box {
	margin-top: 28px;
	background: #fff;
	border-radius: 28px;
	padding: 22px;
	position: relative;
	overflow: hidden;
}

.heatmap-header {
	display: flex;
	gap: 26px;
	margin-bottom: 24px;
	font-size: 15px;
}

.heatmap-header span:first-child {
	color: #ff4ca7;
	font-weight: 600;
	position: relative;
}

.heatmap-preview {
	height: 340px;
	border-radius: 22px;
	background: #f5f1f9;
	position: relative;
	overflow: hidden;
}

.heatspot {
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 0, 0, .8), rgba(255, 255, 0, .6), rgba(0, 140, 255, .1), transparent 70%);
	filter: blur(4px);
	animation: pulse 4s ease infinite;
}


.cta {
	padding-bottom: 0 !important;
}

/* PROBLEM */
.problem {
	padding: 0 0 40px;
}

.section-title {
	text-align: center;
	margin-bottom: 70px;
}

.section-title h2 {
	font-size: 68px;
	line-height: 1.1;
	margin-bottom: 20px;
}

.section-title span {
	background: linear-gradient(135deg, #ff4ca7, #b03fe1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-title p {
	font-size: 19px;
	color: #777;
	max-width: 800px;
	margin: auto;
	line-height: 1.9;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.problem-card {
	background: #fff;
	border-radius: 34px;
	padding: 40px;
	box-shadow: 0 18px 40px rgba(190, 140, 220, .08);
	transition: .35s ease;
}

.problem-card:hover {
	transform: translateY(-10px);
}

.problem-card i {
	font-size: 42px;
	color: #e648b7;
	margin-bottom: 24px;
}

.problem-card h3 {
	font-size: 30px;
	margin-bottom: 18px;
	line-height: 1.3;
}

.problem-card p {
	font-size: 16px;
	line-height: 2;
	color: #666;
}

/* ANALYSIS */
.analysis {
	padding: 100px 0;
}

.analysis-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

.analysis-card {
	background: #fff;
	border-radius: 28px;
	padding: 30px 22px;
	text-align: center;
	box-shadow: 0 14px 35px rgba(190, 140, 220, .08);
	transition: .35s ease;
}

.analysis-card:hover {
	transform: translateY(-8px);
}

.analysis-card i {
	font-size: 34px;
	margin-bottom: 18px;
	color: #e648b7;
}

.analysis-card h4 {
	font-size: 20px;
	margin-bottom: 14px;
}

.analysis-card p {
	font-size: 14px;
	line-height: 1.9;
	color: #666;
}

/* TIMELINE */
.timeline {
	padding: 120px 0;
}

.timeline-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}

.timeline-row::before {
	content: "";
	position: absolute;
	left: 10%;
	top: 52px;
	width: 80%;
	height: 2px;
	background: linear-gradient(90deg, #ff4ca7, #b03fe1);
	opacity: .25;
}

.step {
	text-align: center;
	position: relative;
	z-index: 3;
}

.step-number {
	width: 95px;
	height: 95px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #f0d7e8;
	margin: auto auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	font-weight: 700;
	color: #e648b7;
	box-shadow: 0 12px 30px rgba(190, 140, 220, .10);
}

.step h3 {
	font-size: 26px;
	margin-bottom: 16px;
}

.step p {
	font-size: 15px;
	line-height: 1.9;
	color: #666;
}

/* TESTIMONIAL */
.testimonial {
	padding: 60px 0 120px;
}

.testimonial-box {
	position: relative;
	overflow: hidden;
	border-radius: 40px;
	padding: 60px;
	background: linear-gradient(135deg, #ff4ca7, #c63fd8, #7d43ff);
	background-size: 300% 300%;
	animation: gradientMove 10s ease infinite;
	color: #fff;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 50px;
	align-items: center;
	box-shadow: 0 30px 70px rgba(180, 80, 220, .20);
}

.testimonial-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, rgba(255, 255, 255, .10) 1px, transparent 1px);
	background-size: 22px 22px;
	opacity: .25;
}

.testimonial-content {
	position: relative;
	z-index: 3;
}

.testimonial-content h2 {
	font-size: 62px;
	margin-bottom: 24px;
	line-height: 1.1;
}

.testimonial-content p {
	font-size: 20px;
	line-height: 2;
	opacity: .92;
	margin-bottom: 34px;
}

.testimonial-buttons {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.testimonial-card {
	position: relative;
	z-index: 3;
	background: rgba(255, 255, 255, .14);
	backdrop-filter: blur(10px);
	padding: 34px;
	border-radius: 28px;
}

.testimonial-card h4 {
	font-size: 26px;
	margin-bottom: 18px;
}

.testimonial-card p {
	line-height: 1.9;
	opacity: .95;
	margin-bottom: 20px;
}

/* REVEAL */
.reveal {
	opacity: 0;
	transform: translateY(70px);
	transition: 1s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
	top: -120px;
}

/* ANIMATIONS */
@keyframes floatCard {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-12px);
	}

	100% {
		transform: translateY(0px);
	}
}

@keyframes pulse {
	0% {
		transform: scale(.9);
		opacity: .7;
	}

	50% {
		transform: scale(1.05);
		opacity: 1;
	}

	100% {
		transform: scale(.9);
		opacity: .7;
	}
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes lineAnim {
	0% {
		stroke-dashoffset: 1800;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

/* RESPONSIVE */
@media(max-width:1400px) {
	.analysis-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media(max-width:1200px) {

	.hero-grid,
	.testimonial-box {
		grid-template-columns: 1fr;
	}

	.problem-grid,
	.stats-row,
	.timeline-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero h1 {
		font-size: 70px;
	}
}

@media(max-width:800px) {
	.nav-links {
		display: none;
	}

	.hero h1,
	.section-title h2,
	.testimonial-content h2 {
		font-size: 50px;
	}

	.script-line {
		font-size: 42px;
	}

	.dashboard-top,
	.problem-grid,
	.analysis-grid,
	.stats-row,
	.timeline-row {
		grid-template-columns: 1fr;
	}

	.hero-buttons,
	.testimonial-buttons {
		flex-direction: column;
	}

	.btn {
		justify-content: center;
	}
}