/* ==========================================================================
   WINMEDIC — Dental LP (Stomatologija) styles
   Koristi global tokens iz assets/css/global.css (--wm-primary = #0c1a4c).
   ========================================================================== */

.dental-lp {
	color: var(--wm-text, #1a2332);
	font-family: var(--wm-font-body, 'Inter', system-ui, sans-serif);
}

/* ---------- Shared section primitives ---------- */
.dl-section {
	padding: 4rem 0;
}

@media (min-width: 48em) {
	.dl-section {
		padding: 5.5rem 0;
	}
}

.dl-section--muted {
	background: var(--wm-bg-alt, #f7f9fc);
}

.dl-section__header {
	max-width: 780px;
	margin: 0 auto 3rem;
	text-align: center;
}

.dl-section__title {
	margin: 0.75rem 0 0.75rem;
	font-family: var(--wm-font-heading, 'Poppins', 'Inter', sans-serif);
	font-size: clamp(1.75rem, 3.5vw, 2.6rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--wm-text, #1a2332);
}

.dl-section__subtitle {
	margin: 0 auto;
	max-width: 640px;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--wm-text-light, #4a5568);
}

/* Tag label */
.dl-tag {
	display: inline-block;
	padding: 0.35rem 0.95rem;
	background: rgba(12, 26, 76, 0.08);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wm-primary, #0c1a4c);
}

/* Highlight (underlined accent) */
.dl-highlight {
	position: relative;
	display: inline-block;
	color: var(--wm-primary, #0c1a4c);
}

.dl-highlight::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.05em;
	height: 0.28em;
	background: rgba(12, 26, 76, 0.15);
	border-radius: 4px;
	z-index: -1;
}

/* Check icon */
.dl-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: var(--wm-primary, #0c1a4c);
}

.dl-check--solid {
	width: 28px;
	height: 28px;
	background: var(--wm-primary, #0c1a4c);
	color: #fff;
	border-radius: 50%;
}

.dl-check--solid svg {
	width: 14px;
	height: 14px;
}

/* Reveal animations */
.dl-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.dl-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.dl-reveal[data-dl-delay="1"] { transition-delay: 0.06s; }
.dl-reveal[data-dl-delay="2"] { transition-delay: 0.12s; }
.dl-reveal[data-dl-delay="3"] { transition-delay: 0.18s; }
.dl-reveal[data-dl-delay="4"] { transition-delay: 0.24s; }
.dl-reveal[data-dl-delay="5"] { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
	.dl-reveal { opacity: 1; transform: none; transition: none; }
}

/* Screen reader only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.dl-hero {
	position: relative;
	padding: 3rem 0 4rem;
	background: linear-gradient(180deg, #fff 0%, #f2f6fc 100%);
	overflow: hidden;
}

@media (min-width: 48em) {
	.dl-hero {
		padding: 4.5rem 0 5.5rem;
	}
}

.dl-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

/* Mobile: image first, text second */
@media (max-width: 63.99em) {
	.dl-hero__content { order: 2; }
	.dl-hero__visual { order: 1; }
}

@media (min-width: 64em) {
	.dl-hero__grid {
		grid-template-columns: 1.15fr 1fr;
		gap: 4rem;
	}
}

.dl-hero__title {
	margin: 0.85rem 0 1rem;
	font-family: var(--wm-font-heading, 'Poppins', 'Inter', sans-serif);
	font-size: clamp(1.55rem, 5vw, 2.3rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: var(--wm-text, #1a2332);
}

@media (min-width: 64em) {
	.dl-hero__title {
		font-size: 2.5rem;
		line-height: 1.12;
	}
}

.dl-hero__lead {
	margin: 0 0 1.5rem;
	font-size: 1.08rem;
	line-height: 1.6;
	color: var(--wm-text-light, #4a5568);
	max-width: 560px;
}

.dl-hero__checks {
	list-style: none;
	margin: 0 0 1.8rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.dl-hero__checks li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	font-size: 0.98rem;
	line-height: 1.5;
	color: var(--wm-text, #1a2332);
}

.dl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.dl-hero__cta {
	min-height: 52px;
}

.dl-hero__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--wm-primary, #0c1a4c);
	font-weight: 700;
	text-decoration: none;
	font-size: 1rem;
}

.dl-hero__phone:hover {
	text-decoration: underline;
}

.dl-hero__phone-icon {
	width: 18px;
	height: 18px;
}

/* Hero visual */
.dl-hero__visual {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	aspect-ratio: 7 / 6;
}

.dl-hero__circle {
	position: absolute;
	inset: 0;
	border-radius: 36% 64% 55% 45% / 45% 38% 62% 55%;
	background: linear-gradient(135deg, rgba(12, 26, 76, 0.08) 0%, rgba(12, 26, 76, 0.02) 100%);
	z-index: 0;
}

.dl-hero__img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(12, 26, 76, 0.18);
}

@media (min-width: 64em) {
	.dl-hero__visual {
		aspect-ratio: auto;
		height: 600px;
	}

	.dl-hero__img {
		height: 600px;
	}
}

.dl-hero__badge {
	position: absolute;
	z-index: 2;
	bottom: 1.25rem;
	left: -1.25rem;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 1.1rem;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 14px 36px rgba(12, 26, 76, 0.18);
}

.dl-hero__badge strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--wm-primary, #0c1a4c);
}

.dl-hero__badge span {
	display: block;
	font-size: 0.78rem;
	color: var(--wm-text-light, #4a5568);
}

.dl-hero__badge-icon {
	width: 28px;
	height: 28px;
	color: var(--wm-primary, #0c1a4c);
}

/* ==========================================================================
   PROBLEM
   ========================================================================== */
.dl-problem__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.1rem;
}

@media (min-width: 40em) {
	.dl-problem__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 64em) {
	.dl-problem__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.dl-problem__card {
	padding: 1.75rem;
	background: #fff;
	border: 1px solid var(--wm-border, #e2e8f0);
	border-radius: 16px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dl-problem__card:hover {
	transform: translateY(-2px);
	border-color: rgba(12, 26, 76, 0.2);
	box-shadow: 0 12px 30px rgba(12, 26, 76, 0.08);
}

.dl-problem__emoji {
	font-size: 2rem;
	line-height: 1;
	margin-bottom: 0.85rem;
}

.dl-problem__title {
	margin: 0 0 0.55rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--wm-text, #1a2332);
}

.dl-problem__text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--wm-text-light, #4a5568);
}

/* ==========================================================================
   SOLUTION
   ========================================================================== */
.dl-solution__wrap {
	max-width: 900px;
	margin: 0 auto;
}

.dl-solution__checks {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

@media (min-width: 40em) {
	.dl-solution__checks {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
}

.dl-solution__checks li {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 1.25rem;
	background: #fff;
	border: 1px solid var(--wm-border, #e2e8f0);
	border-radius: 12px;
	font-weight: 600;
	color: var(--wm-text, #1a2332);
}

.dl-solution__note {
	padding: 1.75rem 2rem;
	background: var(--wm-primary, #0c1a4c);
	border-radius: 16px;
	color: rgba(255, 255, 255, 0.92);
}

.dl-solution__note p {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.6;
}

.dl-solution__note strong {
	color: #fff;
}

/* ==========================================================================
   WHAT YOU GET
   ========================================================================== */
.dl-offer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 40em) {
	.dl-offer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 64em) {
	.dl-offer__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.dl-offer__card {
	padding: 1.75rem;
	background: #fff;
	border: 1px solid var(--wm-border, #e2e8f0);
	border-radius: 16px;
	text-align: left;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dl-offer__card:hover {
	transform: translateY(-3px);
	border-color: rgba(12, 26, 76, 0.2);
	box-shadow: 0 14px 36px rgba(12, 26, 76, 0.1);
}

.dl-offer__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1rem;
	background: rgba(12, 26, 76, 0.08);
	border-radius: 14px;
	color: var(--wm-primary, #0c1a4c);
}

.dl-offer__icon svg {
	width: 26px;
	height: 26px;
}

.dl-offer__title {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--wm-text, #1a2332);
}

.dl-offer__text {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.55;
	color: var(--wm-text-light, #4a5568);
}

.dl-offer__cta {
	margin-top: 2.5rem;
	text-align: center;
}

/* ==========================================================================
   FUNNEL FORM
   ========================================================================== */
.dl-funnel-section {
	background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.dl-funnel {
	max-width: 760px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
	background: #fff;
	border: 1px solid var(--wm-border, #e2e8f0);
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(12, 26, 76, 0.08);
}

@media (min-width: 48em) {
	.dl-funnel {
		padding: 2.5rem;
	}
}


/* Form groups (single-page sections) */
.dl-group {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--wm-border, #e2e8f0);
}

.dl-group:last-of-type {
	border-bottom: none;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.dl-group__title {
	margin: 0 0 1rem;
	font-family: var(--wm-font-heading, 'Poppins', 'Inter', sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--wm-text, #1a2332);
}

/* Choices (CF7 radio rendered as button-cards) */
.dl-choices {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
}

@media (min-width: 34em) {
	.dl-choices {
		grid-template-columns: 1fr 1fr;
	}
}

.dl-choices--wide {
	grid-template-columns: 1fr;
}

@media (min-width: 34em) {
	.dl-choices--wide {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* CF7 radio: it wraps each item in <span.wpcf7-list-item><label><input><span.wpcf7-list-item-label></span></label></span> */
.dl-choices .wpcf7-form-control-wrap,
.dl-choices .wpcf7-radio {
	display: contents;
}

.dl-choices .wpcf7-list-item {
	display: block;
	margin: 0;
}

.dl-choices .wpcf7-list-item label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem 1.1rem;
	min-height: 58px;
	background: #fff;
	border: 2px solid var(--wm-border, #e2e8f0);
	border-radius: 12px;
	font-size: 0.97rem;
	font-weight: 600;
	color: var(--wm-text, #1a2332);
	text-align: center;
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
	box-sizing: border-box;
}

.dl-choices .wpcf7-list-item label:hover {
	border-color: rgba(12, 26, 76, 0.35);
	background: #f7f9fc;
}

.dl-choices input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
}

.dl-choices .wpcf7-list-item label:has(input[type="radio"]:checked) {
	border-color: var(--wm-primary, #0c1a4c);
	background: rgba(12, 26, 76, 0.05);
	color: var(--wm-primary, #0c1a4c);
	box-shadow: 0 0 0 3px rgba(12, 26, 76, 0.08);
}

.dl-choices .wpcf7-list-item label:has(input[type="radio"]:focus-visible) {
	outline: 2px solid var(--wm-primary, #0c1a4c);
	outline-offset: 2px;
}

/* Fields (step 3, 4) */
.dl-fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 40em) {
	.dl-fields {
		grid-template-columns: 1fr 1fr;
	}
	.dl-field:not(.dl-field--half) {
		grid-column: 1 / -1;
	}
}

.dl-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.dl-field label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--wm-text, #1a2332);
}

.dl-field .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.dl-field input[type="text"],
.dl-field input[type="email"],
.dl-field input[type="tel"],
.dl-field textarea,
.dl-field .wpcf7-form-control {
	width: 100%;
	padding: 0.8rem 1rem;
	font: inherit;
	font-size: 0.97rem;
	color: var(--wm-text, #1a2332);
	background: #fff;
	border: 1px solid var(--wm-border, #e2e8f0);
	border-radius: 10px;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	box-sizing: border-box;
}

.dl-field textarea,
.dl-field .wpcf7-textarea {
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
	line-height: 1.5;
}

.dl-field input:focus,
.dl-field textarea:focus,
.dl-field .wpcf7-form-control:focus {
	border-color: var(--wm-primary, #0c1a4c);
	box-shadow: 0 0 0 3px rgba(12, 26, 76, 0.12);
}

.dl-field input.is-invalid,
.dl-field textarea.is-invalid,
.dl-field .wpcf7-not-valid {
	border-color: #e53e3e;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}

.dl-field .wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.3rem;
	color: #e53e3e;
	font-size: 0.8rem;
	font-weight: 500;
}

/* Error message */
.dl-error {
	margin-top: 0.85rem;
	padding: 0.6rem 0.85rem;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	color: #991b1b;
	font-size: 0.88rem;
	font-weight: 500;
}

/* Submit button wrap */
.dl-funnel__submit {
	margin-top: 1rem;
}

.dl-btn--block,
.dl-funnel__submit input[type="submit"].dl-btn {
	display: flex;
	width: 100%;
	justify-content: center;
}

.dl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	font: inherit;
	font-size: 0.97rem;
	font-weight: 700;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.dl-btn--primary {
	color: #fff;
	background: var(--wm-primary, #0c1a4c);
	box-shadow: 0 8px 20px rgba(12, 26, 76, 0.22);
}

.dl-btn--primary:hover {
	background: var(--wm-primary-dark, #070f2e);
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(12, 26, 76, 0.28);
}

.dl-btn--primary:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

.dl-btn--ghost {
	color: var(--wm-text, #1a2332);
	background: transparent;
	box-shadow: none;
}

.dl-btn--ghost:hover {
	background: rgba(12, 26, 76, 0.05);
}

.dl-btn__icon {
	width: 18px;
	height: 18px;
}

.dl-btn__icon-flip {
	width: 18px;
	height: 18px;
	transform: rotate(180deg);
}

/* CF7 submit wrap */
.dl-submit-wrap {
	display: inline-flex;
}

.dl-submit-wrap input[type="submit"].dl-btn {
	-webkit-appearance: none;
	appearance: none;
	line-height: 1;
}

/* CF7 AJAX spinner */
.dl-funnel .wpcf7-spinner {
	background-color: var(--wm-primary, #0c1a4c);
	margin-left: 0.6rem;
}

/* CF7 response output */
.dl-funnel .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.85rem 1rem;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 0.9rem;
	line-height: 1.45;
	text-align: center;
}

.wpcf7 form.sent .dl-funnel .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
	background: #f0fdf4;
	border-color: #bbf7d0;
	color: #166534;
}

.wpcf7 form.invalid .dl-funnel .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
	background: #fffbeb;
	border-color: #fde68a;
	color: #92400e;
}

.wpcf7 form.failed .dl-funnel .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
	background: #fef2f2;
	border-color: #fecaca;
	color: #991b1b;
}

.dl-funnel__privacy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 1.5rem 0 0;
	font-size: 0.82rem;
	color: var(--wm-text-muted, #718096);
}

.dl-funnel__privacy-icon {
	width: 14px;
	height: 14px;
}

/* Success screen */
.dl-funnel__success {
	text-align: center;
	padding: 1rem 0;
	animation: dlFadeIn 0.4s ease;
}

.dl-funnel__success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	margin: 0 auto 1.25rem;
	background: #10b981;
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.dl-funnel__success-icon svg {
	width: 36px;
	height: 36px;
}

.dl-funnel__success h3 {
	margin: 0 0 0.5rem;
	font-family: var(--wm-font-heading, 'Poppins', 'Inter', sans-serif);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--wm-text, #1a2332);
}

.dl-funnel__success-lead {
	margin: 0 0 1.75rem;
	font-size: 1rem;
	color: var(--wm-text-light, #4a5568);
}

.dl-funnel__steps-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	margin: 0 auto 2rem;
	padding: 0;
	list-style: none;
	counter-reset: dl-success-step;
	text-align: left;
	max-width: 520px;
}

.dl-funnel__steps-list li {
	counter-increment: dl-success-step;
	position: relative;
	padding: 1rem 1.1rem 1rem 3.75rem;
	background: #f7f9fc;
	border-radius: 12px;
}

.dl-funnel__steps-list li::before {
	content: counter(dl-success-step);
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--wm-primary, #0c1a4c);
	color: #fff;
	border-radius: 50%;
	font-weight: 800;
	font-size: 0.9rem;
}

.dl-funnel__steps-list strong {
	display: block;
	font-size: 0.95rem;
	color: var(--wm-text, #1a2332);
}

.dl-funnel__steps-list span {
	display: block;
	font-size: 0.85rem;
	color: var(--wm-text-light, #4a5568);
	margin-top: 0.15rem;
}

.dl-funnel__success-cta {
	padding: 1.25rem;
	background: #f7f9fc;
	border-radius: 14px;
}

.dl-funnel__success-cta .dl-btn {
	width: 100%;
	justify-content: center;
}

.dl-funnel__success-note {
	margin: 0.6rem 0 0;
	font-size: 0.82rem;
	color: var(--wm-text-muted, #718096);
}

/* Error screen */
.dl-funnel__error {
	margin-top: 1rem;
	padding: 0.9rem 1.1rem;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 10px;
	color: #991b1b;
	font-size: 0.9rem;
	text-align: center;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.dl-process__steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

@media (min-width: 48em) {
	.dl-process__steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.dl-process__step {
	position: relative;
	padding: 1.25rem 1rem;
	text-align: center;
}

.dl-process__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
	background: var(--wm-primary, #0c1a4c);
	color: #fff;
	border-radius: 50%;
	font-family: var(--wm-font-heading, 'Poppins', 'Inter', sans-serif);
	font-size: 1.4rem;
	font-weight: 800;
	box-shadow: 0 10px 24px rgba(12, 26, 76, 0.25);
	position: relative;
	z-index: 1;
}

.dl-process__line {
	display: none;
}

@media (min-width: 48em) {
	.dl-process__line {
		display: block;
		position: absolute;
		top: calc(1.25rem + 32px);
		left: calc(50% + 36px);
		width: calc(100% - 72px);
		height: 2px;
		background: linear-gradient(90deg, rgba(12, 26, 76, 0.35), rgba(12, 26, 76, 0.05));
	}

	.dl-process__step:last-child .dl-process__line {
		display: none;
	}
}

.dl-process__step-title {
	margin: 0 0 0.5rem;
	font-family: var(--wm-font-heading, 'Poppins', 'Inter', sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--wm-text, #1a2332);
}

.dl-process__step p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--wm-text-light, #4a5568);
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */
.dl-benefits__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: 1000px;
	margin: 0 auto;
}

@media (min-width: 48em) {
	.dl-benefits__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.dl-benefits__item {
	padding: 1.75rem 1.5rem;
	background: #fff;
	border: 1px solid var(--wm-border, #e2e8f0);
	border-radius: 16px;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dl-benefits__item:hover {
	transform: translateY(-3px);
	border-color: rgba(12, 26, 76, 0.2);
	box-shadow: 0 14px 36px rgba(12, 26, 76, 0.1);
}

.dl-benefits__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
	background: rgba(12, 26, 76, 0.08);
	border-radius: 16px;
	color: var(--wm-primary, #0c1a4c);
}

.dl-benefits__icon {
	width: 28px;
	height: 28px;
}

.dl-benefits__title {
	margin: 0 0 0.45rem;
	font-family: var(--wm-font-heading, 'Poppins', 'Inter', sans-serif);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--wm-text, #1a2332);
}

.dl-benefits__item p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--wm-text-light, #4a5568);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.dl-testimonials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: 1000px;
	margin: 0 auto;
}

@media (min-width: 48em) {
	.dl-testimonials__grid--2 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem;
	}
}

.dl-testimonials__card {
	position: relative;
	padding: 1.75rem 1.5rem;
	background: #fff;
	border: 1px solid var(--wm-border, #e2e8f0);
	border-radius: 16px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(12, 26, 76, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dl-testimonials__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(12, 26, 76, 0.1);
}

.dl-testimonials__quote-icon {
	position: absolute;
	top: 1rem;
	right: 1rem;
	opacity: 0.1;
}

.dl-testimonials__icon {
	width: 36px;
	height: 36px;
	color: var(--wm-primary, #0c1a4c);
}

.dl-testimonials__stars {
	display: flex;
	gap: 2px;
	margin-bottom: 0.85rem;
}

.dl-testimonials__star {
	width: 18px;
	height: 18px;
	color: #f59e0b;
}

.dl-testimonials__text {
	margin: 0 0 1.1rem;
}

.dl-testimonials__text p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--wm-text-light, #4a5568);
	font-style: italic;
}

.dl-testimonials__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--wm-border, #e2e8f0);
}

.dl-testimonials__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid rgba(12, 26, 76, 0.15);
}

.dl-testimonials__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.dl-testimonials__name {
	display: block;
	font-style: normal;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--wm-text, #1a2332);
}

.dl-testimonials__role {
	display: block;
	font-size: 0.82rem;
	color: var(--wm-text-muted, #718096);
}

/* ==========================================================================
   FAQ
   Uses generic .faq__* classes so global.js toggle handler works.
   ========================================================================== */
.dl-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.dental-lp .faq__item {
	background: #fff;
	border: 1px solid var(--wm-border, #e2e8f0);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dental-lp .faq__item:hover {
	border-color: rgba(12, 26, 76, 0.35);
}

.dental-lp .faq__item.is-open {
	border-color: var(--wm-primary, #0c1a4c);
	box-shadow: 0 4px 12px rgba(12, 26, 76, 0.1);
}

.dental-lp .faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.4rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.dental-lp .faq__question-text {
	font-family: var(--wm-font-heading, 'Poppins', 'Inter', sans-serif);
	font-size: 1.02rem;
	font-weight: 600;
	color: var(--wm-text, #1a2332);
}

.dental-lp .faq__chevron {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.dental-lp .faq__chevron svg {
	width: 20px;
	height: 20px;
	color: var(--wm-text-muted, #718096);
}

.dental-lp .faq__item.is-open .faq__chevron {
	transform: rotate(180deg);
}

.dental-lp .faq__item.is-open .faq__chevron svg {
	color: var(--wm-primary, #0c1a4c);
}

.dental-lp .faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dental-lp .faq__answer p {
	margin: 0;
	padding: 0 1.4rem 1.15rem;
	color: var(--wm-text-light, #4a5568);
	font-size: 0.95rem;
	line-height: 1.7;
}
