.judev-follow-us {
	--judev-fu-accent: #6e2cff;
	--judev-fu-accent-2: #b277ff;
	--judev-fu-bg: #f3f0f9;
	--judev-fu-bg-2: #ece8f5;
	--judev-fu-social-gap: 24px;
	--judev-fu-circle-size: 122px;
	--judev-fu-icon-size: 42px;
	--judev-fu-hover-lift: 7px;
	--judev-fu-hover-scale: 1.14;
	--judev-fu-glow-duration: 3.2s;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: clamp(36px, 5vw, 72px) clamp(22px, 4vw, 58px);
	border: 1px solid rgba(118, 77, 230, 0.2);
	border-radius: 24px;
	background: linear-gradient(140deg, var(--judev-fu-bg) 0%, var(--judev-fu-bg-2) 100%);
	overflow: hidden;
	isolation: isolate;
}

.judev-follow-us__blob {
	position: absolute;
	border-radius: 999px;
	filter: blur(1px);
	pointer-events: none;
	z-index: 0;
	opacity: 0.34;
}

.judev-follow-us__blob--one {
	width: clamp(160px, 22vw, 300px);
	aspect-ratio: 1 / 1;
	top: -20%;
	right: -10%;
	background: radial-gradient(circle at center, rgba(110, 44, 255, 0.52) 0%, rgba(110, 44, 255, 0.05) 70%);
	animation: judev-follow-us-blob-a 7.2s ease-in-out infinite;
}

.judev-follow-us__blob--two {
	width: clamp(150px, 20vw, 280px);
	aspect-ratio: 1 / 1;
	left: -8%;
	bottom: -22%;
	background: radial-gradient(circle at center, rgba(178, 119, 255, 0.5) 0%, rgba(178, 119, 255, 0.04) 74%);
	animation: judev-follow-us-blob-b 8.8s ease-in-out infinite;
}

.judev-follow-us__head,
.judev-follow-us__socials,
.judev-follow-us__footer {
	position: relative;
	z-index: 1;
}

.judev-follow-us__head {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: inherit;
	margin-bottom: 22px;
	text-align: inherit;
}

.judev-follow-us__eyebrow {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2.6px;
	text-transform: uppercase;
	color: var(--judev-fu-accent);
}

.judev-follow-us__title {
	margin: 0;
	font-size: clamp(36px, 6vw, 68px);
	line-height: 1.05;
	font-weight: 800;
	color: var(--judev-fu-accent);
	letter-spacing: -0.02em;
}

.judev-follow-us__desc {
	margin: 0;
	font-size: clamp(16px, 1.4vw, 30px);
	line-height: 1.65;
	max-width: 860px;
	color: #334155;
}

.judev-follow-us__socials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--judev-fu-social-gap);
	width: 100%;
}

.judev-follow-us__social {
	width: var(--judev-fu-circle-size);
	height: var(--judev-fu-circle-size);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: 999px;
	border: 1px solid rgba(110, 44, 255, 0.2);
	background: #ffffff;
	color: #9d5fff;
	text-decoration: none;
	transition: transform 0.28s ease, color 0.22s ease, background-color 0.22s ease, box-shadow 0.25s ease, border-color 0.22s ease, z-index 0.2s ease;
	will-change: transform;
}

.judev-follow-us__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: var(--judev-fu-icon-size);
}

.judev-follow-us__social-icon i {
	font-size: var(--judev-fu-icon-size);
}

.judev-follow-us__social-icon svg {
	width: var(--judev-fu-icon-size);
	height: var(--judev-fu-icon-size);
}

.judev-follow-us__social:hover,
.judev-follow-us__social:focus {
	animation: none !important;
	transform: translateY(calc(-1 * var(--judev-fu-hover-lift))) scale(var(--judev-fu-hover-scale)) translateZ(0);
	background: var(--judev-fu-accent);
	color: #ffffff;
	border-color: var(--judev-fu-accent);
	box-shadow: 0 16px 34px rgba(110, 44, 255, 0.42);
	z-index: 2;
}

