:root {
	--purple: #6a2cff;
	--blue: #00bfef;
	--dark: #080b3f;
	--text: #69708a;
	--white: #fff;
	--soft: #f5f8ff;
	--shadow: 0 22px 60px rgba(8, 11, 63, .14);
	--radius: 28px
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Poppins, Arial, sans-serif;
	color: var(--dark);
	background: #fff;
	overflow-x: hidden
}

a {
	text-decoration: none;
	color: inherit
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 24px;
	justify-content: space-between;
	padding: 14px 5vw;
	background: rgba(255, 255, 255, .88);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(106, 44, 255, .12)
}

.brand img {
	width: 240px;
	height: 94px;
	object-fit: contain;
	object-position: left center
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	font-weight: 700;
	font-size: 14px
}

.main-nav a {
	transition: .25s
}

.main-nav a:hover {
	color: var(--purple)
}

.header-actions {
	display: flex;
	gap: 10px
}

.btn {
	border: 0;
	border-radius: 999px;
	padding: 13px 22px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: .25s;
	white-space: nowrap
}

.btn-primary {
	color: white;
	background: linear-gradient(135deg, var(--purple), var(--blue));
	box-shadow: 0 12px 26px rgba(106, 44, 255, .24)
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(0, 191, 239, .28)
}

.btn-outline {
	border: 2px solid rgba(106, 44, 255, .2);
	background: #fff;
	color: var(--dark)
}

.btn-light {
	background: #fff;
	color: var(--purple)
}

.btn-large {
	font-size: 16px;
	padding: 16px 28px
}

.menu-toggle {
	display: none;
	background: var(--dark);
	color: #fff;
	border: 0;
	border-radius: 12px;
	font-size: 22px;
	padding: 8px 12px
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 36px;
	align-items: center;
	padding: 64px 5vw 44px;
	min-height: calc(100vh - 92px);
	background: radial-gradient(circle at 5% 0%, rgba(106, 44, 255, .15), transparent 28%), radial-gradient(circle at 95% 15%, rgba(0, 191, 239, .18), transparent 30%), linear-gradient(180deg, #fff, #f7fbff)
}

.hero:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 90px;
	background: linear-gradient(120deg, var(--purple), var(--blue));
	clip-path: polygon(0 58%, 100% 18%, 100% 100%, 0 100%)
}

.hero-copy,
.slider {
	position: relative;
	z-index: 1
}

.eyebrow,
.section-heading span {
	display: inline-block;
	color: var(--purple);
	font-weight: 900;
	letter-spacing: .03em
}

.hero h1 {
	font-size: clamp(38px, 5vw, 72px);
	line-height: 1.03;
	margin: 16px 0;
	color: var(--dark);
	font-weight: 900
}

.hero h1 span {
	background: linear-gradient(135deg, var(--purple), var(--blue));
	-webkit-background-clip: text;
	color: transparent
}

.hero p {
	font-size: 18px;
	line-height: 1.8;
	color: var(--text);
	max-width: 680px
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 30px 0 18px
}

.promo-pill {
	display: inline-block;
	border: 2px dashed rgba(106, 44, 255, .35);
	background: #fff;
	border-radius: 18px;
	padding: 13px 18px;
	color: var(--dark);
	box-shadow: 0 10px 26px rgba(8, 11, 63, .08)
}

.promo-pill strong {
	color: var(--purple);
	font-size: 20px
}

.slider {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	min-height: 480px;
	border: 1px solid rgba(106, 44, 255, .12)
}

.slides {
	height: 100%;
	min-height: 480px;
	position: relative
}

.slide {
	display: none;
	height: 100%;
	min-height: 480px;
	padding: 22px
}

.slide.active {
	display: flex;
	align-items: center;
	justify-content: center
}

.slide img {
	width: 100%;
	height: 440px;
	object-fit: cover;
	object-position: left center;
	border-radius: 22px
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 0;
	background: #fff;
	color: var(--purple);
	font-size: 34px;
	box-shadow: 0 10px 25px rgba(8, 11, 63, .18);
	cursor: pointer
}

.prev {
	left: 16px
}

.next {
	right: 16px
}

.slider-dots {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px
}

.slider-dots button {
	width: 10px;
	height: 10px;
	border: 0;
	border-radius: 50%;
	background: #cfd5ef;
	cursor: pointer
}

.slider-dots button.active {
	background: linear-gradient(135deg, var(--purple), var(--blue));
	width: 28px;
	border-radius: 999px
}

.mock-browser {
	width: 92%;
	background: #f7f9ff;
	border-radius: 26px;
	box-shadow: inset 0 0 0 1px rgba(106, 44, 255, .1);
	overflow: hidden
}

.browser-bar {
	padding: 13px;
	background: #10154d;
	display: flex;
	gap: 8px
}

.browser-bar span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #fff;
	opacity: .7
}

.mock-content {
	display: grid;
	grid-template-columns: 170px 1fr;
	min-height: 360px
}

