.wrc-guide,
.wrc-guide * {
	box-sizing: border-box;
}

.wrc-guide {
	--wrc-bg: #080808;
	--wrc-soft: #0e0e0f;
	--wrc-card: #141415;
	--wrc-card-2: #19191a;
	--wrc-border: rgba(255, 255, 255, 0.11);
	--wrc-gold: #b19540;
	--wrc-gold-light: #d8bf70;
	--wrc-text: #f7f7f3;
	--wrc-muted: #b9b9b3;
	--wrc-radius: 22px;
	position: relative;
	width: 100vw;
	max-width: none;
	margin: 0 0 0 calc(50% - 50vw);
	overflow: hidden;
	background: var(--wrc-bg);
	color: var(--wrc-text);
	font-family: inherit;
	font-size: 17px;
	line-height: 1.65;
}

.wrc-guide h1,
.wrc-guide h2,
.wrc-guide h3,
.wrc-guide p,
.wrc-guide ol,
.wrc-guide ul,
.wrc-guide dl,
.wrc-guide dd {
	margin-top: 0;
}

.wrc-guide h1,
.wrc-guide h2,
.wrc-guide h3 {
	color: var(--wrc-text);
	font-family: inherit;
	font-weight: 750;
	letter-spacing: -0.035em;
}

.wrc-guide h1 {
	max-width: 920px;
	margin-bottom: 22px;
	font-size: clamp(2.55rem, 6vw, 5.5rem);
	line-height: 0.98;
}

.wrc-guide h2 {
	margin-bottom: 16px;
	font-size: clamp(1.75rem, 3.4vw, 2.85rem);
	line-height: 1.08;
}

.wrc-guide h3 {
	margin-bottom: 7px;
	font-size: 1.08rem;
	line-height: 1.25;
}

.wrc-guide p {
	margin-bottom: 18px;
	color: var(--wrc-muted);
}

.wrc-guide strong {
	color: var(--wrc-text);
}

.wrc-guide a {
	color: var(--wrc-gold-light);
}

.wrc-guide__shell {
	position: relative;
	z-index: 1;
	width: min(1120px, calc(100% - 44px));
	margin: 0 auto;
}

.wrc-guide__shell--narrow {
	width: min(900px, calc(100% - 44px));
}

