/**
 * Denver Brand LP — pixel match to Figma Make design.
 * https://bead-scope-64950135.figma.site/
 */
.denver-brand-lp {
	--db-navy: #002f47;
	--db-lime: #bbff00;
	--db-green: #4da35f;
	--db-lavender: #e7d1fe;
	--db-cream: #fcfbf6;
	--db-sky: #b0e2ff;
	--db-container: 80rem;
	--db-px: 1.5rem;
	--db-px-lg: 3.5rem;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--db-cream);
	color: var(--db-navy);
	line-height: 1.5;
	overflow-x: clip;
	padding-bottom: 76px;
}

@media (min-width: 1024px) {
	.denver-brand-lp {
		padding-bottom: 0;
	}
}

.denver-brand-lp *,
.denver-brand-lp *::before,
.denver-brand-lp *::after {
	box-sizing: border-box;
}

.dbl-wrap {
	max-width: var(--db-container);
	margin: 0 auto;
	padding-left: var(--db-px);
	padding-right: var(--db-px);
}

@media (min-width: 1024px) {
	.dbl-wrap {
		padding-left: var(--db-px-lg);
		padding-right: var(--db-px-lg);
	}
}

.dbl-section {
	padding: 5rem 0;
}

@media (min-width: 1024px) {
	.dbl-section {
		padding: 7rem 0;
	}
}

.dbl-kicker {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	font-weight: 700;
	padding: 0.375rem 0.875rem;
	border-radius: 9999px;
	background: var(--db-lavender);
	color: var(--db-navy);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.dbl-h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0;
}

.dbl-h2--light {
	color: #fff;
}

.dbl-lead {
	margin-top: 0.875rem;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: rgba(0, 47, 71, 0.65);
	max-width: 520px;
}

.dbl-lead--light {
	color: rgba(255, 255, 255, 0.65);
	max-width: none;
}

/* Header */
.dbl-header {
	background: var(--db-navy);
}

.dbl-header .dbl-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1rem;
	gap: 1rem;
}

.dbl-header-logo {
	height: 48px !important;
	width: auto !important;
	max-width: 220px !important;
	object-fit: contain;
	object-position: left center;
	display: block;
	flex-shrink: 0;
}

.dbl-header-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 8px 18px;
	border-radius: 9999px;
	border: 1.5px solid rgba(187, 255, 0, 0.45);
	color: var(--db-lime);
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	transition: background 0.15s;
}

.dbl-header-phone:hover {
	background: rgba(187, 255, 0, 0.08);
}

/* Hero */
.dbl-hero {
	background: var(--db-navy);
	padding: 60px 0 72px;
	position: relative;
	overflow: hidden;
}

.dbl-hero-img {
	display: none;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 55% center;
}

.dbl-hero-overlay {
	display: none;
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0, 28, 44, 0.97) 0%, rgba(0, 28, 44, 0.93) 35%, rgba(0, 28, 44, 0.72) 60%, rgba(0, 28, 44, 0.35) 100%);
}

@media (min-width: 1024px) {
	.dbl-hero-img,
	.dbl-hero-overlay {
		display: block;
	}
}

.dbl-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: start;
}

@media (min-width: 1024px) {
	.dbl-hero-grid {
		grid-template-columns: 1fr 420px;
		gap: 4rem;
	}
}

.dbl-hero h1 {
	font-size: clamp(36px, 4.5vw, 62px);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.028em;
	color: #fff;
	margin: 0;
	max-width: 580px;
}

.dbl-hero h1 .dbl-lime {
	color: var(--db-lime);
}

.dbl-hero .dbl-kicker {
	margin-bottom: 1.75rem;
}

.dbl-hero-sub {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
	max-width: 500px;
}

.dbl-hero-bullets {
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.dbl-hero-bullets li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}

.dbl-hero-bullets svg {
	flex-shrink: 0;
	color: var(--db-lime);
}