.mock-content aside {
	background: var(--dark);
	color: #fff;
	padding: 24px
}

.mock-content aside p {
	color: #dce6ff;
	margin: 18px 0 0;
	font-size: 13px
}

.mock-content section {
	padding: 24px
}

.kpis {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px
}

.kpis div {
	background: #fff;
	border-radius: 16px;
	padding: 14px;
	color: var(--text);
	box-shadow: 0 10px 24px rgba(8, 11, 63, .06)
}

.kpis b {
	font-size: 22px;
	color: var(--purple)
}

.chart-line {
	height: 120px;
	margin-top: 24px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(106, 44, 255, .1), rgba(0, 191, 239, .15));
	position: relative
}

.chart-line:after {
	content: "";
	position: absolute;
	inset: 25px;
	background: linear-gradient(145deg, transparent 45%, var(--purple) 46%, var(--blue) 54%, transparent 55%)
}

.alerts {
	display: flex;
	gap: 12px;
	margin-top: 20px
}

.alerts span {
	background: #fff;
	border-radius: 14px;
	padding: 12px;
	font-size: 13px
}

.app-slide {
	gap: 32px;
	background: linear-gradient(135deg, #fff, #f3f8ff)
}

.phone-mock {
	width: 220px;
	min-height: 405px;
	border-radius: 34px;
	background: linear-gradient(180deg, var(--purple), var(--dark));
	color: #fff;
	padding: 24px 18px;
	box-shadow: 0 18px 40px rgba(8, 11, 63, .25)
}

.phone-top {
	width: 70px;
	height: 7px;
	border-radius: 999px;
	background: #fff;
	margin: 0 auto 18px;
	opacity: .8
}

.phone-card {
	display: flex;
	justify-content: space-between;
	background: #fff;
	color: var(--dark);
	padding: 13px;
	border-radius: 14px;
	margin: 10px 0
}

.app-copy {
	max-width: 300px
}

.app-copy h3 {
	font-size: 34px;
	margin: 0 0 10px
}

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

.section-heading h2 {
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.13;
	margin: 10px 0 12px;
	font-weight: 900
}

.section-heading p {
	color: var(--text)
}

section {
	padding: 92px 5vw
}

.main-functions {
	background: #fff
}

.function-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px
}

.function-card {
	background: #fff;
	border: 1px solid rgba(106, 44, 255, .12);
	border-radius: 24px;
	padding: 22px;
	box-shadow: 0 12px 34px rgba(8, 11, 63, .07);
	transition: .25s
}

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

.icon-badge {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	display: grid;
	place-items: center;
	font-size: 28px;
	color: #fff;
	background: linear-gradient(135deg, var(--purple), var(--blue));
	box-shadow: 0 12px 24px rgba(106, 44, 255, .22)
}

.function-card h3 {
	font-size: 18px;
	margin: 18px 0 9px
}

.function-card p,
.feature-card p {
	color: var(--text);
	line-height: 1.65;
	font-size: 14px
}

.features {
	background: linear-gradient(180deg, #f7fbff, #fff)
}

.feature-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px
}

.feature-card {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 22px;
	background: #fff;
	border-radius: 28px;
	padding: 24px;
	box-shadow: 0 14px 42px rgba(8, 11, 63, .08);
	border: 1px solid rgba(0, 191, 239, .12)
}

.feature-visual {
	height: 100px;
	border-radius: 24px;
	background: linear-gradient(135deg, var(--purple), var(--blue));
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 46px
}

.feature-card h3 {
	margin: 4px 0 8px
}

.tutorial {
	background: #fff
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px
}

.video-grid iframe {
	width: 100%;
	aspect-ratio: 16/9;
	border: 0;
	border-radius: 24px;
	box-shadow: var(--shadow)
}

