/* ============================================================
   Demo request landing — conversion-optimized layout.
   All selectors prefixed `.dml` or `.dml-*` — zero global collision.
   Same design tokens as home / contact / pricing landings.
   ============================================================ */

.dml {
	--dml-max: 1200px;
	--dml-cal-max: 1080px;       /* widget width sweet spot */
	--dml-narrow: 760px;          /* hero text + section headers max-width */
	--dml-text: #0d1321;
	--dml-text-muted: #5b6574;
	--dml-text-soft: #8a93a3;
	--dml-surface: #ffffff;
	--dml-bg-subtle: #f7f8fb;
	--dml-bg-tint: #eef3ff;
	--dml-border: #e6e8ed;
	--dml-border-strong: #d6dae3;
	--dml-brand: #1552e3;
	--dml-brand-hover: #0e3fb2;
	--dml-brand-soft: #eef3ff;
	--dml-accent: #10b981;
	--dml-accent-soft: #ecfdf5;
	--dml-radius-sm: 10px;
	--dml-radius-md: 14px;
	--dml-radius-lg: 20px;
	--dml-shadow-1: 0 1px 2px rgba(13, 19, 33, 0.04);
	--dml-shadow-2: 0 1px 2px rgba(13, 19, 33, 0.04), 0 12px 32px rgba(13, 19, 33, 0.06);
	color: var(--dml-text);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
.dml * { box-sizing: border-box; }

.dml-section__header {
	max-width: var(--dml-narrow);
	margin: 0 auto 48px;
	text-align: center;
	padding: 0 16px;
}
.dml-eyebrow {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dml-brand);
	margin: 0 0 12px;
}
.dml-section__title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	line-height: 1.18;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
}
.dml-section__desc {
	font-size: 1rem;
	color: var(--dml-text-muted);
	line-height: 1.6;
	margin: 0 auto;
	max-width: 600px;
}

/* ============================================================
   1. HERO — compact centered text, NO competing CTA
   The calendar below is the action. Hero just sets context
   and trust in the smallest possible vertical space.
   ============================================================ */

.dml-hero {
	position: relative;
	padding: 56px 24px 32px;
	overflow: hidden;
	background: linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
}
.dml-hero__bg {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(21, 82, 227, 0.16) 1px, transparent 0);
	background-size: 22px 22px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 70%);
	pointer-events: none;
}
.dml-hero__wrap {
	position: relative;
	max-width: var(--dml-narrow);
	margin: 0 auto;
	text-align: center;
}
.dml-hero__title {
	font-size: clamp(1.875rem, 3.6vw, 2.625rem);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--dml-text);
	margin: 0 0 14px;
}
.dml-hero__subtitle {
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	color: var(--dml-text-muted);
	line-height: 1.55;
	margin: 0 auto 18px;
	max-width: 600px;
}
.dml-hero__social {
	font-size: 0.875rem;
	color: var(--dml-text-soft);
	font-weight: 500;
	margin: 0 0 20px;
	letter-spacing: -0.005em;
}
.dml-hero__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 10px;
}
.dml-hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 14px;
	background: var(--dml-surface);
	border: 1px solid var(--dml-border);
	border-radius: 999px;
	font-size: 0.8125rem;
	color: var(--dml-text);
	font-weight: 500;
}
.dml-hero__trust li svg { color: var(--dml-accent); flex-shrink: 0; }

/* ============================================================
   2. CALENDLY INLINE — full-width, clean container
   Critical: NO border / shadow / rounded corners on the
   .calendly-inline-widget element itself. Calendly's iframe
   has its own internal styling (white bg, rounded controls,
   shadows on date cells) — wrapping it in another card creates
   visual conflict and the cramped look from the first attempt.
   The container is just a soft tinted background that lets the
   widget sit naturally on the page.
   ============================================================ */

.dml-cal {
	padding: 16px 24px 64px;
	background: linear-gradient(180deg, #ffffff 0%, var(--dml-bg-subtle) 100%);
	scroll-margin-top: 24px;
}
.dml-cal__wrap {
	max-width: var(--dml-cal-max);
	margin: 0 auto;
}
.dml-cal__widget {
	width: 100%;
	min-width: 320px;
	height: 760px; /* Calendly recommends >= 700px for comfortable display */
}
@media (max-width: 1024px) {
	.dml-cal__widget { height: 720px; }
}
@media (max-width: 720px) {
	/* Below ~720px Calendly stacks date picker + time slots vertically */
	.dml-cal__widget { height: 1080px; }
}
.dml-cal__noscript {
	padding: 24px;
	text-align: center;
	font-size: 0.9375rem;
	color: var(--dml-text-muted);
}
.dml-cal__noscript a {
	color: var(--dml-brand);
	font-weight: 600;
}

/* ============================================================
   3. TESTIMONIAL — directly after the calendar
   Reinforces trust for visitors who didn't book on first read
   ============================================================ */

.dml-testi {
	padding: 64px 24px;
	background: var(--dml-bg-subtle);
}
.dml-testi__card {
	max-width: 760px;
	margin: 0 auto;
	padding: 40px 44px 32px;
	background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
	border: 1px solid var(--dml-border);
	border-radius: var(--dml-radius-lg);
	position: relative;
	box-shadow: var(--dml-shadow-2);
}
@media (max-width: 600px) { .dml-testi__card { padding: 32px 24px 24px; } }
.dml-testi__mark {
	position: absolute;
	top: -8px;
	left: 32px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 5rem;
	color: var(--dml-brand);
	opacity: 0.18;
	line-height: 1;
}
.dml-testi__quote {
	font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
	line-height: 1.55;
	color: var(--dml-text);
	font-style: italic;
	margin: 0 0 24px;
	letter-spacing: -0.005em;
}
.dml-testi__footer {
	display: flex;
	align-items: center;
	gap: 14px;
}
.dml-testi__avatar {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--dml-brand);
	color: #fff;
	border-radius: 999px;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.dml-testi__name {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--dml-text);
}
.dml-testi__role {
	font-size: 0.875rem;
	color: var(--dml-text-muted);
}

