/* Site footer — SaaS layout */

.rf-site-footer {
	position: relative;
	overflow: hidden;
	margin-top: 0;
	padding: clamp(2rem, 4vw, 3rem) 20px clamp(1.5rem, 2.5vw, 2rem);
	color: #fff;
	background: transparent;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rf-site-footer *,
.rf-site-footer *::before,
.rf-site-footer *::after {
	box-sizing: border-box;
}

.rf-site-footer__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 80% at 12% 100%, rgba(168, 85, 247, 0.22), transparent 62%),
		radial-gradient(ellipse 45% 70% at 88% 100%, rgba(37, 211, 102, 0.1), transparent 58%);
}

.rf-site-footer__wrap {
	position: relative;
	z-index: 2;
	width: min(1180px, 100%);
	margin: 0 auto;
}

.rf-site-footer__top {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
	padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rf-site-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.rf-site-footer__logo-mark {
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(37, 211, 102, 0.45));
	box-shadow: 0 10px 28px rgba(168, 85, 247, 0.28);
}

.rf-site-footer__blurb {
	max-width: 36ch;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 14px;
	line-height: 1.6;
}

.rf-site-footer__trust {
	margin-top: 20px;
	padding: 14px 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.09);
	max-width: 320px;
}

.rf-site-footer__trust small {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.46);
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.rf-site-footer__trust-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
	color: #fff;
	text-decoration: none;
}

.rf-site-footer__trust-mark {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 10px;
	color: #fff;
	font-size: 13px;
	font-weight: 950;
	background: linear-gradient(135deg, #a855f7, #25d366);
}

.rf-site-footer__trust-link strong {
	font-size: 14px;
	letter-spacing: -0.02em;
}

.rf-site-footer__trust p {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	line-height: 1.45;
}

.rf-site-footer__col h3 {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rf-site-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.rf-site-footer__col a {
	color: rgba(255, 255, 255, 0.62);
	text-decoration: none;
	font-size: 14px;
	font-weight: 650;
	transition: color 0.2s ease;
}

.rf-site-footer__col a:hover {
	color: #d8b4fe;
}

.rf-site-footer__contact-list li {
	display: grid;
	gap: 3px;
}

.rf-site-footer__contact-label {
	color: rgba(255, 255, 255, 0.42);
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.rf-site-footer__contact-list span:not(.rf-site-footer__contact-label) {
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	font-weight: 650;
}

.rf-site-footer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 16px;
	padding: 0 16px;
	border-radius: 999px;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 900;
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.86), rgba(37, 211, 102, 0.42));
	box-shadow: 0 14px 36px rgba(168, 85, 247, 0.22);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rf-site-footer__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(168, 85, 247, 0.3);
}

.rf-site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-top: 18px;
}

.rf-site-footer__copy {
	margin: 0;
	color: rgba(255, 255, 255, 0.44);
	font-size: 12px;
}

.rf-site-footer__legal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rf-site-footer__legal a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	font-size: 12px;
	font-weight: 750;
	transition: color 0.2s ease;
}

.rf-site-footer__legal a:hover {
	color: #86efac;
}

@media (max-width: 980px) {
	.rf-site-footer__top {
		grid-template-columns: 1fr 1fr;
	}

	.rf-site-footer__brand {
		grid-column: 1 / -1;
	}

	.rf-site-footer__trust {
		max-width: none;
	}
}

@media (max-width: 620px) {
	.rf-site-footer {
		padding-inline: 16px;
	}

	.rf-site-footer__top {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.rf-site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.rf-site-footer__cta {
		width: 100%;
	}
}