.dbl-hero-reviews {
	margin-top: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.dbl-hero-stars {
	display: flex;
	gap: 2px;
	color: var(--db-lime);
}

.dbl-hero-rating {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}

.dbl-hero-rating-muted {
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.5);
}

.dbl-hero-divider {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.15);
}

/* Form card */
.dbl-form-card {
	background: var(--db-cream);
	border: 1px solid rgba(0, 47, 71, 0.1);
	border-radius: 1rem;
	padding: 1.75rem;
	scroll-margin-top: 2.5rem;
}

.dbl-form-card h2 {
	font-size: 17px;
	font-weight: 700;
	color: var(--db-navy);
	margin: 0 0 2px;
}

.dbl-form-note {
	font-size: 15px;
	color: rgba(0, 47, 71, 0.55);
	margin: 0 0 20px;
	line-height: 1.5;
}

.dbl-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
	.dbl-form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.dbl-form-field {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.dbl-form-field label {
	font-size: 15px;
	font-weight: 500;
	color: rgba(0, 47, 71, 0.7);
	margin-bottom: 7px;
}

.dbl-form-field input {
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 10px;
	padding: 0 16px;
	font-size: 15px;
	font-weight: 400;
	font-family: inherit;
	color: var(--db-navy);
	background: rgba(0, 47, 71, 0.06);
	border: 1px solid rgba(0, 47, 71, 0.2);
	outline: none;
}

.dbl-form-field input:focus {
	border: 1.5px solid var(--db-green);
	background: rgba(0, 47, 71, 0.04);
}

.dbl-form-field.has-error input {
	border: 1.5px solid #d4183d;
}

.dbl-form-field.has-error input:focus {
	border: 1.5px solid #d4183d;
}

.dbl-form-error {
	margin: 5px 0 0;
	font-size: 15px;
	font-weight: 600;
	color: #d4183d;
	line-height: 1.3;
}

.dbl-form-error[hidden] {
	display: none;
}

.dbl-form-consent-error {
	margin: 0.75rem 0 0;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #d4183d;
	line-height: 1.3;
}

.dbl-form-consent-error[hidden] {
	display: none;
}

.dbl-form-field input::placeholder {
	color: rgba(0, 47, 71, 0.35);
}

.dbl-form-field.full {
	grid-column: 1 / -1;
}

.dbl-form-submit {
	width: 100%;
	height: 56px;
	margin-top: 0.25rem;
	background: var(--db-lime);
	color: var(--db-navy);
	border: none;
	border-radius: 0.75rem;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
	font-family: inherit;
	cursor: pointer;
}

.dbl-form-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 1rem;
	cursor: pointer;
}

.dbl-form-consent input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.dbl-form-consent .dbl-check-box {
	width: 16px;
	height: 16px;
	border-radius: 2px;
	border: 2px solid rgba(0, 47, 71, 0.25);
	background: transparent;
	flex-shrink: 0;
	margin-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dbl-form-consent input:checked + .dbl-check-box {
	border-color: var(--db-green);
	background: var(--db-green);
}

.dbl-form-consent input:checked + .dbl-check-box::after {
	content: '';
	width: 8px;
	height: 5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg) translateY(-1px);
}

.dbl-form-consent span {
	font-size: 15px;
	line-height: 1.65;
	color: rgba(0, 47, 71, 0.45);
}

/* Stats */
.dbl-stats {
	background: var(--db-sky);
}

.dbl-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	padding: 2.5rem var(--db-px);
}

@media (min-width: 1024px) {
	.dbl-stats-grid {
		grid-template-columns: repeat(4, 1fr);
		padding-left: var(--db-px-lg);
		padding-right: var(--db-px-lg);
	}
}

.dbl-stat strong {
	display: block;
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 800;
	color: var(--db-navy);
	line-height: 1;
	letter-spacing: -0.035em;
	margin-bottom: 5px;
}

.dbl-stat span {
	font-size: 15px;
	font-weight: 600;
	color: rgba(0, 47, 71, 0.65);
}