/* ============================================================
   4. WHAT TO EXPECT
   ============================================================ */

.dml-expect {
	padding: 80px 24px;
	background: #ffffff;
}
.dml-expect__grid {
	max-width: var(--dml-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}
@media (max-width: 1024px) {
	.dml-expect__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
	.dml-expect__grid { grid-template-columns: 1fr; max-width: 420px; }
}
.dml-expect__card {
	padding: 24px 22px;
	background: #fff;
	border: 1px solid var(--dml-border);
	border-radius: var(--dml-radius-md);
	box-shadow: var(--dml-shadow-1);
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.18s, box-shadow 0.2s;
}
.dml-expect__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--dml-shadow-2);
}
.dml-expect__icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--dml-brand-soft);
	color: var(--dml-brand);
	border-radius: var(--dml-radius-sm);
}
.dml-expect__title {
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0;
	color: var(--dml-text);
}
.dml-expect__desc {
	font-size: 0.9375rem;
	color: var(--dml-text-muted);
	line-height: 1.55;
	margin: 0;
}

/* ============================================================
   5. HOW CALADEO HELPS
   ============================================================ */

.dml-help {
	padding: 80px 24px;
	background: var(--dml-bg-subtle);
}
.dml-help__grid {
	max-width: var(--dml-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
@media (max-width: 900px) { .dml-help__grid { grid-template-columns: 1fr; max-width: 520px; } }
.dml-help__card {
	padding: 28px 26px;
	background: #fff;
	border: 1px solid var(--dml-border);
	border-radius: var(--dml-radius-md);
	box-shadow: var(--dml-shadow-1);
	transition: transform 0.18s, box-shadow 0.2s;
}
.dml-help__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--dml-shadow-2);
}
.dml-help__title {
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0 0 10px;
	color: var(--dml-text);
}
.dml-help__desc {
	font-size: 0.9375rem;
	color: var(--dml-text-muted);
	line-height: 1.55;
	margin: 0;
}

/* ============================================================
   6. FAQ
   ============================================================ */

.dml-faq {
	padding: 80px 24px;
	background: #ffffff;
}
.dml-faq__wrap {
	max-width: var(--dml-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
	gap: 56px;
	align-items: start;
}
@media (max-width: 900px) {
	.dml-faq__wrap {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}
.dml-faq__aside {
	position: sticky;
	top: 24px;
}
@media (max-width: 900px) { .dml-faq__aside { position: static; } }
.dml-faq__title {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	line-height: 1.18;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
}
.dml-faq__intro {
	font-size: 1rem;
	color: var(--dml-text-muted);
	line-height: 1.6;
	margin: 0;
}
.dml-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.dml-faq__item {
	background: #fff;
	border: 1px solid var(--dml-border);
	border-radius: var(--dml-radius-md);
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.dml-faq__item[open] {
	border-color: var(--dml-border-strong);
	box-shadow: var(--dml-shadow-1);
}
.dml-faq__q {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--dml-text);
	letter-spacing: -0.005em;
}
.dml-faq__q::-webkit-details-marker { display: none; }
.dml-faq__chev {
	flex-shrink: 0;
	color: var(--dml-text-soft);
	transition: transform 0.2s;
}
.dml-faq__item[open] .dml-faq__chev {
	transform: rotate(180deg);
	color: var(--dml-brand);
}
.dml-faq__a {
	margin: 0;
	padding: 0 22px 20px;
	font-size: 0.9375rem;
	color: var(--dml-text-muted);
	line-height: 1.65;
}

/* ============================================================
   7. SOFT FALLBACK — a subtle one-liner for visitors not
   ready to book. Intentionally low-contrast so it doesn't
   compete with the calendar above.
   ============================================================ */

.dml-fallback {
	padding: 32px 24px 56px;
	background: #ffffff;
	text-align: center;
}
.dml-fallback p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--dml-text-soft);
}
.dml-fallback a {
	color: var(--dml-brand);
	font-weight: 600;
	text-decoration: none;
	margin-left: 4px;
}
.dml-fallback a:hover { text-decoration: underline; }