.wrc-guide__hero {
	position: relative;
	padding: clamp(76px, 10vw, 132px) 0 clamp(68px, 8vw, 104px);
	border-bottom: 1px solid var(--wrc-border);
	background:
		radial-gradient(circle at 76% 17%, rgba(177, 149, 64, 0.24), transparent 27%),
		radial-gradient(circle at 13% 90%, rgba(216, 191, 112, 0.08), transparent 31%),
		linear-gradient(145deg, #090909 0%, #10100e 58%, #080808 100%);
}

.wrc-guide__hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
	background-size: 54px 54px;
	content: "";
	mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.wrc-guide__eyebrow,
.wrc-guide__label {
	display: block;
	margin: 0 0 16px;
	color: var(--wrc-gold-light);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.wrc-guide__lead {
	max-width: 780px;
	margin-bottom: 25px !important;
	font-size: clamp(1.04rem, 1.7vw, 1.28rem);
	line-height: 1.58;
}

.wrc-guide__hero-offer {
	display: inline-flex;
	align-items: baseline;
	gap: 12px;
	margin: 0 0 19px;
	padding: 9px 15px;
	border: 1px solid rgba(216, 191, 112, 0.27);
	border-radius: 999px;
	background: rgba(177, 149, 64, 0.08);
}

.wrc-guide__hero-offer span {
	color: var(--wrc-muted);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wrc-guide__hero-offer strong {
	color: var(--wrc-gold-light);
	font-size: 1.18rem;
}

.wrc-guide__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 18px;
	margin-bottom: 29px;
}

.wrc-guide__badges span {
	position: relative;
	padding-left: 20px;
	color: #d8d8d2;
	font-size: 0.9rem;
	font-weight: 650;
}

.wrc-guide__badges span::before {
	position: absolute;
	top: 0.13em;
	left: 0;
	color: var(--wrc-gold-light);
	content: "✓";
	font-weight: 900;
}

.wrc-guide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wrc-guide__button {
	display: inline-flex;
	min-height: 51px;
	align-items: center;
	justify-content: center;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.wrc-guide__button:hover {
	transform: translateY(-2px);
}

.wrc-guide__button:focus-visible,
.wrc-guide summary:focus-visible,
.wrc-guide__text-link:focus-visible {
	outline: 3px solid rgba(216, 191, 112, 0.45);
	outline-offset: 3px;
}

.wrc-guide__button--primary {
	background: linear-gradient(135deg, var(--wrc-gold-light), var(--wrc-gold));
	box-shadow: 0 13px 32px rgba(177, 149, 64, 0.18);
	color: #090909 !important;
}

.wrc-guide__button--primary:hover {
	background: linear-gradient(135deg, #e4cf89, #b99b3e);
}

.wrc-guide__button--outline {
	border-color: var(--wrc-border);
	background: rgba(255, 255, 255, 0.025);
	color: var(--wrc-text) !important;
}

.wrc-guide__button--outline:hover {
	border-color: rgba(216, 191, 112, 0.52);
	background: rgba(216, 191, 112, 0.06);
}

.wrc-guide__section {
	padding: clamp(62px, 8vw, 100px) 0;
	border-bottom: 1px solid var(--wrc-border);
}

.wrc-guide__section--soft {
	background: var(--wrc-soft);
}

.wrc-guide__intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.7fr);
	gap: 22px;
}

.wrc-guide__card {
	padding: clamp(25px, 4vw, 40px);
	border: 1px solid var(--wrc-border);
	border-radius: var(--wrc-radius);
	background: linear-gradient(150deg, var(--wrc-card-2), var(--wrc-card));
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
}

.wrc-guide__card p:last-child {
	margin-bottom: 0;
}

.wrc-guide__summary dl,
.wrc-guide__summary dd {
	margin-bottom: 0;
}

.wrc-guide__summary dl > div {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	padding: 13px 0;
	border-bottom: 1px solid var(--wrc-border);
}

.wrc-guide__summary dl > div:last-child {
	border-bottom: 0;
}

.wrc-guide__summary dt {
	color: var(--wrc-muted);
	font-size: 0.85rem;
}

.wrc-guide__summary dd {
	max-width: 170px;
	color: var(--wrc-text);
	font-size: 0.9rem;
	font-weight: 750;
	text-align: right;
}

.wrc-guide__requirements {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 22px;
	border: 1px solid var(--wrc-border);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.018);
}

.wrc-guide__requirements > div {
	padding: 17px 18px;
	border-right: 1px solid var(--wrc-border);
}

.wrc-guide__requirements > div:last-child {
	border-right: 0;
}

.wrc-guide__requirements strong,
.wrc-guide__requirements span {
	display: block;
}

.wrc-guide__requirements strong {
	margin-bottom: 2px;
	font-size: 0.91rem;
}

.wrc-guide__requirements span {
	color: var(--wrc-muted);
	font-size: 0.79rem;
}

.wrc-guide__section-head {
	max-width: 760px;
	margin-bottom: 32px;
}

.wrc-guide__section-head p:last-child {
	margin-bottom: 0;
}

.wrc-guide__steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wrc-guide__step {
	display: grid;
	grid-template-columns: 43px minmax(0, 1fr);
	gap: 16px;
	min-height: 154px;
	padding: 23px;
	border: 1px solid var(--wrc-border);
	border-radius: 18px;
	background: var(--wrc-card);
}

.wrc-guide__step-number {
	display: inline-flex;
	width: 43px;
	height: 43px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(216, 191, 112, 0.26);
	border-radius: 50%;
	background: rgba(177, 149, 64, 0.09);
	color: var(--wrc-gold-light);
	font-size: 0.9rem;
	font-weight: 900;
}

.wrc-guide__step p {
	margin-bottom: 0;
	font-size: 0.94rem;
}

.wrc-guide__notice {
	margin-top: 17px;
	padding: 17px 20px;
	border: 1px solid rgba(216, 191, 112, 0.23);
	border-radius: 15px;
	background: rgba(177, 149, 64, 0.07);
	color: var(--wrc-muted);
}

.wrc-guide__notice--warning {
	border-color: rgba(235, 160, 81, 0.35);
	background: rgba(203, 112, 32, 0.08);
}

.wrc-guide__service {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	align-items: center;
	gap: 30px;
	margin-top: 22px;
	padding: clamp(25px, 4vw, 40px);
	border: 1px solid rgba(216, 191, 112, 0.25);
	border-radius: var(--wrc-radius);
	background:
		radial-gradient(circle at 100% 0%, rgba(177, 149, 64, 0.16), transparent 35%),
		var(--wrc-card);
}

.wrc-guide__service h2 {
	font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.wrc-guide__service p:last-child,
.wrc-guide__service ol:last-child {
	margin-bottom: 0;
}

.wrc-guide__service ol {
	padding-left: 22px;
	color: var(--wrc-muted);
}

.wrc-guide__service li {
	margin-bottom: 5px;
}

.wrc-guide__service-count {
	display: flex;
	min-height: 190px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
	border: 1px solid var(--wrc-border);
	border-radius: 18px;
	background: rgba(0, 0, 0, 0.2);
	text-align: center;
}

.wrc-guide__service-count strong {
	color: var(--wrc-gold-light);
	font-size: 4rem;
	line-height: 1;
}

.wrc-guide__service-count span {
	margin: 7px 0 13px;
	color: var(--wrc-muted);
	font-size: 0.82rem;
}

.wrc-guide__service-count a {
	font-size: 0.82rem;
	font-weight: 750;
}

.wrc-guide__troubleshooting,
.wrc-guide__faq {
	border: 1px solid var(--wrc-border);
	border-radius: 16px;
	background: var(--wrc-card);
}

.wrc-guide__troubleshooting summary,
.wrc-guide__faq summary {
	position: relative;
	padding: 21px 56px 21px 22px;
	color: var(--wrc-text);
	cursor: pointer;
	font-weight: 780;
	list-style: none;
}

.wrc-guide__troubleshooting summary::-webkit-details-marker,
.wrc-guide__faq summary::-webkit-details-marker {
	display: none;
}

.wrc-guide__troubleshooting summary::after,
.wrc-guide__faq summary::after {
	position: absolute;
	top: 50%;
	right: 22px;
	color: var(--wrc-gold-light);
	content: "+";
	font-size: 1.4rem;
	font-weight: 400;
	transform: translateY(-50%);
}

.wrc-guide__troubleshooting[open] summary::after,
.wrc-guide__faq[open] summary::after {
	content: "−";
}

.wrc-guide__troubleshooting > div,
.wrc-guide__faq > div {
	padding: 0 22px 22px;
	border-top: 1px solid var(--wrc-border);
}

.wrc-guide__checklist {
	margin: 19px 0 13px;
	padding-left: 22px;
	color: var(--wrc-muted);
}

.wrc-guide__checklist li {
	margin-bottom: 7px;
}

.wrc-guide__text-link {
	display: inline-block;
	font-weight: 750;
}

.wrc-guide__faqs {
	display: grid;
	gap: 10px;
}

.wrc-guide__faq p {
	margin: 17px 0 0;
}

.wrc-guide__cta {
	padding: clamp(72px, 10vw, 122px) 0;
	background:
		radial-gradient(circle at 50% 0%, rgba(177, 149, 64, 0.2), transparent 40%),
		#090909;
	text-align: center;
}

.wrc-guide__cta p {
	max-width: 650px;
	margin-right: auto;
	margin-left: auto;
}

.wrc-guide__cta .wrc-guide__actions {
	justify-content: center;
}

.wrc-guide__price {
	margin: 24px 0 16px;
	color: var(--wrc-gold-light);
	font-size: clamp(1.25rem, 3vw, 1.8rem);
	font-weight: 850;
}

/*
 * Full-height background for the current Astra layout.
 * Astra's "separate container" mode adds a light page background, vertical
 * margins on #primary and large padding inside .ast-article-single. These
 * overrides are deliberately scoped to posts renewed by this plugin.
 */
body.wrc-renewed-post.single-post {
	overflow-x: hidden;
	background: #080808 !important;
}

.wrc-renewed-post.single-post #page,
.wrc-renewed-post.single-post #content.site-content,
.wrc-renewed-post.single-post #content.site-content > .ast-container,
.wrc-renewed-post.single-post #primary,
.wrc-renewed-post.single-post #main,
.wrc-renewed-post.single-post .ast-article-single,
.wrc-renewed-post.single-post .single-layout-1,
.wrc-renewed-post.single-post .entry-content {
	background: #080808 !important;
}

.wrc-renewed-post.single-post #content.site-content {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.wrc-renewed-post.single-post #content.site-content > .ast-container {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.wrc-renewed-post.single-post.ast-separate-container #primary,
.wrc-renewed-post.single-post.ast-two-container #primary {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.wrc-renewed-post.single-post.ast-separate-container .ast-article-single,
.wrc-renewed-post.single-post .ast-article-single {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
}

/* wpautop may wrap the non-visible generator marker in an empty paragraph. */
.wrc-renewed-post.single-post .entry-content > p:first-child:empty {
	display: none !important;
	margin: 0 !important;
}

/* Keep Astra's Previous/Next navigation, but continue the dark background. */
.wrc-renewed-post.single-post #main > .post-navigation {
	width: min(1120px, calc(100% - 44px));
	margin: 0 auto !important;
	padding: 28px 0 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.11) !important;
	background: #080808 !important;
}