.judev-follow-us__social:hover svg,
.judev-follow-us__social:focus svg {
	fill: currentColor;
}

.judev-follow-us__social:hover .judev-follow-us__social-icon,
.judev-follow-us__social:focus .judev-follow-us__social-icon {
	animation: none !important;
	transform: scale(1.04);
}

.judev-follow-us__footer {
	margin-top: clamp(18px, 3.2vw, 44px);
}

.judev-follow-us__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 999px;
	border: 1px solid rgba(110, 44, 255, 0.28);
	background: rgba(255, 255, 255, 0.55);
	color: var(--judev-fu-accent);
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.judev-follow-us__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95em;
}

.judev-follow-us__button:hover,
.judev-follow-us__button:focus {
	background: var(--judev-fu-accent);
	color: #ffffff;
	border-color: var(--judev-fu-accent);
	box-shadow: 0 10px 28px rgba(110, 44, 255, 0.32);
	transform: translateY(-2px);
}

.judev-follow-us__button:hover .judev-follow-us__button-icon,
.judev-follow-us__button:focus .judev-follow-us__button-icon {
	animation: judev-follow-us-arrow 0.9s ease-in-out infinite;
}

.judev-follow-us--align-left {
	text-align: left;
	align-items: flex-start;
}

.judev-follow-us--align-left .judev-follow-us__socials {
	justify-content: flex-start;
}

.judev-follow-us--align-right {
	text-align: right;
	align-items: flex-end;
}

.judev-follow-us--align-right .judev-follow-us__socials {
	justify-content: flex-end;
}

.judev-follow-us[data-glow="yes"] .judev-follow-us__title {
	animation: judev-follow-us-glow var(--judev-fu-glow-duration) ease-in-out infinite;
}

.judev-follow-us[data-animate="yes"] .judev-follow-us__eyebrow,
.judev-follow-us[data-animate="yes"] .judev-follow-us__title,
.judev-follow-us[data-animate="yes"] .judev-follow-us__desc,
.judev-follow-us[data-animate="yes"] .judev-follow-us__social,
.judev-follow-us[data-animate="yes"] .judev-follow-us__footer {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.judev-follow-us[data-animate="yes"].is-visible .judev-follow-us__eyebrow,
.judev-follow-us[data-animate="yes"].is-visible .judev-follow-us__title,
.judev-follow-us[data-animate="yes"].is-visible .judev-follow-us__desc,
.judev-follow-us[data-animate="yes"].is-visible .judev-follow-us__social,
.judev-follow-us[data-animate="yes"].is-visible .judev-follow-us__footer {
	opacity: 1;
	transform: translateY(0);
}

.judev-follow-us[data-animate="yes"].is-visible .judev-follow-us__social-icon {
	animation: judev-follow-us-float 4.8s ease-in-out infinite;
	animation-delay: calc(var(--judev-item-index, 0) * 0.22s);
}

@keyframes judev-follow-us-glow {
	0% {
		text-shadow: 0 0 0 rgba(110, 44, 255, 0);
	}
	50% {
		text-shadow: 0 0 24px rgba(110, 44, 255, 0.4), 0 0 44px rgba(178, 119, 255, 0.3);
	}
	100% {
		text-shadow: 0 0 0 rgba(110, 44, 255, 0);
	}
}

@keyframes judev-follow-us-float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes judev-follow-us-arrow {
	0%,
	100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(4px);
	}
}

@keyframes judev-follow-us-blob-a {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(-8px, 14px, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes judev-follow-us-blob-b {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(10px, -10px, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}

@media (max-width: 1024px) {
	.judev-follow-us__button {
		font-size: 19px;
	}
}

@media (max-width: 767px) {
	.judev-follow-us {
		padding: 30px 18px 36px;
	}

	.judev-follow-us__button {
		width: 100%;
		max-width: 320px;
		font-size: 17px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.judev-follow-us *,
	.judev-follow-us *::before,
	.judev-follow-us *::after {
		animation: none !important;
		transition: none !important;
	}
}
