/**
 * Demo request / trial page – POC structure (hero, lead capture, value, schedule, FAQ)
 * Prefix: .dr-
 */

/* --- Hero --- */
.dr-hero {
	position: relative;
	padding: 5rem 1rem 4rem;
	overflow: hidden;
}
.dr-hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 123, 255, 0.92) 0%, rgba(0, 86, 179, 0.95) 100%);
}
.dr-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}
.dr-hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 123, 255, 0.85);
	pointer-events: none;
}
.dr-hero-inner {
	position: relative;
	max-width: 48rem;
}
.dr-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	margin-bottom: 1.5rem;
}
.dr-hero h1 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 1rem;
}
.dr-hero h1 .dr-hero-accent {
	color: #fd7e14;
}
.dr-hero-sub {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	max-width: 36rem;
}
.dr-hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.dr-hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.dr-hero-chip i {
	opacity: 0.95;
}

/* --- Lead capture (form + stepper) --- */
.dr-lead {
	padding: 4rem 0;
	background: #fff;
}
.dr-lead-grid {
	display: grid;
	gap: 2rem;
	max-width: 72rem;
	margin: 0 auto;
}
@media (min-width: 992px) {
	.dr-lead-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
		align-items: start;
	}
}
.dr-lead-form h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
	.dr-lead-form h2 {
		font-size: 1.875rem;
	}
}
.dr-lead-form .dr-lead-form-intro {
	color: #6c757d;
	margin-bottom: 1.5rem;
}
.dr-lead-form .form-group {
	margin-bottom: 1rem;
}
.dr-lead-form label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.375rem;
	font-size: 0.875rem;
}
.dr-lead-form .form-control {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #dee2e6;
	border-radius: 0.5rem;
	font-size: 1rem;
}
.dr-lead-form .form-control:focus {
	outline: none;
	border-color: var(--primary, #007bff);
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}
.dr-lead-form .btn-submit {
	width: 100%;
	font-weight: 700;
	font-size: 1.125rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	margin-top: 0.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #fd7e14;
	color: #fff;
	border: none;
	cursor: pointer;
}
.dr-lead-form .btn-submit:hover {
	background: #e96e0a;
	color: #fff;
}
.dr-lead-trust-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 0.75rem;
	font-size: 0.75rem;
	color: #6c757d;
}
.dr-lead-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}
.dr-lead-form .infusion-submit {
	margin-top: 0.5rem;
}
.dr-lead-form .infusion-submit input[type="submit"],
.dr-lead-form .infusion-submit .btn {
	width: 100%;
	font-weight: 700;
	font-size: 1.125rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #fd7e14;
	border-color: #fd7e14;
	color: #fff;
}
.dr-lead-form .infusion-submit input[type="submit"]:hover,
.dr-lead-form .infusion-submit .btn:hover {
	background: #e96e0a;
	border-color: #e96e0a;
	color: #fff;
}
.dr-lead-form .infusion-field .form-control {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #dee2e6;
	border-radius: 0.5rem;
}
.dr-lead-form .form-group + .form-group,
.dr-lead-form .infusion-field + .infusion-field {
	margin-top: 0.5rem;
}

