html {
	scroll-snap-type: y mandatory;
}

body {
	font-family: "Geologica", sans-serif;
	background: var(--pikluy-cream);
	color: var(--pikluy-ink);
}

body.has-custom-cursor {
	cursor: none;
}

.cursor {
	display: none;
	width: 12px;
	height: 12px;
	background: var(--pikluy-brand);
	border-radius: 50%;
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, background 0.25s ease;
	mix-blend-mode: multiply;
}

body.has-custom-cursor .cursor {
	display: block;
}

.cursor.big {
	width: 48px;
	height: 48px;
	opacity: 0.16;
}

.grain {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-size: 128px;
}

.ai-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: 64px;
	padding: 0 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(250, 248, 255, 0.85);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--pikluy-border);
}

body.admin-bar .ai-nav {
	top: 32px;
}

.nav-logo {
	display: inline-flex;
	align-items: center;
}

.nav-logo__image {
	height: 30px;
}

.ai-nav__actions {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.nav-phone-desktop {
	display: inline-flex;
	align-items: center;
	color: var(--pikluy-brand);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.nav-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 22px;
	border-radius: 999px;
	background: var(--pikluy-brand);
	color: var(--pikluy-white);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-pill:hover {
	background: var(--pikluy-ink);
	transform: translateY(-1px);
}

.nav-pill .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #6ef0b4;
	animation: pulse 2s infinite;
}

.page {
	min-height: 100vh;
	scroll-snap-align: start;
	position: relative;
}

.hero {
	max-width: 1280px;
	min-height: 100vh;
	margin: 0 auto;
	padding: 120px 56px 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 440px;
	gap: 48px;
	align-items: center;
}

.hero-l,
.hero-r {
	padding-bottom: 80px;
}

.hero-r__frame {
	position: relative;
	margin-top: 20px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 36px;
	padding: 8px 18px;
	border-radius: 50px;
	background: var(--pikluy-brand-soft);
	color: var(--pikluy-brand);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--pikluy-red);
	animation: pulse 2s infinite;
}

.hero-h1 {
	margin: 0 0 10px;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(40px, 5.5vw, 72px);
	font-weight: 900;
	line-height: 1.04;
	color: var(--pikluy-ink);
}

.hero-h1 .wave {
	position: relative;
	display: inline-block;
	font-family: "Lora", serif;
	font-style: italic;
	font-weight: 600;
	color: var(--pikluy-brand);
}

.hero-h1 .wave::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 3px;
	border-radius: 2px;
	background: var(--pikluy-brand);
	opacity: 0.35;
}

.hero-lede {
	max-width: 520px;
	margin: 0 0 44px;
	font-family: "Lora", serif;
	font-size: 21px;
	line-height: 1.65;
	color: var(--pikluy-muted);
}

.hero-lede b {
	color: var(--pikluy-ink);
	font-weight: 600;
}

.hooks {
	display: flex;
	flex-direction: column;
}

.hook {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 0;
	border-top: 1px solid var(--pikluy-border);
	overflow: hidden;
	transition: transform 0.3s ease;
}

.hook:last-child {
	border-bottom: 1px solid var(--pikluy-border);
}

.hook::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 12px;
	background: var(--pikluy-brand-soft);
	transform: translateX(-101%);
	transition: transform 0.35s ease;
}

.hook:hover::before {
	transform: translateX(0);
}

.hook-icon {
	position: relative;
	z-index: 1;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--pikluy-brand-soft);
	font-size: 24px;
	transition: background-color 0.3s ease;
}

.hook:hover .hook-icon {
	background: var(--pikluy-white);
}

.hook-txt {
	position: relative;
	z-index: 1;
}

.hook-title {
	margin-bottom: 3px;
	font-size: 15px;
	font-weight: 600;
}

.hook-sub {
	font-size: 13px;
	line-height: 1.55;
	color: var(--pikluy-muted);
}

.scroll-hint {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
	color: var(--pikluy-muted);
	font-size: 13px;
}

.scroll-arrow {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--pikluy-border);
	border-radius: 50%;
	animation: bobDown 2s ease-in-out infinite;
}

