@charset "UTF-8";

/* ── Etc Pages — consolidated styles for static HTML pages in /etc/ ── */

/* Body padding for fixed header (6.72rem) + accent bar (3.77rem) */
.etc-page-body {
	padding-top: calc(6.72rem + 3.77rem);
}

/* ── Legal Pages (Privacy, Terms, Cookie, EULA) ── */
.legal-hero {
	background: var(--white-light);
	padding: 8rem 2rem 6rem;
	text-align: center;
}

.legal-hero h1 {
	font-size: 4rem;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 1.5rem;
}

.legal-content {
	max-width: 120rem;
	margin: 0 auto;
	padding: 6rem 2rem;
}

.legal-content.legal-numbered {
	max-width: 90rem;
}

.legal-intro {
	background: var(--white-light);
	padding: 2.5rem;
	margin-bottom: 4rem;
	border-left: 4px solid var(--black);
}

.legal-intro p {
	font-size: 1.5rem;
	color: var(--black-light);
	line-height: 1.6;
	margin: 0 0 1.2rem 0;
}

.legal-intro p:last-child {
	margin-bottom: 0;
}

.legal-section {
	margin-bottom: 4rem;
}

.legal-section:last-child {
	margin-bottom: 0;
}

.legal-section h2 {
	font-size: 2.2rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 1.5rem;
	padding-bottom: 0.8rem;
	border-bottom: 2px solid var(--black);
	display: inline-block;
}

.legal-section h2 span.num {
	display: inline-block;
	width: 3rem;
	color: var(--black-light);
}

.legal-section p {
	font-size: 1.5rem;
	color: var(--black-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.legal-section p:last-child {
	margin-bottom: 0;
}

.legal-section ul {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
}

.legal-section ul li {
	font-size: 1.5rem;
	color: var(--black-light);
	line-height: 1.6;
	padding-left: 2rem;
	position: relative;
	margin-bottom: 0.8rem;
}

.legal-section ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.9rem;
	width: 6px;
	height: 6px;
	background: var(--black-light);
	border-radius: 50%;
}

.legal-section a {
	color: var(--black);
	text-decoration: underline;
}

.legal-section a:hover {
	color: var(--black-light);
}

/* Terms/EULA: numbered sections — add .legal-numbered to the parent .legal-content */
.legal-numbered .legal-section {
	margin-bottom: 3rem;
}

.legal-numbered .legal-section h2 {
	font-size: 1.8rem;
	margin-bottom: 1.2rem;
	border-bottom: none;
	display: block;
}

/* ── About Page ── */
.about-hero {
	background: var(--white-light);
	padding: 8rem 2rem 6rem;
	text-align: center;
}

.about-hero h1 {
	font-size: 4rem;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 1.5rem;
}

.about-hero p {
	font-size: 1.8rem;
	color: var(--black-light);
	max-width: 70rem;
	margin: 0 auto;
	line-height: 1.7;
}

.about-content {
	max-width: 90rem;
	margin: 0 auto;
	padding: 6rem 2rem;
}

.about-section {
	margin-bottom: 6rem;
}

.about-section:last-child {
	margin-bottom: 0;
}

.about-section h2 {
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--black);
	display: inline-block;
}

.about-section p {
	font-size: 1.6rem;
	color: var(--black-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.features-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	margin-top: 3rem;
}

.feature-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.feature-item h3 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 0.5rem;
}

.feature-item p {
	font-size: 1.5rem;
	color: var(--black-light);
	margin-bottom: 0;
}

.about-cta {
	background: var(--black);
	padding: 6rem 4rem;
	text-align: center;
	margin-top: 4rem;
	position: relative;
	border: 1px solid var(--black);
}

.about-cta::before {
	content: "";
	position: absolute;
	top: 1.2rem;
	left: 1.2rem;
	right: 1.2rem;
	bottom: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	pointer-events: none;
}

.about-cta .card-decoration {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.1rem;
	letter-spacing: 0.4rem;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.about-cta h2 {
	font-size: 2.6rem;
	font-weight: 300;
	color: #fff;
	margin-bottom: 0.5rem;
	border: none;
	padding: 0;
	display: block;
	letter-spacing: 0.15rem;
}

.about-cta .subtitle {
	color: rgba(255, 255, 255, 0.5);
	font-size: 1.2rem;
	letter-spacing: 0.2rem;
	margin-bottom: 2.5rem;
}

.about-cta p {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.75);
	max-width: 55rem;
	margin: 0 auto 1.5rem;
	line-height: 1.6;
}

.about-cta .divider {
	width: 6rem;
	height: 1px;
	background: rgba(255, 255, 255, 0.3);
	margin: 2rem auto;
}

.contact-email {
	display: inline-block;
	font-size: 1.4rem;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.05rem;
	font-style: normal;
}

/* ── FAQ Page ── */
.faq-hero {
	background: var(--white-light);
	padding: 8rem 2rem 6rem;
	text-align: center;
}

.faq-hero h1 {
	font-size: 4rem;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 1.5rem;
}

.faq-content {
	max-width: 90rem;
	margin: 0 auto;
	padding: 6rem 2rem;
}

.accordion {
	list-style: none;
	padding: 0;
	margin: 0;
}

.accordion-item {
	border-bottom: 1px solid var(--white-dark);
}

.accordion-header {
	width: 100%;
	padding: 2rem 0;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.accordion-header:hover {
	opacity: 0.7;
}

.accordion-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--black);
	line-height: 1.4;
}

.accordion-icon {
	flex-shrink: 0;
	width: 2.4rem;
	height: 2.4rem;
	position: relative;
	transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
	content: "";
	position: absolute;
	background: var(--black);
	transition: transform 0.3s ease;
}