/* Photo strips */
.dbl-photo-strip {
	height: 260px;
	overflow: hidden;
}

.dbl-photo-strip--mobile {
	display: block;
}

@media (min-width: 1024px) {
	.dbl-photo-strip--mobile {
		display: none;
	}
}

.dbl-photo-strip--tall {
	height: clamp(260px, 35vw, 480px);
}

.dbl-photo-strip img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dbl-photo-strip img {
	object-position: 55% 30%;
}

.dbl-photo-strip--tall img {
	object-position: center 20%;
}

/* Steps */
.dbl-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.dbl-steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

.dbl-step {
	background: #fff;
	border: 1px solid rgba(0, 47, 71, 0.08);
	border-radius: 1rem;
	padding: 2rem;
	position: relative;
}

@media (min-width: 768px) {
	.dbl-step:not(:last-child)::after {
		content: '→';
		position: absolute;
		top: 50%;
		right: -0.75rem;
		transform: translateY(-50%);
		z-index: 2;
		width: 1.5rem;
		height: 1.5rem;
		border-radius: 9999px;
		background: var(--db-lavender);
		color: var(--db-navy);
		font-size: 12px;
		font-weight: 700;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1;
	}
}

.dbl-step-num {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--db-green);
	display: block;
	margin-bottom: 1rem;
}

.dbl-step-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	background: rgba(77, 163, 95, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	color: var(--db-green);
}

.dbl-step h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--db-navy);
	line-height: 1.3;
	margin: 0 0 10px;
}

.dbl-step p {
	font-size: 15px;
	font-weight: 400;
	color: rgba(0, 47, 71, 0.65);
	line-height: 1.65;
	margin: 0;
}

/* Inline CTAs */
.dbl-cta-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

@media (min-width: 640px) {
	.dbl-cta-row {
		flex-direction: row;
	}
}

.dbl-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 52px;
	padding: 0 28px;
	border-radius: 0.75rem;
	background: var(--db-lime);
	color: var(--db-navy);
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

.dbl-btn-primary--lg {
	height: 54px;
}

.dbl-btn-primary--round {
	height: 48px;
	border-radius: 9999px;
	padding: 0 24px;
}

.dbl-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 52px;
	padding: 0 28px;
	border-radius: 0.75rem;
	border: 1.5px solid rgba(0, 47, 71, 0.25);
	color: var(--db-navy);
	background: transparent;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
}

.dbl-btn-secondary:hover {
	background: var(--db-navy);
	color: #fff;
}

.dbl-btn-secondary--light {
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.dbl-btn-secondary--light:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.dbl-btn-secondary--lime {
	border: 2px solid var(--db-lime);
	color: var(--db-lime);
}

.dbl-btn-secondary--lime:hover {
	background: rgba(187, 255, 0, 0.08);
	color: var(--db-lime);
}

/* Why section — navy */
.dbl-section--navy {
	background: var(--db-navy);
}

.dbl-why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.dbl-why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.dbl-why-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 1rem;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.dbl-why-card-top {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.dbl-why-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.75rem;
	background: var(--db-green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}

.dbl-why-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin: 0 0 8px;
}

.dbl-why-card p {
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.65;
	margin: 0;
}

.dbl-why-stat {
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--db-green);
}

.dbl-callout {
	border-radius: 1rem;
	padding: 2rem;
	background: rgba(176, 226, 255, 0.08);
	border: 1px solid rgba(176, 226, 255, 0.2);
}

.dbl-callout--row {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.dbl-callout--row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 2.5rem;
	}
}

.dbl-callout h3,
.dbl-callout .dbl-callout-title {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 4px;
}

.dbl-callout p {
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.62);
	margin: 0;
	line-height: 1.6;
}

.dbl-callout--center {
	text-align: center;
	background: rgba(176, 226, 255, 0.1);
	border-color: rgba(176, 226, 255, 0.28);
	padding: 2rem;
	margin-top: 3rem;
}

.dbl-callout--center .dbl-callout-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