.float-card {
	position: relative;
	overflow: hidden;
	padding: 32px;
	border-radius: 28px;
	background: var(--pikluy-white);
	box-shadow: 0 24px 80px rgba(133, 88, 237, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.float-card::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(133, 88, 237, 0.07), transparent 70%);
}

.chat-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(133, 88, 237, 0.07);
}

.cha {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pikluy-brand);
	font-size: 20px;
}

.chat-name {
	font-size: 14px;
	font-weight: 700;
}

.chat-online {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: var(--pikluy-green);
}

.chat-online::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pikluy-green);
}

.chat-time {
	margin-left: auto;
	font-size: 11px;
	color: var(--pikluy-muted);
}

.msgs {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.msg-b {
	max-width: 86%;
	padding: 12px 15px;
	border-radius: 16px;
	font-size: 13px;
	line-height: 1.55;
}

.msg-in {
	align-self: flex-start;
	border-radius: 16px 16px 16px 4px;
	background: #f4f1ff;
}

.msg-out {
	align-self: flex-end;
	border-radius: 16px 16px 4px 16px;
	background: var(--pikluy-brand);
	color: var(--pikluy-white);
}

.msg-green {
	align-self: flex-start;
	border-radius: 16px;
	background: #dcfce7;
	color: #166534;
}

.msg-row--out {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.msg-t {
	display: flex;
	align-items: center;
	gap: 3px;
	margin-top: 2px;
	font-size: 10px;
	color: var(--pikluy-muted);
}

.msg-t--out {
	justify-content: flex-end;
}

.ticks-b {
	color: var(--pikluy-brand);
}

.ticks-b.blue {
	color: #3b82f6;
}

.pill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.pill-tag {
	padding: 6px 14px;
	border-radius: 50px;
	background: var(--pikluy-brand-soft);
	color: var(--pikluy-brand);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.pill-tag.red {
	background: #feeceb;
	color: var(--pikluy-red);
}

.pill-tag.green {
	background: #dcfce7;
	color: #166534;
}

.fbadge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 14px;
	background: var(--pikluy-white);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	animation: floatBadge 4s ease-in-out infinite;
}

.fbadge span {
	color: var(--pikluy-brand);
	font-weight: 700;
}

.fbadge.b1 {
	top: -20px;
	right: 16px;
}

.fbadge.b2 {
	bottom: -16px;
	left: -16px;
	animation-delay: 1.8s;
}

.fbadge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.stats-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	flex-wrap: wrap;
	margin: 0;
	padding: 20px 56px;
	background: var(--pikluy-brand);
}

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

.stat-n {
	display: block;
	font-family: "Unbounded", sans-serif;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
	color: var(--pikluy-white);
}

.stat-l {
	margin-top: 4px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}

.page2 {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	scroll-snap-align: start;
}

.p2-left {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 56px;
	background: var(--pikluy-brand);
}

.p2-left::before,
.p2-left::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.p2-left::before {
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 65%);
}

.p2-left::after {
	left: -80px;
	bottom: -80px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 65%);
}

.p2-label,
.p2-h,
.p2-sub,
.trust-list {
	position: relative;
	z-index: 1;
}

.p2-label {
	margin-bottom: 20px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.p2-h {
	margin: 0 0 24px;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(28px, 3.5vw, 48px);
	font-weight: 900;
	line-height: 1.1;
	color: var(--pikluy-white);
}

.p2-h em {
	font-family: "Lora", serif;
	font-style: italic;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
}

.p2-sub {
	max-width: 400px;
	margin: 0 0 48px;
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
}

.trust-list {
	display: flex;
	flex-direction: column;
}

.trust-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-ico {
	flex-shrink: 0;
	margin-top: 1px;
	font-size: 20px;
}

.trust-txt {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
}

.trust-txt b {
	color: var(--pikluy-white);
}

.p2-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 56px;
	background: var(--pikluy-cream);
}

.form-kicker {
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--pikluy-brand);
}

.form-title {
	margin-bottom: 8px;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(22px, 2.5vw, 32px);
	font-weight: 900;
	line-height: 1.15;
	color: var(--pikluy-ink);
}

