
/* Section background and spacing */
.demo {
	padding: 72px 0;
}

/* Mockup gallery */
.mockup-card {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,.04);
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
	border-radius: 12px;
	overflow: hidden;
	transform: translateY(0);
	transition: transform .35s cubic-bezier(.2,.9,.2,1), box-shadow .35s;
}

.mockup-card:hover {
	transform: translateY(-8px) scale(1.01);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Device frame sizes & responsive behavior */
.device-frame {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	background-color: #eee;
}

/* Small "device frame" visual (thin bezel) */
.device-bezel {
	padding: 18px;
	background: linear-gradient(180deg, #fff, #fbfbfb);
}

.mockup-meta {
	padding: 18px;
}

.feature-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .5rem .75rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(0,0,0,.04);
	box-shadow: 0 2px 8px rgba(15,23,42,0.04);
	font-size: .95rem;
}

/* CTA styling */
.demo-button {
	background: var(--brand-primary-dark);
	color: var(--brand-primary-light) !important;
	border-radius: 10px;
	padding: 14px 18px;
	font-weight: 600;
}

/* Decorative line */
.divider-line {
	width: 56px;
	height: 4px;
	background: linear-gradient(90deg,#4f46e5,#06b6d4);
	border-radius: 12px;
	margin-bottom: 12px;
}

@media (max-width: 767.98px) {
	.waas-demo-section {
		padding: 48px 0;
	}
}
