/* ===========================================
   Demo / Book a Call Page
   =========================================== */

.demo-page {
	display: flex;
	height: 100vh;
	overflow: hidden;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.demo-page *,
.demo-page *::before,
.demo-page *::after {
	box-sizing: border-box;
}

/* Left column */
.demo-left {
	width: 50%;
	background: #fff;
	padding: var(--space-2xl) var(--space-2xl-3xl);
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.demo-left__inner {
	max-width: 520px;
	width: 100%;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.demo-logo {
	margin-bottom: var(--space-l);
}

.demo-logo img {
	height: 36px;
	width: auto;
}

.demo-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 0;
}

.demo-badge {
	display: inline-block;
	font-size: var(--step--2);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #6b7280;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	padding: 4px 12px;
	margin-bottom: var(--space-l);
	width: fit-content;
}

.demo-heading {
	font-size: var(--step-4);
	font-weight: 700;
	color: #111827;
	line-height: 1.25;
	margin: 0 0 var(--space-l-xl) 0;
}

.demo-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-xl) 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-s);
}

.demo-checklist li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-s);
}

.demo-checklist__icon {
	color: #9ca3af;
	flex-shrink: 0;
	margin-top: 2px;
}

.demo-checklist__icon svg {
	width: 24px;
	height: 24px;
}

.demo-checklist__text {
	color: #4b5563;
	font-size: var(--step-1);
	line-height: 1.5;
}

/* Stats row */
.demo-stats {
	display: flex;
	gap: var(--space-s);
}

.demo-stat {
	flex: 1;
	background: #f9fafb;
	border: 1px solid #f3f4f6;
	border-radius: 8px;
	padding: var(--space-s) var(--space-m);
}

.demo-stat__value {
	font-size: var(--step-2);
	font-weight: 700;
	color: #111827;
}

.demo-stat__label {
	font-size: var(--step--1);
	color: #6b7280;
	margin-top: 4px;
}

/* Right column */
.demo-right {
	width: 50%;
	position: relative;
}

.demo-right__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.demo-right__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, transparent 100%);
}

.demo-right__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: var(--space-m) var(--space-xl);
}

.demo-cal-wrapper {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	width: 100%;
	max-width: 520px;
	overflow: hidden;
}

.demo-cal-wrapper .cal-inline-container {
	width: 100%;
	height: 660px;
	overflow: auto;
	scrollbar-width: none;
}

.demo-cal-wrapper .cal-inline-container::-webkit-scrollbar {
	display: none;
}

/* Responsive */
@media (max-width: 1024px) {
	.demo-page {
		flex-direction: column;
		height: auto;
		overflow: visible;
	}

	.demo-left,
	.demo-right {
		width: 100%;
		height: auto;
		overflow: visible;
	}

	.demo-left {
		padding: var(--space-xl) var(--space-m);
	}

	.demo-logo img {
		height: 24px;
	}

	.demo-heading {
		font-size: var(--step-4);
	}

	.demo-right {
		min-height: 700px;
	}

	.demo-right__content {
		min-height: 700px;
		height: auto;
		padding: var(--space-m);
	}
}
