/* XSaaS Solutions — Main Stylesheet */

/* ── Signature element: amber progress-bar underline ───────────────────── */
.xsaas-section-heading {
	display: inline-block;
	position: relative;
}
.xsaas-section-heading::after {
	content: '';
	display: block;
	height: 3px;
	width: 3rem;
	background: var(--wp--preset--color--accent);
	border-radius: 2px;
	margin-top: 0.5rem;
}

/* ── Hero dot-grid texture ──────────────────────────────────────────────── */
.xsaas-hero {
	background-image: radial-gradient(var(--wp--preset--color--border) 1px, transparent 1px);
	background-size: 22px 22px;
}

/* ── Site header ────────────────────────────────────────────────────────── */
.xsaas-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--wp--preset--color--border);
	background-color: rgba(255, 255, 255, 0.96);
}

/* ── Service card ───────────────────────────────────────────────────────── */
.xsaas-service-card {
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 8px;
	padding: 2rem;
	background: var(--wp--preset--color--surface);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.xsaas-service-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

/* ── Step number badge ──────────────────────────────────────────────────── */
.xsaas-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--wp--preset--color--primary);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}

/* ── FAQ items ──────────────────────────────────────────────────────────── */
.xsaas-faq-item {
	border-bottom: 1px solid var(--wp--preset--color--border);
	padding-bottom: 1.25rem;
	margin-bottom: 1.25rem;
}
.xsaas-faq-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* ── Testimonial ────────────────────────────────────────────────────────── */
.xsaas-testimonial {
	border-left: 3px solid var(--wp--preset--color--accent);
	padding-left: 1.5rem;
}

/* ── Outline button variant ─────────────────────────────────────────────── */
.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	border: 2px solid var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--wp--preset--color--primary);
	color: #fff;
}

/* ── Section spacing ────────────────────────────────────────────────────── */
.xsaas-section {
	padding-top: var(--wp--preset--spacing--7);
	padding-bottom: var(--wp--preset--spacing--7);
}
@media (max-width: 781px) {
	.xsaas-section {
		padding-top: var(--wp--preset--spacing--6);
		padding-bottom: var(--wp--preset--spacing--6);
	}
}

/* ── Trust row ──────────────────────────────────────────────────────────── */
.xsaas-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 1.5rem;
}
.xsaas-trust-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: var(--wp--preset--font-size--sm);
	color: var(--wp--preset--color--ink-muted);
	font-weight: 500;
}

/* ── Footer nav list ────────────────────────────────────────────────────── */
.xsaas-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.xsaas-footer-list li {
	margin-bottom: 0.5rem;
}

/* ── Mobile adjustments ─────────────────────────────────────────────────── */
@media (max-width: 599px) {
	.xsaas-step-number {
		width: 2rem;
		height: 2rem;
		font-size: 0.875rem;
	}
}