/* Locations header */
.dbl-loc-header {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
	.dbl-loc-header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
}

.dbl-loc-stats-inline {
	display: flex;
	gap: 1.5rem;
	flex-shrink: 0;
}

.dbl-loc-stat-inline strong {
	display: block;
	font-size: 20px;
	font-weight: 800;
	color: var(--db-navy);
	letter-spacing: -0.02em;
	line-height: 1;
}

.dbl-loc-stat-inline span {
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: rgba(0, 47, 71, 0.45);
	margin-top: 3px;
}

/* Map panel */
.dbl-map-panel {
	display: grid;
	grid-template-columns: 1fr;
	border: 1px solid rgba(0, 47, 71, 0.1);
	border-radius: 1rem;
	overflow: hidden;
	min-height: 580px;
}

@media (min-width: 1024px) {
	.dbl-map-panel {
		grid-template-columns: 320px 1fr;
	}
}

.dbl-map-sidebar {
	background: var(--db-navy);
	display: flex;
	flex-direction: column;
}

.dbl-map-search-wrap {
	padding: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dbl-map-search {
	display: flex;
	gap: 0.5rem;
}

.dbl-map-search input {
	flex: 1;
	height: 40px;
	border-radius: 9px;
	padding: 0 12px;
	font-size: 15px;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-family: inherit;
}

.dbl-map-search input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.dbl-map-search input:focus {
	outline: none;
	border: 1.5px solid rgba(187, 255, 0, 0.55);
}

.dbl-map-search button {
	height: 40px;
	padding: 0 14px;
	border-radius: 9px;
	background: var(--db-lime);
	color: var(--db-navy);
	border: none;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	flex-shrink: 0;
}

.dbl-map-list {
	flex: 1;
	overflow-y: auto;
	max-height: 520px;
}

.dbl-map-list-header {
	padding: 0.625rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.35);
}

.dbl-map-list-header button {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.35);
	font-weight: 500;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	padding: 0;
}

.dbl-map-sidebar-cta {
	padding: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dbl-map-sidebar-cta a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 44px;
	border-radius: 0.75rem;
	background: var(--db-lime);
	color: var(--db-navy);
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
}

.dbl-loc-item {
	display: block;
	width: 100%;
	text-align: left;
	padding: 11px 16px;
	background: transparent;
	border: none;
	border-left: 3px solid transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	cursor: pointer;
	font-family: inherit;
}

.dbl-loc-item.active {
	border-left-color: var(--db-green);
	background: rgba(77, 163, 95, 0.12);
}

.dbl-loc-item-inner {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.dbl-loc-item .pin {
	flex-shrink: 0;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.3);
}

.dbl-loc-item.active .pin {
	color: var(--db-green);
}

.dbl-loc-item strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dbl-loc-item.active strong {
	color: #fff;
}

.dbl-loc-item .addr {
	display: block;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.45;
}

.dbl-loc-item .dist {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--db-green);
	margin-top: 3px;
}

#dbl-map {
	height: 320px;
	min-height: 320px;
}

@media (min-width: 1024px) {
	#dbl-map {
		height: 100%;
		min-height: 580px;
	}
}

.dbl-loc-cta {
	text-align: center;
	margin-top: 2rem;
}

/* Insurance — 2 col on navy */
.dbl-ins-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
	.dbl-ins-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.dbl-glass-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 1rem;
	padding: 2rem;
}

.dbl-glass-card h3 {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 1.5rem;
	letter-spacing: -0.01em;
}

.dbl-ins-row {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.25rem;
}

.dbl-ins-row:last-child {
	margin-bottom: 0;
}

.dbl-ins-tag {
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	padding: 0.25rem 0.625rem;
	border-radius: 0.375rem;
	background: rgba(187, 255, 0, 0.14);
	color: var(--db-lime);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	flex-shrink: 0;
	margin-top: 2px;
}

.dbl-ins-row h4 {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 4px;
}

.dbl-ins-row p {
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin: 0;
}

