/* ============================================================
   single-software.css — single-software.php only.
   .card, .card-title, .version-pill, .rating-display live in
   components.css; .crumb lives in layout.css — not redefined here.
============================================================ */

.single-software-main {
	padding-bottom: 40px;
}

/* .ad-slot-top moved to layout.css so the same rules govern every
   page that uses the top slot (single, homepage, archive, search). */

/* ------------------------------------------------------------
   HERO (product hero card)
------------------------------------------------------------ */
.single-software-main .hero {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-2xl);
	padding: 22px 36px;          /* was 36px — vertical-only trim, horizontal unchanged */
	margin-bottom: 24px;
	box-shadow: var(--shadow-md);
	position: relative;
	overflow: hidden;
}

.single-software-main .hero::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, var(--primary-glow) 0%, transparent 65%);
	pointer-events: none;
}

.hero-main {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 32px;
	align-items: flex-start;
	position: relative;
}

.product-icon-wrap {
	position: relative;
}

.product-icon {
	width: 140px;
	height: 140px;
	border-radius: 28px;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: #fff;
	font-size: 64px;
	font-weight: 800;
	box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
}

.product-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Title block */
.title-block h1 {
	font-size: 42px;
	margin-bottom: 8px;
	display: flex;
	align-items: baseline;
	gap: 14px;
	flex-wrap: wrap;
}

.top-pick-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	padding: 5px 12px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--accent-dark) 100%);
	color: #fff;
	border-radius: var(--r-full);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.subtitle {
	font-size: 18px;
	color: var(--text-2);
	margin-bottom: 12px;         /* was 18px */
	font-weight: 500;
	line-height: 1.4;
	max-width: 75ch;
}

/* Quick facts */
.quick-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	padding: 10px 18px;          /* was 14px 18px — vertical-only trim */
	background: var(--bg-soft);
	border-radius: var(--r-lg);
	font-size: 13px;
	margin-bottom: 12px;         /* was 18px */
}

.quick-facts > div {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-2);
}

.quick-facts strong {
	color: var(--text);
	font-weight: 700;
}

.quick-facts svg {
	color: var(--text-3);
	flex-shrink: 0;
}

.quick-facts .sep {
	width: 1px;
	height: 16px;
	background: var(--border-2);
}

/* ------------------------------------------------------------
   DOWNLOAD GRID
------------------------------------------------------------ */
.download-section {
	margin-top: 18px;            /* was 28px */
	padding-top: 16px;           /* was 24px */
	border-top: 1px solid var(--border);
}

.section-label {
	font-size: 11px;
	font-weight: 800;
	color: var(--text-3);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 10px;         /* was 12px */
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-label::before {
	content: '';
	width: 28px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--purple));
	border-radius: 2px;
}

.os-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.os-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	background: #fff;
	color: var(--text);
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.os-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--os-color, var(--primary));
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.2s;
}

.os-card:hover {
	border-color: var(--os-color, var(--primary));
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
	color: var(--text);
}

.os-card:hover::before {
	transform: scaleY(1);
}

.os-icon-box {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: var(--os-bg, var(--bg-soft));
	display: grid;
	place-items: center;
	color: var(--os-color, var(--primary));
	flex-shrink: 0;
}

.os-icon-box svg {
	width: 20px;
	height: 20px;
}

.os-info {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.os-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.2;
}

.os-meta {
	font-size: 11px;
	color: var(--text-3);
	font-weight: 500;
	margin-top: 1px;
}

.os-arrow {
	color: var(--text-3);
	flex-shrink: 0;
	transition: transform 0.2s;
}

.os-card:hover .os-arrow {
	transform: translateX(2px);
	color: var(--os-color, var(--primary));
}

