/* ==========================================================================
   Rayoweb Footer Tech (simple)
   ========================================================================== */

.rw-footer-tech {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, #070d1d 0%, #0a1228 100%);
	color: #ebefff;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rw-footer-tech::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../img/footer-hex-bg-strong.svg") center/cover no-repeat;
	opacity: 0.22;
	pointer-events: none;
}

.rw-footer-tech::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 13, 29, 0.52) 0%, rgba(7, 13, 29, 0.66) 100%);
	pointer-events: none;
}

.rw-footer-tech__glow {
	position: absolute;
	width: 620px;
	height: 620px;
	right: -200px;
	top: -210px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 122, 26, 0.2) 0%, transparent 72%);
	pointer-events: none;
}

.rw-footer-tech__grid {
	display: none;
}

.rw-footer-tech__container {
	position: relative;
	z-index: 1;
	padding-top: 74px;
	padding-bottom: 28px;
}

.rw-footer-tech__main {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 22px;
	margin-bottom: 30px;
}

.rw-footer-tech__logo {
	display: inline-flex;
	margin-bottom: 14px;
}

.rw-footer-tech__logo a {
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.rw-footer-tech__logo img {
	max-height: 42px;
	width: auto;
}

.rw-footer-tech__brand p {
	margin: 0;
	color: #b9c3e3;
	font-size: 16px;
	line-height: 1.62;
	max-width: 560px;
}

.rw-footer-tech__socials {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.rw-footer-tech__socials a {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #eaf0ff;
	transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.rw-footer-tech__socials a:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 122, 26, 0.7);
	color: #ffbf70;
}

.rw-footer-tech__socials svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.rw-footer-tech__cta h3 {
	margin: 0 0 10px;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	line-height: 1.2;
	color: #fff;
}

.rw-footer-tech__cta {
	padding: 28px;
	background: rgba(16, 25, 54, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	backdrop-filter: blur(5px);
}

.rw-footer-tech__cta p {
	margin: 0;
	color: #c0cae8;
	font-size: 15px;
	line-height: 1.6;
}

.rw-footer-tech__btn {
	margin-top: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 10px;
	background: linear-gradient(135deg, #ff7a1a 0%, #ffb400 100%);
	color: #fff !important;
	text-decoration: none;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: 0 12px 30px rgba(255, 122, 26, 0.3);
	transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rw-footer-tech__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(255, 122, 26, 0.4);
}

.rw-footer-tech__bottom {
	padding-top: 6px;
	margin-bottom: 12px;
}

.rw-footer-tech__bottom p {
	margin: 0;
	color: #97a4cc;
	font-size: 13.5px;
}

.rw-footer-tech__nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 22px;
	padding: 20px 0 6px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.rw-footer-tech__nav-col {
	padding: 0;
}

.rw-footer-tech__nav-col h4 {
	margin: 0 0 10px;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #e6ecff;
}

.rw-footer-tech__nav-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
}

.rw-footer-tech__nav-col a {
	color: #eaf0ff !important;
	text-decoration: none;
	font-size: 15px;
}

.rw-footer-tech__nav-col a:hover {
	color: #ffffff !important;
}

.rw-footer-tech__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 20px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.rw-footer-tech__legal a {
	color: #eaf0ff !important;
	text-decoration: none;
	font-size: 13.5px;
}

.rw-footer-tech__legal a:hover {
	color: #ffffff !important;
}

@media (max-width: 991px) {
	.rw-footer-tech__main {
		grid-template-columns: 1fr;
	}
	.rw-footer-tech__brand p {
		max-width: none;
	}
	.rw-footer-tech__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.rw-footer-tech__container {
		padding-top: 54px;
	}
	.rw-footer-tech__brand,
	.rw-footer-tech__cta {
		padding: 22px;
	}
	.rw-footer-tech__nav {
		grid-template-columns: 1fr;
	}
}
