/**
 * SleepOps Crypto Payment Help Page Styles
 */

/* -------------------------------------------------------------------------
   Page wrapper
   ------------------------------------------------------------------------- */
.sleepops-crypto-help {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem 1.5rem 5rem;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #1a1a1a;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.crypto-help-header {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid #e6eaea;
}

.crypto-help-header__eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6b7c80;
	margin-bottom: 0.75rem;
}

.crypto-help-header__title {
	font-size: 2.25rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.crypto-help-header__lead {
	font-size: 1.05rem;
	color: #3d5054;
	line-height: 1.7;
	max-width: 680px;
	margin-bottom: 0.75rem;
}

.crypto-help-header__reassure {
	font-size: 0.95rem;
	color: #6b7c80;
	font-style: italic;
	margin: 0;
}

/* -------------------------------------------------------------------------
   Quick nav
   ------------------------------------------------------------------------- */
.crypto-help-nav {
	background: #f7f9fa;
	border: 1px solid #e6eaea;
	border-radius: 10px;
	padding: 1.25rem 1.75rem;
	margin-bottom: 3rem;
}

.crypto-help-nav__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6b7c80;
	margin-bottom: 0.75rem;
}

.crypto-help-nav__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.25rem;
}

.crypto-help-nav__list li a {
	font-size: 0.88rem;
	color: #2e3a3f;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.15s;
}

.crypto-help-nav__list li a:hover {
	color: #5a8a8f;
	text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Sections
   ------------------------------------------------------------------------- */
.crypto-help-section {
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid #e6eaea;
}

.crypto-help-section:last-child {
	border-bottom: none;
}

.crypto-help-section__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 1rem;
}

.crypto-help-section__body {
	font-size: 0.95rem;
	line-height: 1.75;
	color: #3d5054;
}

.crypto-help-section__body p {
	margin-bottom: 0.75rem;
}

.crypto-help-section__body p:last-child {
	margin-bottom: 0;
}

/* -------------------------------------------------------------------------
   Lists
   ------------------------------------------------------------------------- */
.crypto-help-list {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 1rem 0;
}

.crypto-help-list li {
	padding: 0.35rem 0 0.35rem 1.75rem;
	position: relative;
	font-size: 0.95rem;
	color: #3d5054;
}

.crypto-help-list li::before {
	content: '–';
	position: absolute;
	left: 0.4rem;
	color: #6b7c80;
	font-weight: 600;
}

.crypto-help-list--check li::before {
	content: '\2713';
	color: #1a6630;
}

.crypto-help-list--cross li::before {
	content: '\2717';
	color: #dc2626;
}

/* -------------------------------------------------------------------------
   Ordered steps
   ------------------------------------------------------------------------- */
.crypto-help-steps {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 1rem 0;
	counter-reset: step-counter;
}

.crypto-help-steps li {
	padding: 0.5rem 0 0.5rem 2.5rem;
	position: relative;
	font-size: 0.95rem;
	color: #3d5054;
	counter-increment: step-counter;
}

.crypto-help-steps li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 0.4rem;
	width: 1.6rem;
	height: 1.6rem;
	background: #2e3a3f;
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* -------------------------------------------------------------------------
   Warning box
   ------------------------------------------------------------------------- */
.crypto-help-warning {
	background: #fff8f0;
	border: 1px solid #fde68a;
	border-left: 3px solid #b45309;
	border-radius: 0 8px 8px 0;
	padding: 1rem 1.25rem;
	margin: 1rem 0;
}

.crypto-help-warning__title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #92400e;
	margin-bottom: 0.5rem;
}

.crypto-help-warning .crypto-help-list {
	margin: 0;
}

.crypto-help-warning .crypto-help-list li {
	color: #7a4a20;
}

/* -------------------------------------------------------------------------
   Contact block
   ------------------------------------------------------------------------- */
.crypto-help-contact {
	margin: 1rem 0;
	padding: 0.85rem 1.25rem;
	background: #f7f9fa;
	border-left: 3px solid #2e3a3f;
	border-radius: 0 6px 6px 0;
	font-size: 0.95rem;
}

.crypto-help-contact a {
	color: #2e3a3f;
	text-decoration: none;
	border-bottom: 1px solid #2e3a3f;
	transition: color 0.15s, border-color 0.15s;
}

.crypto-help-contact a:hover {
	color: #5a8a8f;
	border-color: #5a8a8f;
}

/* -------------------------------------------------------------------------
   Bottom CTA
   ------------------------------------------------------------------------- */
.crypto-help-bottom {
	text-align: center;
	padding: 2.5rem 1rem;
	border-top: 1px solid #e6eaea;
	margin-top: 1rem;
}

.crypto-help-bottom p {
	font-size: 1rem;
	color: #6b7c80;
	margin-bottom: 1.25rem;
}

.crypto-help-bottom__buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.crypto-help-btn {
	display: inline-block;
	text-align: center;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s, opacity 0.15s, border-color 0.15s;
	line-height: 1;
	min-width: 160px;
}

.crypto-help-btn--primary {
	background: #2e3a3f;
	color: #ffffff;
	border: 2px solid #2e3a3f;
}

.crypto-help-btn--primary:hover {
	background: #1a2326;
	border-color: #1a2326;
	color: #ffffff;
	text-decoration: none;
}

.crypto-help-btn--ghost {
	background: transparent;
	color: #2e3a3f;
	border: 2px solid #e6eaea;
}

.crypto-help-btn--ghost:hover {
	background: #f7f9fa;
	text-decoration: none;
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 640px) {
	.sleepops-crypto-help {
		padding: 2rem 1.25rem 3rem;
	}

	.crypto-help-header__title {
		font-size: 1.6rem;
	}

	.crypto-help-nav {
		padding: 1rem 1.25rem;
	}

	.crypto-help-nav__list {
		flex-direction: column;
		gap: 0.35rem;
	}

	.crypto-help-section__title {
		font-size: 1.1rem;
	}

	.crypto-help-steps li {
		padding-left: 2.25rem;
	}
}