.os-card.windows { --os-color: #0078d4; --os-bg: #e6f3ff; }
.os-card.mac     { --os-color: #1d1d1f; --os-bg: #f0f0f0; }
.os-card.linux   { --os-color: #e95420; --os-bg: #ffeae0; }
.os-card.android { --os-color: #3ddc84; --os-bg: #e8faf0; }
.os-card.ios     { --os-color: #007aff; --os-bg: #e6f2ff; }
.os-card.beta    { --os-color: #7c3aed; --os-bg: #ede9fe; }
.os-card.buy     { --os-color: #00a86b; --os-bg: #d4f5e9; }

.os-card.featured {
	border-color: var(--primary);
	background: linear-gradient(135deg, var(--primary-light) 0%, #fff 70%);
}

.featured-dot {
	position: absolute;
	top: 6px;
	right: 8px;
	padding: 2px 6px;
	background: var(--primary);
	color: #fff;
	border-radius: var(--r-full);
	font-size: 9px;
	font-weight: 800;
}

/* ------------------------------------------------------------
   MAIN LAYOUT
------------------------------------------------------------ */
.main-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 24px;
	margin-bottom: 48px;
}

.content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

/* ------------------------------------------------------------
   SCREENSHOTS GALLERY + LIGHTBOX
------------------------------------------------------------ */
.ss-gallery {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 24px;
}

.ss-gallery-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 16px;
}

.ss-gallery-head .section-title {
	margin: 0;
}

.screenshots-count {
	font-size: 12px;
	color: var(--text-3);
	font-weight: 500;
	flex-shrink: 0;
}

.ss-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
}

.ss-thumb {
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: var(--bg-soft);
	padding: 0;
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.ss-thumb:hover {
	transform: scale(1.03);
	border-color: var(--primary);
}

.ss-thumb img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}

/* Lightbox overlay */
.lb-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lb-img {
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 4px;
}

.lb-close,
.lb-prev,
.lb-next {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease;
}

.lb-close svg,
.lb-prev svg,
.lb-next svg {
	width: 22px;
	height: 22px;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
	background: rgba(255, 255, 255, 0.25);
}

.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lb-counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 14px;
	background: rgba(0, 0, 0, 0.5);
	padding: 4px 12px;
	border-radius: var(--r-full);
}

/* ------------------------------------------------------------
   ENTRY CONTENT (overview, changelog)
------------------------------------------------------------ */
.entry-content {
	color: var(--text-2);
	font-size: 15px;
	line-height: 1.75;
}

.entry-content p {
	margin-bottom: 14px;
}

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

.entry-content strong {
	color: var(--text);
	font-weight: 600;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin: 28px 0 14px;
	color: var(--text);
}

.entry-content h3 {
	font-size: 19px;
}

.entry-content ul,
.entry-content ol {
	padding-left: 22px;
	margin-bottom: 14px;
	line-height: 1.8;
}

.entry-content li {
	margin-bottom: 8px;
}

.entry-content img {
	border-radius: var(--r-md);
	margin: 14px 0;
}

/* ------------------------------------------------------------
   KEY FEATURES
------------------------------------------------------------ */
.features-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.features-list li {
	padding: 14px 18px;
	background: var(--bg-soft);
	border-radius: var(--r-md);
	font-size: 14px;
	color: var(--text);
	line-height: 1.5;
	border-left: 3px solid var(--primary);
}

/* ------------------------------------------------------------
   PROS / CONS
------------------------------------------------------------ */
.proscons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.pc-card {
	padding: 24px;
	border-radius: var(--r-xl);
	border: 1.5px solid;
}

.pc-card.pros {
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	border-color: var(--success);
}

.pc-card.cons {
	background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
	border-color: var(--danger);
}

.pc-header {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 800;
	margin-bottom: 16px;
}

.pc-card.pros .pc-header {
	color: var(--success-dark);
}

.pc-card.cons .pc-header {
	color: var(--danger);
}

.pc-badge {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 900;
	font-size: 16px;
}

.pc-card.pros .pc-badge {
	background: var(--success);
}

.pc-card.cons .pc-badge {
	background: var(--danger);
}

.pc-list {
	list-style: none;
	padding: 0;
}

.pc-list li {
	padding: 10px 0 10px 30px;
	position: relative;
	font-size: 14px;
	line-height: 1.5;
	color: var(--text);
	border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.pc-list li:last-child {
	border-bottom: 0;
}

.pc-list li::before {
	position: absolute;
	left: 0;
	top: 11px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 900;
	font-size: 11px;
}

.pc-card.pros li::before {
	content: '\2713';
	background: var(--success);
}

.pc-card.cons li::before {
	content: '\2715';
	background: var(--danger);
}

/* ------------------------------------------------------------
   SYSTEM REQUIREMENTS
------------------------------------------------------------ */
.sysreq {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.sysreq-col {
	padding: 22px;
	border-radius: var(--r-lg);
	background: var(--bg-soft);
	border: 1.5px solid var(--border);
}

.sysreq-col.recommended {
	background: linear-gradient(135deg, var(--purple-light) 0%, #fff 100%);
	border-color: var(--purple);
}

.sysreq-head {
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-2);
}

.sysreq-col.recommended .sysreq-head {
	color: var(--purple);
}

.sysreq-row {
	display: flex;
	padding: 8px 0;
	border-bottom: 1px dashed var(--border);
	font-size: 13.5px;
}

.sysreq-row:last-child {
	border-bottom: 0;
}

.sysreq-row .label {
	flex: 0 0 90px;
	font-weight: 700;
	color: var(--text-3);
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.04em;
	padding-top: 2px;
}

.sysreq-row .value {
	flex: 1;
	color: var(--text);
	font-weight: 500;
}

/* ------------------------------------------------------------
   SIMILAR APPS
------------------------------------------------------------ */
.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 14px;
}

.rel-card {
	background: #fff;
	border: 1.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: all 0.2s;
}

.rel-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.rel-icon-link,
.rel-name-link {
	text-decoration: none;
	color: inherit;
	align-self: flex-start;
}

.rel-icon-box {
	width: 44px;
	height: 44px;
	border-radius: 11px;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: #fff;
	font-weight: 800;
	font-size: 18px;
}

.rel-icon-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rel-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin: 0;
}

.rel-name-link:hover .rel-name {
	color: var(--primary);
}

.rel-desc {
	font-size: 12px;
	color: var(--text-3);
	line-height: 1.4;
	flex: 1;
}

.rel-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--text-2);
	padding-top: 8px;
	border-top: 1px dashed var(--border);
}

.rel-rating {
	color: var(--gold);
	font-weight: 700;
}

/* ------------------------------------------------------------
   SIDEBAR
------------------------------------------------------------ */
.sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

.side-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--shadow-xs);
}