.dbl-plans-divider {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1.5rem;
	margin-top: 0.5rem;
}

.dbl-plans-label {
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 12px;
}

.dbl-plan-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.dbl-plan-pill {
	font-size: 15px;
	font-weight: 600;
	padding: 0.375rem 0.75rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.09);
	color: rgba(255, 255, 255, 0.65);
}

.dbl-fin-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.07);
	margin-bottom: 1rem;
}

.dbl-fin-row:last-of-type {
	margin-bottom: 2rem;
}

.dbl-fin-stat {
	font-size: 15px;
	font-weight: 800;
	color: var(--db-lavender);
	min-width: 90px;
	flex-shrink: 0;
}

.dbl-fin-label {
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
}

.dbl-fin-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--db-lavender);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.dbl-fin-body {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.72);
	margin: 0 0 28px;
}

.dbl-verify-box {
	margin-top: 1.5rem;
}

/* Testimonials */
.dbl-testimonials-head {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

@media (min-width: 640px) {
	.dbl-testimonials-head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
}

.dbl-testimonials {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.dbl-testimonials {
		grid-template-columns: repeat(3, 1fr);
	}
}

.dbl-testimonial {
	background: #fff;
	border: 1px solid rgba(0, 47, 71, 0.08);
	border-radius: 1rem;
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.dbl-testimonial .quote-icon {
	color: var(--db-green);
	opacity: 0.7;
	flex-shrink: 0;
}

.dbl-testimonial blockquote {
	font-size: 15px;
	font-weight: 400;
	color: rgba(0, 47, 71, 0.8);
	line-height: 1.75;
	margin: 0;
	flex: 1;
	font-style: normal;
}

.dbl-testimonial-footer {
	border-top: 1px solid rgba(0, 47, 71, 0.08);
	padding-top: 18px;
}

.dbl-testimonial-stars {
	display: flex;
	gap: 2px;
	color: var(--db-green);
	margin-bottom: 0.5rem;
}

.dbl-testimonial cite {
	font-style: normal;
	font-size: 15px;
	font-weight: 700;
	color: var(--db-navy);
	display: block;
}

.dbl-testimonial .loc {
	font-size: 15px;
	font-weight: 400;
	color: rgba(0, 47, 71, 0.45);
	margin-top: 2px;
}

/* FAQ */
.dbl-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 3rem;
}

.dbl-faq-item {
	border-radius: 0.75rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.dbl-faq-item.open {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(187, 255, 0, 0.18);
}

.dbl-faq-item button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 20px 22px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}

.dbl-faq-item .q {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	line-height: 1.4;
}

.dbl-faq-item .chev {
	color: rgba(255, 255, 255, 0.4);
	flex-shrink: 0;
	transition: transform 0.22s;
}

.dbl-faq-item.open .chev {
	color: var(--db-lime);
	transform: rotate(180deg);
}

.dbl-faq-item .a {
	display: none;
	padding: 0 22px 20px;
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.7;
	margin: 0;
}

.dbl-faq-item.open .a {
	display: block;
}

/* Disclaimer */
.dbl-disclaimer {
	background: var(--db-cream);
	border-top: 1px solid rgba(0, 47, 71, 0.08);
	padding: 2rem 0;
}

.dbl-disclaimer p {
	font-size: 13px;
	line-height: 1.7;
	color: rgba(0, 47, 71, 0.45);
	max-width: 900px;
	margin: 0;
}

/* Mobile sticky bar */
.dbl-mobile-bar {
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: var(--db-navy);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.75rem 1rem;
	padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
	gap: 0.75rem;
}

@media (min-width: 1024px) {
	.dbl-mobile-bar {
		display: none;
	}
}

.dbl-mobile-bar a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 50px;
	border-radius: 0.75rem;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.dbl-mobile-bar .phone {
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	color: #fff;
}

.dbl-mobile-bar .cta {
	background: var(--db-lime);
	color: var(--db-navy);
}

.dbl-map-marker {
	background: transparent !important;
	border: none !important;
}
