/* ==========================================================================
   C&C Vault — Sell page sections
   How It Works · Why Sell to C&C Vault · FAQ
   Black / red / white theme (accent = --accent, #e11d26).
   ========================================================================== */

.candc-sec {
	--cc-accent: var(--accent, #e11d26);
	--cc-card: #121215;
	--cc-border: rgba(255, 255, 255, 0.08);
	--cc-muted: #9a9ca1;
	padding: 54px 0;
	color: #f4f4f6;
}

.candc-sec-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- Shared section heading (matches the site's divider-flanked headings) --- */
.candc-sec-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 40px;
}

.candc-sec-line {
	height: 1px;
	width: 54px;
	flex: 0 0 auto;
	background: linear-gradient(90deg, transparent, var(--cc-accent));
}

.candc-sec-line:last-child {
	background: linear-gradient(90deg, var(--cc-accent), transparent);
}

.candc-sec-title {
	margin: 0;
	text-align: center;
	color: #fff;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 30px;
	line-height: 1.1;
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.candc-hiw-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	counter-reset: none;
}

.candc-hiw-step {
	position: relative;
	background: var(--cc-card);
	border: 1px solid var(--cc-border);
	border-radius: 14px;
	padding: 30px 22px 26px;
	text-align: center;
	transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.candc-hiw-step:hover {
	border-color: rgba(225, 29, 38, 0.55);
	transform: translateY(-3px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.candc-hiw-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: radial-gradient(120% 120% at 50% 0%, rgba(225, 29, 38, 0.32), transparent 70%), #0a0a0c;
	border: 1.5px solid var(--cc-accent);
	color: #fff;
	font-family: 'Anton', sans-serif;
	font-size: 21px;
	letter-spacing: 0.02em;
}

.candc-hiw-step-title {
	margin: 0 0 9px;
	color: #fff;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 17px;
	line-height: 1.2;
}

.candc-hiw-step-text {
	margin: 0;
	color: var(--cc-muted);
	font-family: 'Barlow', sans-serif;
	font-size: 14px;
	line-height: 1.6;
}

/* Connector line running between the step badges (desktop only). */
.candc-hiw-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 57px;
	right: -20px;
	width: 20px;
	height: 2px;
	background: linear-gradient(90deg, rgba(225, 29, 38, 0.6), rgba(225, 29, 38, 0.15));
	z-index: 1;
}

/* ==========================================================================
   Why Sell to C&C Vault
   ========================================================================== */
.candc-why-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px;
}

.candc-why-item {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--cc-card);
	border: 1px solid var(--cc-border);
	border-radius: 12px;
	padding: 16px 18px;
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.candc-why-item:hover {
	border-color: rgba(225, 29, 38, 0.45);
	transform: translateY(-2px);
}

.candc-why-check {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(225, 29, 38, 0.14);
	color: var(--cc-accent);
}

.candc-why-text {
	font-family: 'Barlow', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #f4f4f6;
}

/* ==========================================================================
   FAQ (native <details> accordion)
   ========================================================================== */
.candc-faq-inner {
	max-width: 820px;
}

.candc-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.candc-faq-item {
	background: var(--cc-card);
	border: 1px solid var(--cc-border);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.18s ease;
}

.candc-faq-item[open] {
	border-color: rgba(225, 29, 38, 0.5);
}

.candc-faq-q {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	color: #fff;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 17px;
	line-height: 1.3;
}

.candc-faq-q::-webkit-details-marker {
	display: none;
}

.candc-faq-q-text {
	flex: 1 1 auto;
}

/* Red +/- toggle that animates to a minus when open. */
.candc-faq-icon {
	position: relative;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
}

.candc-faq-icon::before,
.candc-faq-icon::after {
	content: "";
	position: absolute;
	background: var(--cc-accent);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.candc-faq-icon::before {
	top: 8px;
	left: 0;
	width: 18px;
	height: 2px;
}

.candc-faq-icon::after {
	left: 8px;
	top: 0;
	width: 2px;
	height: 18px;
}

.candc-faq-item[open] .candc-faq-icon::after {
	transform: rotate(90deg);
	opacity: 0;
}

.candc-faq-a {
	padding: 0 20px 18px;
}

.candc-faq-a p {
	margin: 0;
	color: var(--cc-muted);
	font-family: 'Barlow', sans-serif;
	font-size: 15px;
	line-height: 1.65;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
	.candc-hiw-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.candc-hiw-step:not(:last-child)::after {
		display: none;
	}
	.candc-sec-title {
		font-size: 26px;
	}
}

@media (max-width: 520px) {
	.candc-hiw-grid {
		grid-template-columns: 1fr;
	}
	.candc-sec {
		padding: 42px 0;
	}
}
