.dscr-hero {
	padding: 28px;
	border: 1px solid rgba(35,97,123,0.12);
	border-radius: 8px;
	background: linear-gradient(135deg, #f7fbfa 0%, #ffffff 100%);
	box-shadow: 0 14px 34px rgba(23,72,93,0.08);
	margin-bottom: 28px;
}
.dscr-kicker {
	color: var(--brand-teal);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.dscr-hero h1 {
	color: #10262d;
	margin-bottom: 14px;
}
.dscr-hero p {
	color: #4a5c60;
	line-height: 1.7;
	margin-bottom: 0;
}
.dscr-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 24px 0 30px;
}
.dscr-highlight {
	padding: 20px;
	border-radius: 8px;
	background: #173f4d;
	color: #ffffff;
	box-shadow: 0 14px 28px rgba(23,72,93,0.14);
}
.dscr-highlight span {
	display: block;
	color: var(--brand-gold);
	font-size: 1.85rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 8px;
}
.dscr-highlight p {
	color: rgba(255,255,255,0.86);
	line-height: 1.45;
	margin: 0;
}
.dscr-calculator {
	border: 1px solid rgba(35,97,123,0.14);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(23,72,93,0.09);
	margin: 30px 0;
	overflow: hidden;
}
.dscr-calculator-header {
	padding: 22px 24px;
	background: linear-gradient(135deg, #173f4d 0%, #23617b 100%);
	color: #ffffff;
}
.dscr-calculator-header h2 {
	color: #ffffff;
	font-size: 1.35rem;
	margin-bottom: 6px;
}
.dscr-calculator-header p {
	color: rgba(255,255,255,0.84);
	margin: 0;
}
.dscr-calculator-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 0.65fr);
	gap: 24px;
	padding: 24px;
}
.dscr-input-panel {
	display: grid;
	gap: 22px;
}
.dscr-fieldset {
	padding-bottom: 4px;
}
.dscr-fieldset h3 {
	display: inline-block;
	color: var(--brand-teal);
	font-size: 0.95rem;
	font-weight: 900;
	border-bottom: 1px solid rgba(197,169,45,0.65);
	margin-bottom: 13px;
}
.dscr-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.dscr-fields-single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 360px;
}
.dscr-field label {
	display: block;
	color: #10262d;
	font-weight: 800;
	margin-bottom: 7px;
}
.dscr-sample {
	color: #6d787a;
	font-size: 0.8rem;
	font-style: italic;
	font-weight: 700;
	margin-left: 4px;
}
.dscr-field input {
	width: 100%;
	border: 1px solid rgba(35,97,123,0.2);
	border-radius: 8px;
	padding: 11px 12px;
	color: #10262d;
}
.dscr-field input[readonly] {
	background: #edf3f2;
	border-color: rgba(35,97,123,0.18);
	color: #173f4d;
	font-weight: 900;
	cursor: not-allowed;
}
.dscr-terms-field p {
	min-height: 45px;
	border: 1px solid rgba(35,97,123,0.14);
	border-radius: 8px;
	background: #f6faf9;
	color: #173f4d;
	font-weight: 800;
	line-height: 1.35;
	margin: 0;
	padding: 10px 12px;
}
.dscr-result {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 22px;
	border-radius: 8px;
	background: #f2fbf7;
	border: 1px solid rgba(102,199,165,0.22);
}
.dscr-result-label {
	color: var(--brand-teal);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
#dscrRatio {
	color: #10262d;
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	margin: 10px 0;
}
#dscrStatus {
	color: #4a5c60;
	line-height: 1.45;
	margin: 0;
}
.dscr-program-note {
	color: #173f4d;
	font-size: 0.92rem;
	font-style: italic;
	font-weight: 800;
	line-height: 1.35;
	margin: 14px 0 0;
}
.dscr-note {
	color: #657477;
	font-size: 0.9rem;
	line-height: 1.55;
	margin-top: 14px;
}
@media (max-width: 991px) {
	.dscr-highlights,
	.dscr-calculator-body,
	.dscr-fields {
		grid-template-columns: 1fr;
	}
}