.form-sub {
	margin: 0 0 36px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--pikluy-muted);
}

.lead-form--desktop .form-progress {
	margin-bottom: 24px;
}

.prog-label {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--pikluy-muted);
}

.prog-bar-wrap {
	height: 4px;
	margin-top: 6px;
	border-radius: 2px;
	background: rgba(133, 88, 237, 0.1);
}

.prog-bar {
	height: 100%;
	border-radius: 2px;
	background: var(--pikluy-brand);
	transition: width 0.5s ease;
}

.form-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.q-block {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.q-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pikluy-ink);
}

.q-num {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--pikluy-brand-soft);
	color: var(--pikluy-brand);
	font-size: 11px;
	font-weight: 700;
}

.q-hint {
	padding-left: 30px;
	font-size: 12px;
	line-height: 1.55;
	color: var(--pikluy-muted);
}

.q-input,
.q-textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1.5px solid var(--pikluy-border);
	border-radius: 14px;
	background: var(--pikluy-white);
	color: var(--pikluy-ink);
	font-size: 15px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.q-input::placeholder,
.q-textarea::placeholder {
	color: var(--pikluy-muted);
	font-size: 14px;
}

.q-input:focus,
.q-textarea:focus {
	border-color: var(--pikluy-brand);
	box-shadow: 0 0 0 4px rgba(133, 88, 237, 0.08);
}

.q-textarea {
	min-height: 80px;
	resize: vertical;
	line-height: 1.55;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-left: 30px;
}

.chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border: 1.5px solid var(--pikluy-border);
	border-radius: 999px;
	background: var(--pikluy-white);
	color: var(--pikluy-muted);
	font-size: 13px;
	font-weight: 500;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
	user-select: none;
}

.choice-chip input:checked + .chip {
	background: var(--pikluy-brand);
	color: var(--pikluy-white);
	border-color: var(--pikluy-brand);
}

.choice-chip input:focus-visible + .chip {
	outline: 2px solid rgba(43, 24, 87, 0.4);
	outline-offset: 2px;
}

.field-grid--desktop {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 10px;
}

.phone-wrap {
	position: relative;
}

.phone-prefix {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-width: 64px;
	font-size: 15px;
	line-height: 1;
	color: var(--pikluy-muted);
	white-space: nowrap;
	pointer-events: none;
}

.phone-prefix__flag {
	font-size: 15px;
	line-height: 1;
}

.phone-prefix__code {
	display: inline-block;
	line-height: 1;
}

.q-input.phone {
	padding-left: 86px;
	font-variant-numeric: tabular-nums;
}

.q-input.phone::placeholder {
	font-variant-numeric: tabular-nums;
}

.btn-submit {
	width: 100%;
	min-height: 58px;
	margin-top: 8px;
	padding: 18px 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 14px;
	background: var(--pikluy-brand);
	color: var(--pikluy-white);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-submit:hover {
	background: var(--pikluy-ink);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(133, 88, 237, 0.3);
}

.btn-submit:disabled {
	opacity: 0.78;
	transform: none;
	box-shadow: none;
	cursor: wait;
}

.form-note {
	margin: 0;
	text-align: center;
	font-size: 12px;
	line-height: 1.6;
	color: var(--pikluy-muted);
}

.success-modal__panel--desktop {
	max-width: 430px;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(1.4);
	}
}

@keyframes bobDown {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(5px);
	}
}

@keyframes floatBadge {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@media (max-width: 1024px) {
	html {
		scroll-snap-type: none;
	}

	.ai-nav {
		padding: 0 24px;
	}

	.ai-nav__actions {
		gap: 12px;
	}

	.nav-phone-desktop {
		font-size: 14px;
	}

	.hero {
		grid-template-columns: 1fr;
		padding: 100px 24px 40px;
		min-height: auto;
	}

	.hero-r {
		display: none;
	}

	.stats-strip {
		gap: 32px;
		padding: 20px 24px;
	}

	.page2 {
		grid-template-columns: 1fr;
	}

	.p2-left {
		padding: 60px 24px 40px;
	}

	.p2-right {
		padding: 40px 24px 60px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .ai-nav {
		top: 46px;
	}
}