/* Stepper */
.dr-stepper {
	padding-top: 0;
}
@media (min-width: 992px) {
	.dr-stepper {
		padding-top: 3rem;
	}
}
.dr-stepper h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}
.dr-stepper-step {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.dr-stepper-step:last-child .dr-stepper-step-body {
	padding-bottom: 0;
}
.dr-stepper-num {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--primary, #007bff);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
	flex-shrink: 0;
}
.dr-stepper-line {
	width: 2px;
	background: #dee2e6;
	margin: 0.5rem 0 0 1.125rem;
	min-height: 1.5rem;
}
.dr-stepper-step-body {
	padding-bottom: 1.5rem;
}
.dr-stepper-step-body strong {
	display: block;
	margin-bottom: 0.25rem;
}
.dr-stepper-step-body small {
	color: #6c757d;
	font-size: 0.875rem;
}
.dr-stepper-urgency {
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: 0.75rem;
	background: rgba(253, 126, 20, 0.1);
	border: 1px solid rgba(253, 126, 20, 0.25);
	font-size: 0.875rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}
.dr-stepper-urgency i {
	color: #fd7e14;
	flex-shrink: 0;
	margin-top: 0.125rem;
}
.dr-stepper-trust {
	margin-top: 1.5rem;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: #6c757d;
}
.dr-stepper-trust i {
	color: var(--primary, #007bff);
	flex-shrink: 0;
	margin-top: 0.125rem;
}

/* --- Value section --- */
.dr-value {
	padding: 4rem 0;
	background: rgba(108, 117, 125, 0.08);
}
.dr-value-header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.dr-value-header h2 {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
	.dr-value-header h2 {
		font-size: 2.25rem;
	}
}
.dr-value-header p {
	color: #6c757d;
	font-size: 1.125rem;
	max-width: 42rem;
	margin: 0 auto;
}
.dr-value-cards {
	display: grid;
	gap: 1.5rem;
	max-width: 64rem;
	margin: 0 auto 3rem;
}
@media (min-width: 576px) {
	.dr-value-cards {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 992px) {
	.dr-value-cards {
		grid-template-columns: repeat(4, 1fr);
	}
}
.dr-value-card {
	padding: 1.5rem;
	border-radius: 0.75rem;
	border: 1px solid #dee2e6;
	background: #fff;
	text-align: center;
	transition: box-shadow 0.2s;
}
.dr-value-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}
.dr-value-card-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgba(0, 123, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.dr-value-card-icon i {
	font-size: 1.5rem;
	color: var(--primary, #007bff);
}
.dr-value-card h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}
.dr-value-card p {
	font-size: 0.875rem;
	color: #6c757d;
	margin: 0;
	line-height: 1.4;
}
.dr-value-testimonial {
	max-width: 36rem;
	margin: 0 auto;
	text-align: center;
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid #dee2e6;
	background: #fff;
}
.dr-value-testimonial-stars {
	color: #ffc107;
	margin-bottom: 0.75rem;
	letter-spacing: 0.05em;
}
.dr-value-testimonial blockquote {
	font-style: italic;
	margin-bottom: 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}
.dr-value-testimonial-cite {
	font-size: 0.875rem;
	color: #6c757d;
	font-weight: 500;
}
.dr-value-trust {
	text-align: center;
	margin-top: 1rem;
	font-size: 0.875rem;
	color: #6c757d;
}
.dr-value-trust strong {
	color: #212529;
}

/* --- Schedule fallback --- */
.dr-schedule {
	padding: 4rem 0;
	background: rgba(108, 117, 125, 0.05);
}
.dr-schedule-header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.dr-schedule-header h2 {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
	.dr-schedule-header h2 {
		font-size: 2.25rem;
	}
}
.dr-schedule-header p {
	color: #6c757d;
	font-size: 1.125rem;
	max-width: 42rem;
	margin: 0 auto;
}
.dr-schedule-btns {
	display: grid;
	gap: 1rem;
	max-width: 56rem;
	margin: 0 auto;
}
@media (min-width: 576px) {
	.dr-schedule-btns {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 992px) {
	.dr-schedule-btns {
		grid-template-columns: repeat(4, 1fr);
	}
}
.dr-schedule-btns .btn {
	white-space: normal;
	height: auto;
	padding: 1rem;
	text-align: center;
}

/* --- FAQ --- */
.dr-faq {
	padding: 4rem 0;
	background: #fff;
}
.dr-faq-header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.dr-faq-header h2 {
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
	.dr-faq-header h2 {
		font-size: 2.25rem;
	}
}
.dr-faq-header p {
	color: #6c757d;
	font-size: 1.125rem;
	max-width: 36rem;
	margin: 0 auto;
}
.dr-faq-list {
	max-width: 42rem;
	margin: 0 auto;
}
.dr-faq-item {
	border-bottom: 1px solid #dee2e6;
}
.dr-faq-item:first-child {
	border-top: 1px solid #dee2e6;
}
.dr-faq-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	background: none;
	border: none;
	font-size: 1rem;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	color: #212529;
}
.dr-faq-trigger:hover {
	color: var(--primary, #007bff);
}
.dr-faq-trigger i {
	transition: transform 0.2s;
	flex-shrink: 0;
	margin-left: 0.5rem;
	color: #6c757d;
}
.dr-faq-item.is-open .dr-faq-trigger i {
	transform: rotate(180deg);
}
.dr-faq-content {
	display: none;
	padding-bottom: 1rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #6c757d;
}
.dr-faq-item.is-open .dr-faq-content {
	display: block;
}
