/*
 * Corners Dentistry — House Plan Page Styles
 */

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.cdent-hp__hero {
	background: linear-gradient(160deg, var(--cdent-blue-dark) 0%, var(--cdent-blue) 100%);
	padding: 7rem 0 4rem;
}

.cdent-hp__title {
	font-family: var(--cdent-font-heading);
	font-size: clamp(3.5rem, 8vw, 6rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 3rem;
	line-height: 1;
}

.cdent-hp__intro {
	max-width: 620px;
}

.cdent-hp__intro-heading {
	font-family: var(--cdent-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--cdent-orange);
	margin: 0 0 1.25rem;
}

.cdent-hp__intro-list {
	list-style: disc;
	padding-left: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: .85rem;
}

.cdent-hp__intro-list li {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255,255,255,.92);
}

/* ── Pricing ────────────────────────────────────────────────────────────────── */
.cdent-hp__pricing {
	background: #f0ece7;
	padding: 4rem 0;
	text-align: center;
}

.cdent-hp__pricing-title {
	font-family: var(--cdent-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--cdent-blue-dark);
	margin: 0 0 2.5rem;
	letter-spacing: .03em;
}

.cdent-hp__price-cards {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.cdent-hp__price-card {
	width: 100%;
	max-width: 380px;
	border: 2px solid #c8c2ba;
	border-radius: 12px;
	padding: 1.5rem 2rem;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .35rem;
}

.cdent-hp__price {
	font-family: var(--cdent-font-heading);
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--cdent-blue-dark);
	line-height: 1;
}

.cdent-hp__price-label {
	font-size: .95rem;
	color: #555;
}

.cdent-hp__pricing-example {
	font-size: .9rem;
	color: #666;
	font-style: italic;
}

/* ── Benefits ───────────────────────────────────────────────────────────────── */
.cdent-hp__benefits {
	background: var(--cdent-blue);
	padding: 4rem 0 5rem;
}

.cdent-hp__benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.cdent-hp__benefits-heading {
	font-family: var(--cdent-font-heading);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 1.5rem;
	line-height: 1.1;
}

.cdent-hp__benefits-heading--orange {
	color: var(--cdent-orange);
}

/* included list — green bullet dots */
.cdent-hp__included-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.cdent-hp__included-list li {
	font-size: 1rem;
	color: rgba(255,255,255,.92);
	line-height: 1.5;
	padding-left: 1.4rem;
	position: relative;
}

.cdent-hp__included-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #4caf50;
	font-size: 1.1rem;
}

/* extra benefits */
.cdent-hp__extra-lead {
	font-size: 1rem;
	color: #fff;
	line-height: 1.55;
	margin: 0 0 1rem;
}

.cdent-hp__extra-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.cdent-hp__extra-list li {
	font-size: 1rem;
	color: rgba(255,255,255,.88);
	line-height: 1.5;
	padding-left: 1.2rem;
	position: relative;
}

.cdent-hp__extra-list li::before {
	content: '·';
	position: absolute;
	left: 0;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.3;
}

/* ── Mobile ─────────────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
	.cdent-hp__benefits-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

/* ── Active nav link ─────────────────────────────────────────────────────────── */
.cdent-nav__active {
	color: var(--cdent-orange) !important;
}