.side-head {
	padding: 13px 20px;
	background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-tint) 100%);
	border-bottom: 1px solid var(--border);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-2);
	display: flex;
	align-items: center;
	gap: 8px;
}

.side-body {
	padding: 16px 20px;
}

.side-body--list {
	padding: 8px;
}

/* App specs */
.spec-grid {
	display: flex;
	flex-direction: column;
}

.spec-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px dashed var(--border);
	font-size: 13px;
}

.spec-item:last-child {
	border-bottom: 0;
}

.spec-label {
	color: var(--text-3);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.04em;
	flex-shrink: 0;
}

.spec-value {
	color: var(--text);
	font-weight: 600;
	text-align: right;
	min-width: 0;
	word-break: break-word;
}

.spec-mono {
	font-family: var(--font-mono);
	font-size: 12px;
}

.spec-hash {
	font-size: 10px;
	color: var(--text-3);
}

/* Sidebar list rows */
.top-dl {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 10px;
	border-radius: 8px;
	transition: background 0.15s;
}

.top-dl:hover {
	background: var(--bg-soft);
}

.td-rank {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 11px;
	font-weight: 800;
	flex-shrink: 0;
	background: var(--bg-soft);
	color: var(--text-3);
}

.td-rank-1 { background: var(--gold); color: #fff; }
.td-rank-2 { background: #c0c0c0; color: #fff; }
.td-rank-3 { background: #cd7f32; color: #fff; }

.td-icon-link {
	flex-shrink: 0;
	text-decoration: none;
}

.td-icon {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: #fff;
	font-weight: 800;
	font-size: 13px;
}

.td-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.td-info {
	flex: 1;
	min-width: 0;
}

.td-name-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.td-name {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.td-name-link:hover .td-name {
	color: var(--primary);
}

.td-meta {
	font-size: 11px;
	color: var(--text-3);
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */
@media (max-width: 1100px) {
	.main-layout {
		grid-template-columns: 1fr;
	}

	.os-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.sysreq {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 700px) {
	.single-software-main .hero {
		padding: 18px 24px;       /* was 24px — vertical-only trim on mobile */
	}

	.hero-main {
		grid-template-columns: 80px 1fr;
		gap: 16px;
	}

	.product-icon {
		width: 80px;
		height: 80px;
		font-size: 38px;
		border-radius: 18px;
	}

	.title-block h1 {
		font-size: 28px;
	}

	.os-grid {
		grid-template-columns: 1fr 1fr;
	}

	.screenshots-grid {
		grid-template-columns: 1fr 1fr;
	}

	.proscons {
		grid-template-columns: 1fr;
	}

	.quick-facts {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.quick-facts .sep {
		display: none;
	}
}

/* ------------------------------------------------------------
   SHARED SECTION TITLE (screenshots / video / faq / pricing)
------------------------------------------------------------ */
.section-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--text);
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-title::before {
	content: '';
	width: 4px;
	height: 18px;
	background: linear-gradient(180deg, var(--primary), var(--purple));
	border-radius: 2px;
	flex-shrink: 0;
}

/* ------------------------------------------------------------
   HERO BADGES
------------------------------------------------------------ */
.hero-badges {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;         /* was 12px */
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 11px;
	border-radius: var(--r-full);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.badge svg {
	flex-shrink: 0;
}

.badge-gold { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.badge-blue { background: #eff6ff; color: #1e40af; border: 1px solid #dbeafe; }
.badge-red  { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ------------------------------------------------------------
   RATING BLOCK (average score + clickable voting stars)
------------------------------------------------------------ */
.rating-block {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: var(--r-lg);
	padding: 12px 20px;
	margin: 2px 0;               /* was 4px 0 — small extra trim */
}

.rating-score {
	font-size: 36px;
	font-weight: 800;
	color: #ea580c;
	line-height: 1;
}

.rating-stars-wrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.rating-stars {
	display: inline-flex;
	gap: 2px;
}

.rating-star {
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	color: #e5e7eb;
	line-height: 0;
	transition: color 0.1s ease, transform 0.1s ease;
}

.rating-star svg {
	width: 20px;
	height: 20px;
	display: block;
}

.rating-star.is-filled { color: #f59e0b; }
.rating-star.is-hover-preview { color: #fbbf24; }

.rating-star:hover {
	transform: scale(1.12);
}

.rating-star:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
	border-radius: 2px;
}

.rating-meta {
	font-size: 13px;
	color: #9a3412;
}

.rating-label {
	font-weight: 700;
}

.rating-sep {
	margin: 0 4px;
	opacity: 0.5;
}

/* After voting — the block is locked, drop the pointer affordances. */
.rating-block.is-voted .rating-star {
	cursor: default;
}

.rating-block.is-voted .rating-star:hover {
	transform: none;
}

/* ------------------------------------------------------------
   DEMO VIDEO
------------------------------------------------------------ */
.video-section {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 24px;
}

.video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: var(--r-md);
	background: var(--bg-soft);
}

.video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ------------------------------------------------------------
   FAQ
------------------------------------------------------------ */
.faq-section {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 24px;
}

.faq-item {
	border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
	border-bottom: 0;
}

.faq-item summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--text);
	padding: 14px 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '+';
	font-size: 20px;
	font-weight: 400;
	color: var(--text-3);
	line-height: 1;
	flex-shrink: 0;
}

.faq-item[open] summary::after {
	content: '\2212';
}

.faq-answer {
	padding: 0 0 14px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-2);
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

/* ------------------------------------------------------------
   PRICING TIERS
------------------------------------------------------------ */
.pricing-section {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 24px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.pricing-card {
	border: 1.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: 22px 20px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.pricing-highlighted {
	border-color: var(--primary);
	border-width: 2px;
	box-shadow: var(--shadow-md);
}

.pricing-badge {
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 4px 12px;
	border-radius: var(--r-full);
	white-space: nowrap;
}

.pricing-name {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 800;
	color: var(--text);
}

.pricing-price {
	font-size: 26px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 14px;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	flex: 1;
}

.pricing-features li {
	padding: 6px 0 6px 24px;
	position: relative;
	font-size: 13px;
	color: var(--text-2);
	line-height: 1.5;
}

.pricing-features li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: 6px;
	color: var(--success);
	font-weight: 800;
	font-size: 12px;
}

.pricing-cta {
	display: block;
	text-align: center;
	background: var(--primary);
	color: #fff;
	padding: 10px 16px;
	border-radius: var(--r-md);
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: background 0.15s ease;
}

.pricing-cta:hover {
	background: var(--purple);
}

@media (max-width: 700px) {
	.pricing-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   EDITORIAL TRUST BLOCK
   Sits beside .rating-block on software hero, injected by
   inc/trust-block.php via output buffer.
============================================================ */

/* Info palette (editorial trust block) */
:root {
	--info-bg: #f0f9ff;
	--info-bg-end: #ffffff;
	--info-border: #d4ecfa;        /* softened from #bae6fd — less dominant */
}

.rating-trust-row {
	display: flex;
	align-items: center;            /* both cards vertically centered, no stretching */
	gap: 20px;                      /* a touch more breathing room between the two */
	margin: 4px 0;
	flex-wrap: wrap;
}

.rating-trust-row .rating-block {
	flex-shrink: 0;
}

.trust-block {
	flex: 0 1 auto;                 /* don't grow aggressively — size to content */
	max-width: 360px;               /* keep proportional to the rating card */
	min-width: 280px;
	background: linear-gradient(135deg, var(--info-bg) 0%, var(--info-bg-end) 100%);
	border: 1px solid var(--info-border);
	border-radius: var(--r-lg);
	padding: 12px 18px;             /* was 14px 20px — tighter vertical rhythm */
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;                       /* was 8px — compact editorial spacing */
}

.trust-line {
	display: flex;
	align-items: center;
	gap: 8px;                       /* was 10px — icon-to-text tightened */
	font-size: 14px;                /* was 13px — matches editorial body rhythm */
	color: var(--text-2);
	line-height: 1.35;              /* was 1.4 — tighter line rhythm */
}

.trust-line .trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--success-light);
	color: var(--success-dark);
	flex-shrink: 0;
}

.trust-line strong {
	color: var(--text);
	font-weight: 700;
}

/* Mobile: stack vertically */
@media (max-width: 700px) {
	.rating-trust-row {
		flex-direction: column;
		align-items: stretch;       /* full-width cards when stacked */
	}

	.trust-block {
		min-width: 0;
		max-width: none;            /* drop the cap once stacked */
		padding: 11px 16px;
	}

	.trust-line {
		font-size: 13px;
	}
}