.pricing {
	background: linear-gradient(180deg, #f7fbff, #fff)
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px
}

.price-card {
	position: relative;
	border-radius: 30px;
	background: #fff;
	padding: 30px;
	box-shadow: 0 16px 44px rgba(8, 11, 63, .08);
	border: 1px solid rgba(106, 44, 255, .12);
	display: flex;
	flex-direction: column;
	gap: 12px
}

.price-card.featured {
	transform: scale(1.04);
	border: 2px solid var(--purple)
}

.price-card.dark {
	background: linear-gradient(145deg, var(--dark), #151b66);
	color: #fff
}

.price-card h3 {
	font-size: 22px;
	margin: 0
}

.price-card p {
	color: var(--text);
	min-height: 44px
}

.price-card.dark p {
	color: #cfd5ff
}

.price-card strong {
	font-size: 42px;
	line-height: 1;
	font-weight: 900;
	color: var(--purple)
}

.price-card.dark strong {
	color: #fff
}

.price-card span {
	color: var(--text);
	font-weight: 700
}

.price-card.dark span {
	color: #dce6ff
}

.badge {
	position: absolute;
	top: -15px;
	right: 25px;
	background: linear-gradient(135deg, var(--purple), var(--blue));
	color: #fff;
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 900
}

.price-notes {
	margin: 36px auto 0;
	max-width: 920px;
	background: #fff;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 12px 30px rgba(8, 11, 63, .06);
	color: var(--text)
}

.price-notes p {
	margin: 6px 0
}

.contact {
	background: radial-gradient(circle at 15% 20%, rgba(106, 44, 255, .28), transparent 30%), linear-gradient(135deg, var(--dark), #0a1469)
}

.contact-card {
	max-width: 1050px;
	margin: auto;
	background: #fff;
	border-radius: 34px;
	padding: 48px;
	box-shadow: var(--shadow);
	text-align: center
}

.contact-card h2 {
	font-size: 42px;
	margin: 0 0 10px
}

.contact-card>p {
	color: var(--text)
}

.contact-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 30px 0
}

.contact-items div {
	background: #f7fbff;
	border-radius: 20px;
	padding: 20px
}

.contact-items b {
	display: block
}

.contact-items span,
.contact-items a {
	color: var(--purple);
	font-weight: 800
}

footer {
	padding: 35px 5vw;
	text-align: center;
	background: #05072b;
	color: #dce6ff
}

footer img {
	width: 230px;
	height: 70px;
	object-fit: contain;
	filter: brightness(0) invert(1)
}

.modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2000
}

.modal.show {
	display: block
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 11, 63, .72);
	backdrop-filter: blur(8px)
}

.modal-panel {
	position: relative;
	width: min(940px, 92vw);
	max-height: 90vh;
	overflow: auto;
	margin: 5vh auto;
	background: #fff;
	border-radius: 32px;
	padding: 34px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .28)
}

.modal-close {
	position: absolute;
	right: 22px;
	top: 18px;
	border: 0;
	background: #f0f3ff;
	color: var(--dark);
	font-size: 30px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer
}

.modal-panel h2 {
	margin: 0 50px 24px 0;
	font-size: 30px
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px
}

label {
	font-weight: 800;
	font-size: 14px;
	color: var(--dark)
}

input,
select {
	width: 100%;
	margin-top: 8px;
	border: 2px solid #e3e8f7;
	border-radius: 16px;
	padding: 14px 15px;
	font-family: inherit;
	font-size: 15px;
	outline: 0;
	transition: .2s
}

input:focus,
select:focus {
	border-color: var(--purple);
	box-shadow: 0 0 0 4px rgba(106, 44, 255, .1)
}

label.full {
	grid-column: 1/-1
}

.field-error {
	border-color: #ff3d6e!important;
	background: #fff7fa
}

.form-message {
	margin: 16px 0;
	font-weight: 800
}

.form-message.error {
	color: #d92355
}

.form-message.success {
	color: #0a9f72
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: .7s
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0)
}

@media(max-width:1100px) {
	.hero {
		grid-template-columns: 1fr
	}
	.function-grid,
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr)
	}
	.video-grid {
		grid-template-columns: 1fr
	}
	.feature-list {
		grid-template-columns: 1fr
	}
}

@media(max-width:820px) {
	.site-header {
		flex-wrap: wrap
	}
	.brand img {
		width: 180px;
		height: 58px
	}
	.menu-toggle {
		display: block
	}
	.main-nav {
		display: none;
		flex-basis: 100%;
		flex-direction: column;
		align-items: flex-start;
		background: #fff;
		border-radius: 20px;
		padding: 18px
	}
	.main-nav.open {
		display: flex
	}
	.header-actions {
		margin-left: auto
	}
	.hero {
		padding-top: 38px
	}
	.slider,
	.slides,
	.slide {
		min-height: 390px
	}
	.slide img {
		height: 340px
	}
	.mock-content {
		grid-template-columns: 1fr
	}
	.mock-content aside {
		display: none
	}
	.kpis {
		grid-template-columns: repeat(2, 1fr)
	}
	.function-grid,
	.pricing-grid,
	.contact-items,
	.form-grid {
		grid-template-columns: 1fr
	}
	.feature-card {
		grid-template-columns: 1fr
	}
	.price-card.featured {
		transform: none
	}
	.contact-card {
		padding: 32px 22px
	}
	.contact-card h2 {
		font-size: 32px
	}
	.modal-panel {
		padding: 26px 18px
	}
	.modal-panel h2 {
		font-size: 24px
	}
	.hero:after {
		height: 55px
	}
}

@media(max-width:520px) {
	.header-actions {
		width: 100%;
		justify-content: space-between
	}
	.header-actions .btn {
		flex: 1
	}
	.hero h1 {
		font-size: 38px
	}
	.hero p {
		font-size: 16px
	}
	.app-slide {
		flex-direction: column
	}
	.phone-mock {
		width: 100%
	}
	.slider-btn {
		display: none
	}
	section {
		padding: 68px 5vw
	}
	.function-card,
	.feature-card,
	.price-card {
		padding: 20px
	}
}