/* ==========================================================================
   EXPUNGEMENT.CSS — The Law Offices of Jimmy Cha, APC.
   Clear Your Record / Expungement (expungement.php). Slug "expungement".
   Tone: warmer, forward-looking — gold-forward accents (opportunity, not crisis).
   01 Hero · 02 Quiz · 03 What It Does · 04 Why It Matters · 05 Process/Cost · 06 CTA
   ========================================================================== */

@keyframes jcFadeUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   01 — HERO
   ========================================================================== */
.exp-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(55% 70% at 50% 0%, rgba(184, 148, 94, 0.16), transparent 62%),
		var(--ink);
	border-bottom: 1px solid var(--gold-dim);
}
.exp-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 880px;
	margin-inline: auto;
	text-align: center;
	padding-block: 100px 84px;
}
.exp-hero-title {
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 700;
	color: var(--warm-white);
	line-height: 1.1;
	letter-spacing: -0.4px;
	margin-bottom: 20px;
	animation: jcFadeUp 0.7s ease both;
}
.exp-hero-title em {
	font-style: italic;
	background: var(--grad-gold);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.exp-hero-sub {
	font-size: clamp(16px, 2vw, 20px);
	color: var(--silver-light);
	max-width: 660px;
	margin: 0 auto 32px;
	animation: jcFadeUp 0.7s ease 0.12s both;
}
.exp-hero-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 22px;
	animation: jcFadeUp 0.7s ease 0.24s both;
}
.exp-hero .reassurance-line {
	color: var(--gold);
	animation: jcFadeUp 0.7s ease 0.32s both;
}

/* ==========================================================================
   02 — ELIGIBILITY QUIZ
   ========================================================================== */
.exp-quiz-section {
	background: var(--charcoal);
}
.exp-centered {
	margin-inline: auto;
	text-align: center;
}
.exp-centered-intro {
	margin-inline: auto;
	text-align: center;
}
.eq-quiz {
	max-width: 760px;
	margin: 16px auto 0;
	border: 1px solid var(--gunmetal);
	border-radius: var(--radius-lg);
	padding: 36px;
	background: var(--grad-surface);
}
.eq-question {
	margin-bottom: 26px;
}
.eq-q-label {
	display: block;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 8px;
}
.eq-q-text {
	font-size: 18px;
	color: var(--warm-white);
	margin-bottom: 14px;
	line-height: 1.4;
}
.eq-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.eq-option {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 14px 18px;
	border: 1px solid var(--gunmetal);
	border-radius: 10px;
	background: var(--charcoal);
	cursor: pointer;
	font-size: 15px;
	color: var(--silver-light);
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.eq-option:hover {
	border-color: rgba(184, 148, 94, 0.5);
}
.eq-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.eq-option::before {
	content: '';
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid var(--gray-300);
	transition: border-color 0.2s ease, background 0.2s ease;
}
.eq-option:has(input:checked) {
	border-color: var(--gold);
	background: var(--gold-dim);
	color: var(--warm-white);
}
.eq-option:has(input:checked)::before {
	border-color: var(--gold);
	background: radial-gradient(var(--gold) 42%, transparent 46%);
}
.eq-submit {
	margin-top: 8px;
}
.eq-error {
	margin-top: 14px;
	font-size: 14px;
	color: var(--crimson-light);
}

/* Results */
.eq-results {
	max-width: 760px;
	margin-inline: auto;
}
.eq-result {
	margin-top: 22px;
	border: 1px solid transparent;
	border-radius: var(--radius-lg);
	padding: 34px;
	animation: jcFadeUp 0.4s ease both;
}
.eq-result--good {
	border-color: rgba(184, 148, 94, 0.4);
	background: linear-gradient(160deg, rgba(184, 148, 94, 0.09), rgba(20, 20, 25, 0.45));
}
.eq-result--caution {
	border-color: var(--crimson-dim);
	background: linear-gradient(160deg, rgba(166, 24, 44, 0.1), rgba(20, 20, 25, 0.45));
}
.eq-result-icon {
	font-size: 34px;
	margin-bottom: 14px;
	display: block;
}
.eq-result--good .eq-result-icon {
	color: var(--gold);
}
.eq-result--caution .eq-result-icon {
	color: var(--crimson-light);
}
.eq-result-title {
	font-size: 26px;
	color: var(--warm-white);
	margin-bottom: 12px;
}
.eq-result p {
	font-size: 15.5px;
	color: var(--silver-light);
	line-height: 1.7;
}
.eq-result .btn {
	margin-top: 20px;
}

/* ==========================================================================
   03 — WHAT EXPUNGEMENT DOES
   ========================================================================== */
.exp-does-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 12px;
}
.exp-does-card {
	border: 1px solid var(--gunmetal);
	border-radius: var(--radius-lg);
	padding: 28px;
	background: var(--grad-surface);
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.exp-does-card:hover {
	transform: translateY(-4px);
	border-color: rgba(184, 148, 94, 0.4);
}
.exp-does-icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 13px;
	font-size: 20px;
	color: var(--gold);
	background: var(--gold-dim);
	border: 1px solid rgba(184, 148, 94, 0.3);
	margin-bottom: 16px;
}
.exp-does-name {
	font-size: 20px;
	color: var(--warm-white);
	margin-bottom: 10px;
	line-height: 1.25;
}
.exp-does-card p {
	font-size: 14.5px;
	color: var(--silver-light);
	line-height: 1.65;
}