.wrc-renewed-post.single-post #main > .post-navigation a {
	color: #d8bf70 !important;
}

.wrc-renewed-post.single-post #main > .post-navigation a:hover,
.wrc-renewed-post.single-post #main > .post-navigation a:focus {
	color: #f7f7f3 !important;
}

.wrc-renewed-post.single-post #content article > .entry-header,
.wrc-renewed-post.single-post #content article > .entry-footer,
.wrc-renewed-post.single-post #right-sidebar,
.wrc-renewed-post.single-post .widget-area.sidebar-primary {
	display: none !important;
}

.wrc-renewed-post.single-post .content-area,
.wrc-renewed-post.single-post #primary {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	border: 0 !important;
}

.wrc-renewed-post.single-post .entry-content {
	margin: 0 !important;
}

@media (max-width: 800px) {
	.wrc-guide__intro-grid,
	.wrc-guide__service {
		grid-template-columns: 1fr;
	}

	.wrc-guide__requirements {
		grid-template-columns: repeat(2, 1fr);
	}

	.wrc-guide__requirements > div:nth-child(2) {
		border-right: 0;
	}

	.wrc-guide__requirements > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--wrc-border);
	}

	.wrc-guide__service-count {
		min-height: 150px;
	}
}

@media (max-width: 600px) {
	.wrc-renewed-post.single-post #main > .post-navigation {
		width: calc(100% - 28px);
	}

	.wrc-guide {
		font-size: 16px;
	}

	.wrc-guide__shell,
	.wrc-guide__shell--narrow {
		width: min(100% - 28px, 1120px);
	}

	.wrc-guide__hero {
		padding-top: 64px;
	}

	.wrc-guide__steps {
		grid-template-columns: 1fr;
	}

	.wrc-guide__step {
		min-height: 0;
	}

	.wrc-guide__actions,
	.wrc-guide__button {
		width: 100%;
	}

	.wrc-guide__badges {
		display: grid;
		gap: 7px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wrc-guide__button {
		transition: none;
	}
}