.accordion-icon::before {
	width: 2.4rem;
	height: 2px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.accordion-icon::after {
	width: 2px;
	height: 2.4rem;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
	transform: translateX(-50%) rotate(90deg);
	opacity: 0;
}

.accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
	max-height: 200rem;
}

.accordion-content {
	padding: 0 0 2rem 0;
}

.accordion-content p {
	font-size: 1.6rem;
	color: var(--black-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.accordion-content p:last-child {
	margin-bottom: 0;
}

.accordion-content ul {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.accordion-content ul li {
	font-size: 1.5rem;
	color: var(--black-light);
	line-height: 1.6;
	margin-bottom: 0.5rem;
	list-style: none;
}

.accordion-content .category-list {
	padding-left: 0;
}

.accordion-content .category-list > li {
	margin-bottom: 2rem;
}

.accordion-content .category-list > li > strong {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--black);
	display: block;
	margin-bottom: 0.8rem;
}

.accordion-content .sub-list {
	padding-left: 1.5rem;
}

.accordion-content .sub-list li {
	font-size: 1.5rem;
	color: var(--black-light);
	line-height: 1.6;
	margin-bottom: 0.3rem;
}

/* ── Resource Pages (How to Become RON, How to Use NotaryBerry) ── */
.wizard-sidebar > h3 {
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--black-light);
	margin: 0 0 1.5rem 0;
	padding-left: 0.5rem;
}

.resource-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.resource-nav-item {
	padding: 1rem 1.5rem;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--black-light);
	border-radius: 0.6rem;
	cursor: pointer;
	transition: all 0.2s;
}

.resource-nav-item:hover {
	background: var(--white-light);
	color: var(--black);
}

.resource-nav-item.active {
	background: var(--brand);
	color: var(--white);
}

.resource-nav-item.disabled {
	color: var(--white-dark);
	cursor: not-allowed;
}

.resource-card {
	background: var(--white);
	border: 1px solid var(--white-dark);
	border-radius: 0.8rem;
	padding: 2.4rem;
}

.resource-card .card-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--white-dark);
}

.resource-card p {
	font-size: 1.5rem;
	color: var(--black-light);
	line-height: 1.6;
	margin-bottom: 1.2rem;
}

.resource-card ol {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: step-counter;
}

.resource-card ol > li {
	counter-increment: step-counter;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--white-light);
	font-size: 1.5rem;
	color: var(--black-light);
	line-height: 1.6;
}

.resource-card ol > li:last-child {
	border-bottom: none;
}

.resource-card ol > li::before {
	content: counter(step-counter) ".";
	font-weight: 600;
	color: var(--brand);
	margin-right: 0.8rem;
}

.resource-card ol > li > strong {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--black);
}

.resource-card ol > li > strong::before {
	/* Override counter for section headings — parent li still increments counter */
	content: none;
}

.resource-card ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0 2rem;
}

.resource-card ul li {
	font-size: 1.4rem;
	color: var(--black-light);
	line-height: 1.6;
	padding: 0.4rem 0;
	position: relative;
	padding-left: 1.8rem;
}

.resource-card ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1rem;
	width: 5px;
	height: 5px;
	background: var(--brand);
	border-radius: 50%;
}

.resource-card ul ul {
	margin-left: 1rem;
}

.resource-card a {
	color: var(--brand);
	text-decoration: underline;
	word-break: break-all;
}

.resource-card a:hover {
	color: var(--brand-dark);
}

.resource-card .coming-soon {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--black-light);
	font-size: 1.5rem;
}

/* Tab content toggle for resource pages */
.resource-tab { display: none; }
.resource-tab.active { display: block; }

/* ── Responsive ── */
@media screen and (max-width: 768px) {
	/* About */
	.about-hero {
		padding: 6rem 2rem 4rem;
	}

	.about-hero h1 {
		font-size: 3rem;
	}

	.about-hero p {
		font-size: 1.6rem;
	}

	.about-content {
		padding: 4rem 2rem;
	}

	.about-section h2 {
		font-size: 2.2rem;
	}

	.features-list {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-cta {
		padding: 4rem 2rem;
	}

	.about-cta::before {
		top: 1rem;
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	.about-cta h2 {
		font-size: 2rem;
		letter-spacing: 0.1rem;
	}

	.about-cta p {
		font-size: 1.4rem;
	}

	/* Legal */
	.legal-hero {
		padding: 6rem 2rem 4rem;
	}

	.legal-hero h1 {
		font-size: 3rem;
	}

	.legal-content {
		padding: 4rem 2rem;
	}

	.legal-intro {
		padding: 2rem;
	}

	.legal-section h2 {
		font-size: 1.8rem;
	}

	.legal-numbered .legal-section h2 {
		font-size: 1.6rem;
	}

	.legal-section p,
	.legal-section ul li {
		font-size: 1.4rem;
	}

	/* FAQ */
	.faq-hero {
		padding: 6rem 2rem 4rem;
	}

	.faq-hero h1 {
		font-size: 3rem;
	}

	.faq-content {
		padding: 4rem 2rem;
	}

	.accordion-title {
		font-size: 1.6rem;
	}

	.accordion-header {
		padding: 1.5rem 0;
	}

	/* Resource pages */
	.resource-nav {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.6rem;
	}

	.resource-nav-item {
		padding: 0.8rem 1.2rem;
		font-size: 1.3rem;
	}

	.resource-card {
		padding: 2rem;
	}

	.resource-card .card-title {
		font-size: 1.6rem;
	}
}