/* ==========================================================================
   04 — WHY IT MATTERS (two-column editorial)
   ========================================================================== */
.exp-why-section {
	background: var(--charcoal);
}
.exp-why-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 56px;
	align-items: start;
}
.exp-why-aside {
	position: sticky;
	top: 104px;
}
.exp-why-aside .section-title {
	margin-bottom: 0;
}
.exp-why-aside::after {
	content: '';
	display: block;
	width: 56px;
	height: 3px;
	margin-top: 24px;
	background: var(--grad-gold);
	border-radius: 4px;
}
.exp-why-body p {
	font-size: 17px;
	color: var(--silver-light);
	line-height: 1.8;
	margin-bottom: 20px;
}
.exp-why-close {
	margin-top: 26px !important;
	padding: 22px 28px;
	border-left: 3px solid var(--gold);
	background: var(--gold-dim);
	border-radius: 0 var(--radius) var(--radius) 0;
	color: var(--warm-white) !important;
	font-size: 17px !important;
}

/* ==========================================================================
   05 — THE PROCESS AND COST
   ========================================================================== */
.exp-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 12px;
	margin-bottom: 24px;
	align-items: start;
}
.exp-step {
	display: flex;
	gap: 18px;
	padding: 26px;
	border: 1px solid var(--gunmetal);
	border-radius: var(--radius);
	background: var(--grad-surface);
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.exp-step:hover {
	transform: translateY(-3px);
	border-color: rgba(184, 148, 94, 0.4);
}
.exp-step-num {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	color: var(--gold);
	background: var(--gold-dim);
	border: 1px solid rgba(184, 148, 94, 0.3);
}
.exp-step-title {
	font-size: 20px;
	color: var(--warm-white);
	margin-bottom: 8px;
}
.exp-step-body p {
	font-size: 14.5px;
	color: var(--silver-light);
	line-height: 1.65;
}
.exp-meta-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.exp-meta-card {
	border: 1px solid transparent;
	border-radius: var(--radius-lg);
	padding: 28px;
	background:
		linear-gradient(160deg, rgba(184, 148, 94, 0.08), rgba(20, 20, 25, 0.4)) padding-box,
		linear-gradient(160deg, rgba(184, 148, 94, 0.4), rgba(184, 148, 94, 0.08)) border-box;
}
.exp-meta-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	font-size: 19px;
	color: var(--gold);
	background: var(--gold-dim);
	border: 1px solid rgba(184, 148, 94, 0.3);
	margin-bottom: 14px;
}
.exp-meta-title {
	font-size: 20px;
	color: var(--gold-light);
	margin-bottom: 8px;
}
.exp-meta-card p {
	font-size: 14.5px;
	color: var(--silver-light);
	line-height: 1.65;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
	.exp-does-grid {
		grid-template-columns: 1fr;
	}
	.exp-why-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.exp-why-aside {
		position: static;
	}
	.exp-why-aside::after {
		margin-top: 18px;
	}
	.exp-steps {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.exp-hero-inner {
		padding-block: 68px 56px;
	}
	.exp-hero-actions .btn {
		width: 100%;
	}
	.eq-quiz {
		padding: 24px;
	}
	.exp-meta-row {
		grid-template-columns: 1fr;
	}
}
