/**
 * WordPush Marketing Theme - Custom Styles
 *
 * Glass effects, gradients, animations, and custom block styles
 * that extend the base theme.json design tokens.
 *
 * @package WordPush_Marketing
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Custom Properties (extending theme.json)
   ========================================================================== */

:root {
	/* Transitions */
	--wp-transition-fast: 150ms;
	--wp-transition-normal: 300ms;
	--wp-transition-slow: 500ms;
	--wp-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
	--wp-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

	/* Glass effect values */
	--wp-glass-blur: 12px;
	--wp-glass-bg: rgba(255, 255, 255, 0.03);
	--wp-glass-border: rgba(255, 255, 255, 0.08);
	--wp-glass-hover-border: rgba(255, 255, 255, 0.15);

	/* Gradient values */
	--wp-gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
	--wp-gradient-blue-purple: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	--wp-gradient-purple-pink: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

/* ==========================================================================
   Global overflow control for animated orbs
   ========================================================================== */

body,
main.wp-block-group {
	overflow-x: clip; /* Prevent horizontal scroll but allow vertical positioning */
}

/* ==========================================================================
   Hero Section - Epic Animated SaaS Hero
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: #030014;
	margin-top: -80px;
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Kill WordPress blockGap between header and hero */
body > .wp-site-blocks {
	gap: 0 !important;
}

body > .wp-site-blocks > main.wp-block-group {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
	gap: 0 !important;
}

main.wp-block-group > .wp-block-group:first-child {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
}

.wp-block-group:has(> .hero) {
	margin: 0 !important;
	padding: 0 !important;
}

/* Body background matches hero */
body {
	background: #030014 !important;
}

/* ---- Background System ---- */
.hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

/* Grid pattern */
.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,0,0,0.4) 0%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,0,0,0.4) 0%, transparent 100%);
}

/* Beam sweeps across grid */
.hero__beam {
	position: absolute;
	width: 300%;
	height: 100%;
	top: 0;
	left: -100%;
	background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(139, 92, 246, 0.06) 50%, transparent 60%, transparent 100%);
	animation: heroBeamSweep 12s ease-in-out infinite;
}

.hero__beam--2 {
	background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(59, 130, 246, 0.04) 50%, transparent 60%, transparent 100%);
	animation-delay: -6s;
	animation-duration: 16s;
}

@keyframes heroBeamSweep {
	0% { transform: translateX(-30%); }
	100% { transform: translateX(30%); }
}

/* ---- Aurora Gradient Blobs ---- */
.hero__aurora {
	position: absolute;
	inset: 0;
	filter: blur(80px);
	opacity: 0.8;
}

.hero__blob {
	position: absolute;
	width: 50vmax;
	height: 50vmax;
	border-radius: 50%;
	mix-blend-mode: screen;
}

.hero__blob--1 {
	background: radial-gradient(circle at center, rgba(59, 130, 246, 0.6) 0%, transparent 50%);
	top: -20%;
	left: -10%;
	animation: heroBlobMove1 19s ease-in-out infinite;
}

.hero__blob--2 {
	background: radial-gradient(circle at center, rgba(139, 92, 246, 0.5) 0%, transparent 50%);
	top: -10%;
	right: -15%;
	animation: heroBlobMove2 23s ease-in-out infinite;
}

.hero__blob--3 {
	background: radial-gradient(circle at center, rgba(236, 72, 153, 0.45) 0%, transparent 50%);
	bottom: -25%;
	left: 20%;
	animation: heroBlobMove3 27s ease-in-out infinite;
}

.hero__blob--4 {
	background: radial-gradient(circle at center, rgba(124, 58, 237, 0.4) 0%, transparent 50%);
	top: 30%;
	right: 10%;
	width: 40vmax;
	height: 40vmax;
	animation: heroBlobMove4 31s ease-in-out infinite;
}

.hero__blob--5 {
	background: radial-gradient(circle at center, rgba(6, 182, 212, 0.3) 0%, transparent 50%);
	bottom: 0;
	right: -20%;
	width: 35vmax;
	height: 35vmax;
	animation: heroBlobMove5 37s ease-in-out infinite;
}

@keyframes heroBlobMove1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(100px, 50px) scale(1.1); }
	50% { transform: translate(50px, -30px) scale(0.95); }
	75% { transform: translate(-50px, 80px) scale(1.05); }
}

@keyframes heroBlobMove2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(-80px, 60px) scale(1.08); }
	66% { transform: translate(60px, -40px) scale(0.92); }
}

@keyframes heroBlobMove3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	20% { transform: translate(60px, -80px) scale(1.12); }
	50% { transform: translate(-40px, -40px) scale(0.88); }
	80% { transform: translate(80px, 20px) scale(1.06); }
}

@keyframes heroBlobMove4 {
	0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
	50% { transform: translate(-60px, 40px) scale(1.15) rotate(20deg); }
}

@keyframes heroBlobMove5 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(-40px, -60px) scale(1.1); }
	66% { transform: translate(50px, 30px) scale(0.9); }
}

/* ---- Floating Orbs ---- */
.hero__orb {
	position: absolute;
	border-radius: 50%;
	mix-blend-mode: screen;
}

.hero__orb--1 {
	width: 400px;
	height: 400px;
	top: 10%;
	left: -5%;
	background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.2), transparent 70%);
	border: 1px solid rgba(59, 130, 246, 0.08);
	animation: heroOrbFloat 20s ease-in-out infinite;
}

.hero__orb--2 {
	width: 250px;
	height: 250px;
	top: 60%;
	right: 5%;
	background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.15), transparent 70%);
	border: 1px solid rgba(139, 92, 246, 0.06);
	animation: heroOrbFloat 25s ease-in-out infinite reverse;
}

.hero__orb--3 {
	width: 180px;
	height: 180px;
	bottom: 15%;
	left: 10%;
	background: radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.12), transparent 70%);
	border: 1px solid rgba(236, 72, 153, 0.05);
	animation: heroOrbFloat 18s ease-in-out infinite;
	animation-delay: -8s;
}

@keyframes heroOrbFloat {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	25% { transform: translate(30px, -40px) rotate(5deg); }
	50% { transform: translate(-20px, 20px) rotate(-5deg); }
	75% { transform: translate(15px, 30px) rotate(3deg); }
}

/* ---- Particles ---- */
.hero__particles {
	position: absolute;
	inset: 0;
}

.hero__particle {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: var(--size);
	height: var(--size);
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	animation: heroParticleDrift var(--duration) var(--delay) ease-in-out infinite;
	box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

@keyframes heroParticleDrift {
	0%, 100% { transform: translate(0, 0); opacity: 0; }
	10% { opacity: 0.8; }
	50% { transform: translate(calc(var(--size) * 10), calc(var(--size) * -15)); }
	90% { opacity: 0.8; }
}

/* Radial vignette */
.hero__vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, #030014 100%);
}

/* ---- Content Layer ---- */
.hero__content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: -4rem auto 0;
	padding: 0 2rem 4rem;
	text-align: center;
}

/* Badge */
.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(139, 92, 246, 0.1);
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 9999px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	backdrop-filter: blur(8px);
	animation: heroBadgeFade 1s ease-out;
}

.hero__badge-dot {
	width: 6px;
	height: 6px;
	background: #22c55e;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
	animation: heroDotPulse 2s ease-in-out infinite;
}

@keyframes heroDotPulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
	50% { opacity: 0.6; box-shadow: 0 0 16px rgba(34, 197, 94, 0.8); }
}

@keyframes heroBadgeFade {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Title */
.hero__title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0 0 1.5rem;
	color: #ffffff;
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: heroTitleFade 1.2s ease-out;
}

@keyframes heroTitleFade {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Neon glow text */
.hero__neon {
	position: relative;
	-webkit-text-fill-color: #e879f9;
	text-shadow:
		0 0 7px rgba(232, 121, 249, 0.5),
		0 0 20px rgba(232, 121, 249, 0.3),
		0 0 42px rgba(139, 92, 246, 0.2),
		0 0 80px rgba(139, 92, 246, 0.1);
	animation: heroNeonPulse 3s ease-in-out infinite;
}

.hero__neon::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -2%;
	right: -2%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, #ec4899, #8b5cf6, #3b82f6, transparent);
	background-size: 200% 100%;
	border-radius: 3px;
	animation: heroNeonSweep 3s ease-in-out infinite;
}

.hero__neon::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: -4%;
	right: -4%;
	height: 8px;
	background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), rgba(236, 72, 153, 0.6), rgba(139, 92, 246, 0.5), transparent);
	background-size: 200% 100%;
	filter: blur(6px);
	animation: heroNeonSweep 3s ease-in-out infinite;
	opacity: 0.8;
}

@keyframes heroNeonPulse {
	0%, 100% {
		text-shadow:
			0 0 7px rgba(232, 121, 249, 0.5),
			0 0 20px rgba(232, 121, 249, 0.3),
			0 0 42px rgba(139, 92, 246, 0.2),
			0 0 80px rgba(139, 92, 246, 0.1);
	}
	50% {
		text-shadow:
			0 0 10px rgba(232, 121, 249, 0.7),
			0 0 30px rgba(232, 121, 249, 0.5),
			0 0 60px rgba(139, 92, 246, 0.3),
			0 0 100px rgba(139, 92, 246, 0.15);
	}
}

@keyframes heroNeonSweep {
	0%, 100% { background-position: 100% 50%; }
	50% { background-position: 0% 50%; }
}

/* Subtitle */
.hero__subtitle {
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 2.5rem;
	animation: heroSubFade 1.4s ease-out;
}

.hero__highlight {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
}

@keyframes heroSubFade {
	from { opacity: 0; transform: translateY(15px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Actions */
.hero__actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	animation: heroActionsFade 1.6s ease-out;
}

@keyframes heroActionsFade {
	from { opacity: 0; transform: translateY(15px); }
	to { opacity: 1; transform: translateY(0); }
}

.hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: 12px;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero__cta--primary {
	color: #ffffff;
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
	background-size: 200% 200%;
	animation: heroCtaGradient 4s ease infinite;
	box-shadow:
		0 4px 15px rgba(139, 92, 246, 0.4),
		0 0 40px rgba(139, 92, 246, 0.15);
}

.hero__cta--primary:hover {
	transform: translateY(-3px);
	box-shadow:
		0 8px 25px rgba(139, 92, 246, 0.5),
		0 0 60px rgba(139, 92, 246, 0.25);
}

@keyframes heroCtaGradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.hero__cta--secondary {
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
}

.hero__cta--secondary:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

/* Trust line */
.hero__trust {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.3);
	margin: 0 0 4rem;
	animation: heroTrustFade 1.8s ease-out;
}

@keyframes heroTrustFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* ==========================================================================
   Video Modal
   ========================================================================== */

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	visibility: hidden;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 2rem;
}

.video-modal.is-open {
	visibility: visible;
	opacity: 1;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.video-modal__content {
	position: relative;
	width: 100%;
	max-width: 960px;
	transform: scale(0.9) translateY(30px);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.video-modal.is-open .video-modal__content {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.video-modal__close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 0;
}

.video-modal__close:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	transform: rotate(90deg);
}

.video-modal__frame {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: #000;
	padding: 2px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4));
	box-shadow:
		0 0 40px rgba(139, 92, 246, 0.15),
		0 0 80px rgba(59, 130, 246, 0.08),
		0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-modal__video {
	display: block;
	width: 100%;
	border-radius: 14px;
	background: #0a0f1a;
}

@media (max-width: 768px) {
	.video-modal {
		padding: 1rem;
		align-items: flex-start;
		padding-top: 4rem;
	}

	.video-modal__close {
		top: -44px;
		right: 4px;
	}
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
	.hero__content {
		padding: 4rem 1.5rem 3rem;
	}

	.hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.hero__cta {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}

	.hero__aurora {
		filter: blur(60px);
		opacity: 0.6;
	}

	.hero__orb--1,
	.hero__orb--2,
	.hero__orb--3 {
		display: none;
	}
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
	.hero__blob,
	.hero__orb,
	.hero__particle,
	.hero__beam,
	.hero__neon,
	.hero__video-glow,
	.hero__video-border,
	.hero__cta--primary {
		animation: none !important;
	}

	.hero__neon {
		text-shadow: 0 0 10px rgba(232, 121, 249, 0.5);
	}

	.hero__title,
	.hero__subtitle,
	.hero__badge,
	.hero__actions,
	.hero__trust,
	.hero__showcase {
		animation: none !important;
		opacity: 1;
		transform: none;
	}
}

/* ==========================================================================
   Integrations Section - Hub + Bento + Ticker
   ========================================================================== */

.int-section {
	position: relative;
	padding: 7rem 0 4rem;
	background: #030014;
	overflow: hidden;
}

/* ---- Background ---- */
.int-section__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.int-section__glow--1 {
	position: absolute;
	top: 5%;
	left: 15%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
	filter: blur(80px);
	animation: intSectionGlow1 19s ease-in-out infinite;
}

.int-section__glow--2 {
	position: absolute;
	bottom: 10%;
	right: 10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
	filter: blur(80px);
	animation: intSectionGlow2 23s ease-in-out infinite;
}

.int-section__glow--3 {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(236, 72, 153, 0.04) 0%, transparent 70%);
	filter: blur(100px);
}

@keyframes intSectionGlow1 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(30px, 20px); }
}

@keyframes intSectionGlow2 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-40px, -20px); }
}

.int-section__bg > .int-section__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
}

/* ---- Container ---- */
.int-section__container {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ---- Header ---- */
.int-section__header {
	text-align: center;
	margin-bottom: 3rem;
}

.int-section__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 1rem;
	border-radius: 100px;
	border: 1px solid rgba(139, 92, 246, 0.25);
	background: rgba(139, 92, 246, 0.06);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.5rem;
}

.int-section__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #8b5cf6;
	box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
	animation: intBadgePulse 2s ease-in-out infinite;
}

@keyframes intBadgePulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(139, 92, 246, 0.6); }
	50% { opacity: 0.5; box-shadow: 0 0 16px rgba(139, 92, 246, 0.8); }
}

.int-section__title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.int-section__title-gradient {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.int-section__subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.45);
	max-width: 540px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ==========================================================================
   Hub Visualization
   ========================================================================== */

.int-hub {
	position: relative;
	max-width: 700px;
	margin: 0 auto 4rem;
	aspect-ratio: 12 / 7;
}

.int-hub__svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Animated flowing dashes on connection paths */
.int-hub__path {
	animation: intPathFlow 1.5s linear infinite;
}

@keyframes intPathFlow {
	to { stroke-dashoffset: -28; }
}

/* Pulsing rings around center */
.int-hub__ring {
	animation: intRingPulse 4s ease-in-out infinite;
	transform-origin: center;
}

.int-hub__ring--2 { animation-delay: -1.3s; }
.int-hub__ring--3 { animation-delay: -2.6s; }

@keyframes intRingPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.3; transform: scale(1.05); }
}

/* ---- Center node ---- */
.int-hub__center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.int-hub__center-glow {
	position: absolute;
	inset: -20px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
	animation: intCenterGlow 3s ease-in-out infinite;
}

@keyframes intCenterGlow {
	0%, 100% { transform: scale(1); opacity: 0.7; }
	50% { transform: scale(1.2); opacity: 1; }
}

.int-hub__center-inner {
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 15, 30, 0.95);
	border: 2px solid;
	border-image: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899) 1;
	border-image: none;
	border-color: rgba(139, 92, 246, 0.5);
	box-shadow:
		0 0 20px rgba(139, 92, 246, 0.2),
		0 0 60px rgba(139, 92, 246, 0.1),
		inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.int-hub__center-logo {
	font-size: 1.75rem;
	font-weight: 900;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ---- Platform nodes ---- */
.int-hub__node {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.int-hub__node--wp   { top: 18.6%; left: 13.3%; }
.int-hub__node--li   { top: 18.6%; left: 86.7%; }
.int-hub__node--lico { top: 82.9%; left: 13.3%; }
.int-hub__node--brevo { top: 82.9%; left: 86.7%; }

.int-hub__node-ring {
	position: absolute;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -60%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	animation: intNodeRingPulse 3s ease-in-out infinite;
}

@keyframes intNodeRingPulse {
	0%, 100% { transform: translate(-50%, -60%) scale(1); opacity: 1; }
	50% { transform: translate(-50%, -60%) scale(1.15); opacity: 0; }
}

.int-hub__node--wp .int-hub__node-ring   { border-color: rgba(33, 117, 155, 0.2); }
.int-hub__node--li .int-hub__node-ring,
.int-hub__node--lico .int-hub__node-ring { border-color: rgba(10, 102, 194, 0.2); }
.int-hub__node--brevo .int-hub__node-ring { border-color: rgba(11, 153, 110, 0.2); }

.int-hub__node-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 15, 30, 0.9);
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
}

.int-hub__node-icon svg {
	width: 22px;
	height: 22px;
}

.int-hub__node-icon--text {
	font-size: 1.25rem;
	font-weight: 800;
}

/* Node brand colors */
.int-hub__node--wp .int-hub__node-icon {
	border-color: rgba(33, 117, 155, 0.3);
	box-shadow: 0 0 15px rgba(33, 117, 155, 0.1);
}

.int-hub__node--li .int-hub__node-icon,
.int-hub__node--lico .int-hub__node-icon {
	border-color: rgba(10, 102, 194, 0.3);
	box-shadow: 0 0 15px rgba(10, 102, 194, 0.1);
}

.int-hub__node--brevo .int-hub__node-icon {
	border-color: rgba(11, 153, 110, 0.3);
	box-shadow: 0 0 15px rgba(11, 153, 110, 0.1);
}

.int-hub__node-label {
	font-size: 0.625rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-align: center;
	line-height: 1.3;
}

/* ==========================================================================
   Bento Detail Cards
   ========================================================================== */

.int-bento {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: min-content;
	gap: 1.25rem;
}

.int-bento__card--wp    { grid-column: 1; }
.int-bento__card--li    { grid-column: 2; }
.int-bento__card--lico  { grid-column: 1; }
.int-bento__card--brevo { grid-column: 2; }

.int-bento__card {
	position: relative;
	border-radius: 20px;
	animation: intBentoIn 0.7s ease-out both;
}

.int-bento__card:nth-child(1) { animation-delay: 0.1s; }
.int-bento__card:nth-child(2) { animation-delay: 0.2s; }
.int-bento__card:nth-child(3) { animation-delay: 0.3s; }
.int-bento__card:nth-child(4) { animation-delay: 0.4s; }

@keyframes intBentoIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Animated gradient border */
.int-bento__card-border {
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(
		var(--border-angle, 135deg),
		rgba(255, 255, 255, 0.1) 0%,
		rgba(255, 255, 255, 0.02) 40%,
		rgba(255, 255, 255, 0.08) 100%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	transition: all 0.4s ease;
}

.int-bento__card:hover .int-bento__card-border {
	background: linear-gradient(
		var(--border-angle, 135deg),
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0.04) 40%,
		rgba(255, 255, 255, 0.15) 100%
	);
}

/* Brand border glow on hover */
.int-bento__card--wp:hover .int-bento__card-border {
	background: linear-gradient(135deg, rgba(33, 117, 155, 0.5), transparent 50%, rgba(33, 117, 155, 0.3));
}
.int-bento__card--li:hover .int-bento__card-border {
	background: linear-gradient(135deg, rgba(10, 102, 194, 0.5), transparent 50%, rgba(10, 102, 194, 0.3));
}
.int-bento__card--lico:hover .int-bento__card-border {
	background: linear-gradient(135deg, rgba(10, 102, 194, 0.4), transparent 50%, rgba(139, 92, 246, 0.3));
}
.int-bento__card--brevo:hover .int-bento__card-border {
	background: linear-gradient(135deg, rgba(11, 153, 110, 0.5), transparent 50%, rgba(11, 153, 110, 0.3));
}

.int-bento__card-inner {
	position: relative;
	border-radius: 20px;
	background: rgba(10, 15, 30, 0.8);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 2.25rem 2.5rem 2.5rem;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.4s ease;
}

.int-bento__card:hover .int-bento__card-inner {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Card header row */
.int-bento__card-head {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	margin-bottom: 1rem;
}

.int-bento__card-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--brand, rgba(255, 255, 255, 0.6));
	transition: box-shadow 0.3s ease;
}

.int-bento__card:hover .int-bento__card-icon {
	box-shadow: 0 0 20px color-mix(in srgb, var(--brand) 30%, transparent);
}

.int-bento__card-icon svg {
	width: 24px;
	height: 24px;
}

.int-bento__card-name {
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	line-height: 1.2;
}

.int-bento__card-tag {
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.5);
	margin: 0.15rem 0 0;
}

.int-bento__card-desc {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.65;
	margin: 0 0 1.25rem;
}

/* Feature list */
.int-bento__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 1rem;
}

.int-bento__list li {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.65);
}

.int-bento__list li::before {
	content: '';
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--wp-gradient-primary);
	box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

/* ==========================================================================
   Mini Mockup Previews inside cards
   ========================================================================== */

.int-bento__mock {
	margin-top: auto;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(0, 0, 0, 0.3);
}

.int-bento__mock-bar {
	display: flex;
	gap: 5px;
	padding: 8px 10px;
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.int-bento__mock-bar span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.int-bento__mock-bar span:first-child { background: rgba(236, 72, 153, 0.4); }
.int-bento__mock-bar span:nth-child(2) { background: rgba(234, 179, 8, 0.4); }
.int-bento__mock-bar span:last-child { background: rgba(34, 197, 94, 0.4); }

.int-bento__mock-body {
	padding: 12px;
}

/* Blog post mockup */
.int-bento__mock--post .int-bento__mock-body {
	display: flex;
	gap: 12px;
}

.int-bento__mock-img {
	width: 60px;
	height: 50px;
	border-radius: 6px;
	flex-shrink: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
	animation: intMockImgShimmer 3s ease-in-out infinite;
}

@keyframes intMockImgShimmer {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

.int-bento__mock-lines {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.int-bento__mock-line {
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.12);
}

.int-bento__mock-line--dim {
	background: rgba(255, 255, 255, 0.05);
}

/* Email mockup CTA button */
.int-bento__mock-btn {
	width: 50%;
	height: 16px;
	border-radius: 4px;
	margin-top: 10px;
	background: linear-gradient(135deg, rgba(11, 153, 110, 0.3), rgba(11, 153, 110, 0.15));
	box-shadow: 0 0 10px rgba(11, 153, 110, 0.1);
}

/* ==========================================================================
   Activity Ticker
   ========================================================================== */

.int-ticker {
	position: relative;
	margin-top: 3.5rem;
	overflow: hidden;
	height: 32px;
}

.int-ticker__fade--left,
.int-ticker__fade--right {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.int-ticker__fade--left {
	left: 0;
	background: linear-gradient(to right, #030014, transparent);
}

.int-ticker__fade--right {
	right: 0;
	background: linear-gradient(to left, #030014, transparent);
}

.int-ticker__track {
	display: flex;
	gap: 2.5rem;
	white-space: nowrap;
	animation: intTickerScroll 40s linear infinite;
}

@keyframes intTickerScroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.int-ticker__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.02em;
}

.int-ticker__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}

.int-ticker__dot--wp   { background: #21759b; box-shadow: 0 0 6px rgba(33, 117, 155, 0.5); }
.int-ticker__dot--li   { background: #0A66C2; box-shadow: 0 0 6px rgba(10, 102, 194, 0.5); }
.int-ticker__dot--lico { background: #0A66C2; box-shadow: 0 0 6px rgba(10, 102, 194, 0.5); }
.int-ticker__dot--brevo { background: #0B996E; box-shadow: 0 0 6px rgba(11, 153, 110, 0.5); }

/* ==========================================================================
   Integrations Responsive
   ========================================================================== */

@media (max-width: 768px) {
	.int-section {
		padding: 5rem 0 3rem;
	}

	.int-hub {
		display: none; /* Hub doesn't work well on small screens */
	}

	.int-bento {
		grid-template-columns: 1fr;
	}

	.int-bento__card--wp,
	.int-bento__card--li,
	.int-bento__card--lico,
	.int-bento__card--brevo {
		grid-column: 1;
		grid-row: auto;
	}

	.int-bento__card-inner {
		padding: 1.75rem 1.5rem;
	}

	.int-ticker__track {
		animation-duration: 25s;
	}
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
	.int-hub__path,
	.int-hub__ring,
	.int-hub__center-glow,
	.int-hub__node-ring,
	.int-section__glow--1,
	.int-section__glow--2,
	.int-section__badge-dot,
	.int-bento__mock-img {
		animation: none !important;
	}

	.int-ticker__track {
		animation: none !important;
	}

	.int-bento__card {
		animation: none !important;
		opacity: 1;
		transform: none;
	}

	.int-hub__svg circle animateMotion {
		dur: 0s;
	}
}

/* ==========================================================================
   Glass Panel Effects
   ========================================================================== */

.is-style-glass-panel,
.wp-block-group.is-style-glass-panel {
	background: var(--wp-glass-bg);
	backdrop-filter: blur(var(--wp-glass-blur));
	-webkit-backdrop-filter: blur(var(--wp-glass-blur));
	border: 1px solid var(--wp-glass-border);
	border-radius: 16px;
	padding: var(--wp--preset--spacing--50, 1.5rem);
	transition: border-color var(--wp-transition-normal) var(--wp-ease-out),
	            box-shadow var(--wp-transition-normal) var(--wp-ease-out);
}

.is-style-glass-panel:hover {
	border-color: var(--wp-glass-hover-border);
}

/* Glass card for columns */
.wp-block-column.is-style-glass-card {
	background: var(--wp-glass-bg);
	backdrop-filter: blur(var(--wp-glass-blur));
	-webkit-backdrop-filter: blur(var(--wp-glass-blur));
	border: 1px solid var(--wp-glass-border);
	border-radius: 16px;
	padding: var(--wp--preset--spacing--60, 2rem);
	transition: border-color var(--wp-transition-normal) var(--wp-ease-out),
	            transform var(--wp-transition-normal) var(--wp-ease-out);
}

.wp-block-column.is-style-glass-card:hover {
	border-color: var(--wp-glass-hover-border);
	transform: translateY(-4px);
}

/* ==========================================================================
   Gradient Text
   ========================================================================== */

.is-style-gradient-text,
.wp-block-heading.is-style-gradient-text {
	background: var(--wp-gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (background-clip: text) {
	.is-style-gradient-text {
		background: none;
		-webkit-text-fill-color: initial;
		color: var(--wp--preset--color--accent-2);
	}
}

/* ==========================================================================
   Button Styles
   ========================================================================== */

/* Gradient button */
.wp-block-button.is-style-gradient-button .wp-block-button__link,
.is-style-gradient-button .wp-block-button__link {
	background: var(--wp-gradient-primary);
	border: none;
	color: #ffffff;
	font-weight: 500;
	padding: 0.875rem 1.75rem;
	border-radius: 8px;
	transition: transform var(--wp-transition-fast) var(--wp-ease-out),
	            box-shadow var(--wp-transition-fast) var(--wp-ease-out),
	            opacity var(--wp-transition-fast) var(--wp-ease-out);
}

.wp-block-button.is-style-gradient-button .wp-block-button__link:hover,
.is-style-gradient-button .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
	opacity: 0.95;
}

.wp-block-button.is-style-gradient-button .wp-block-button__link:active {
	transform: translateY(0);
}

/* Glass outline button */
.wp-block-button.is-style-glass-outline .wp-block-button__link,
.is-style-glass-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid var(--wp-glass-border);
	color: var(--wp--preset--color--contrast, #ffffff);
	font-weight: 500;
	padding: 0.875rem 1.75rem;
	border-radius: 8px;
	transition: border-color var(--wp-transition-fast) var(--wp-ease-out),
	            background var(--wp-transition-fast) var(--wp-ease-out);
}

.wp-block-button.is-style-glass-outline .wp-block-button__link:hover,
.is-style-glass-outline .wp-block-button__link:hover {
	border-color: var(--wp-glass-hover-border);
	background: var(--wp-glass-bg);
}

/* ==========================================================================
   Neon Glow Effects
   ========================================================================== */

.is-style-neon-glow,
.wp-block-group.is-style-neon-glow {
	box-shadow: 0 0 20px rgba(139, 92, 246, 0.15),
	            0 0 40px rgba(139, 92, 246, 0.1);
}

/* ==========================================================================
   Comparison Cards (Without / With)
   ========================================================================== */

.is-style-comparison-without,
.wp-block-group.is-style-comparison-without {
	background: var(--wp-glass-bg);
	border: 1px solid var(--wp-glass-border);
	border-radius: 16px;
	padding: var(--wp--preset--spacing--60, 2rem);
}

.is-style-comparison-without .comparison-header {
	color: var(--wp--preset--color--accent-4, #9ca3af);
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.is-style-comparison-with,
.wp-block-group.is-style-comparison-with {
	background: var(--wp-glass-bg);
	border: 1px solid var(--wp--preset--color--accent-5, #22c55e);
	border-radius: 16px;
	padding: var(--wp--preset--spacing--60, 2rem);
	position: relative;
}

.is-style-comparison-with::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.is-style-comparison-with .comparison-header {
	background: var(--wp--preset--color--accent-5, #22c55e);
	color: #ffffff;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	display: inline-block;
	margin-bottom: 1.5rem;
}

/* Comparison list items */
.comparison-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	line-height: 1.5;
}

.comparison-item-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
}

.comparison-item-icon--x {
	color: var(--wp--preset--color--accent-6, #ef4444);
}

.comparison-item-icon--check {
	color: var(--wp--preset--color--accent-5, #22c55e);
}

/* ==========================================================================
   Step Numbers (How It Works)
   ========================================================================== */

.is-style-step-number,
.wp-block-group.is-style-step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--wp-gradient-primary);
	border-radius: 12px;
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	flex-shrink: 0;
}

/* Step connector line */
.step-connector {
	width: 2px;
	height: 60px;
	background: linear-gradient(to bottom, var(--wp--preset--color--accent-2) 0%, transparent 100%);
	margin: 0 auto;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.is-style-fade-in-up,
.wp-block-group.is-style-fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity var(--wp-transition-slow) var(--wp-ease-out),
	            transform var(--wp-transition-slow) var(--wp-ease-out);
}

.is-style-fade-in-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children animations */
.is-style-fade-in-up.is-visible > * {
	animation: fadeInUpChild 0.5s var(--wp-ease-out) forwards;
	opacity: 0;
}

.is-style-fade-in-up.is-visible > *:nth-child(1) { animation-delay: 0ms; }
.is-style-fade-in-up.is-visible > *:nth-child(2) { animation-delay: 100ms; }
.is-style-fade-in-up.is-visible > *:nth-child(3) { animation-delay: 200ms; }
.is-style-fade-in-up.is-visible > *:nth-child(4) { animation-delay: 300ms; }
.is-style-fade-in-up.is-visible > *:nth-child(5) { animation-delay: 400ms; }

@keyframes fadeInUpChild {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Reduced Motion Support
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.is-style-fade-in-up {
		opacity: 1;
		transform: none;
	}

	.is-style-fade-in-up > * {
		opacity: 1;
		animation: none !important;
	}

	.wp-block-button__link:hover {
		transform: none !important;
	}

	.wp-block-column.is-style-glass-card:hover {
		transform: none !important;
	}
}

/* ==========================================================================
   Sticky Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(3, 0, 20, 0.2);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: background 0.4s ease, border-color 0.4s ease;
}

.site-header.is-scrolled {
	background: rgba(3, 0, 20, 0.85);
	border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Site logo */
.site-header__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.site-header__logo img {
	height: 32px;
	width: auto;
	display: block;
}

/* ==========================================================================
   Navigation Styles
   ========================================================================== */

/* Modern SaaS navigation style */
.wp-block-navigation .wp-block-navigation-item__content {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	font-weight: 450;
	letter-spacing: -0.01em;
	padding: 0.5rem 0;
	transition: color 0.2s ease;
}

.wp-block-navigation .wp-block-navigation-item__content:hover {
	color: #ffffff;
}

/* Remove default underline from parent theme */
.wp-block-navigation .wp-block-navigation-item__content {
	text-decoration: none !important;
	border-bottom: none !important;
	background-image: none !important;
}

.wp-block-navigation .wp-block-navigation-item__content:hover {
	text-decoration: none !important;
	border-bottom: none !important;
	background-image: none !important;
}

/* Custom gradient underline on hover */
.wp-block-navigation .wp-block-navigation-item__content::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, #8b5cf6, #ec4899);
	transition: width 0.3s ease;
}

.wp-block-navigation .wp-block-navigation-item__content:hover::after {
	width: 100%;
}

.wp-block-navigation .wp-block-navigation-item {
	position: relative;
}

/* CTA button in navigation */
.wp-block-navigation .wp-block-button.is-style-gradient-button .wp-block-button__link {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-section {
	position: relative;
	padding: 6rem 0 8rem;
	overflow: hidden;
}

.pricing-section__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.pricing-section__glow--1 {
	position: absolute;
	width: 600px;
	height: 600px;
	background: rgba(139, 92, 246, 0.15);
	border-radius: 50%;
	filter: blur(120px);
	top: -20%;
	left: -10%;
	animation: pricingGlow 15s ease-in-out infinite;
}

.pricing-section__glow--2 {
	position: absolute;
	width: 500px;
	height: 500px;
	background: rgba(59, 130, 246, 0.12);
	border-radius: 50%;
	filter: blur(120px);
	bottom: -20%;
	right: -10%;
	animation: pricingGlow 18s ease-in-out infinite reverse;
}

.pricing-section__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 70%);
}

@keyframes pricingGlow {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(30px, -20px) scale(1.05); }
}

.pricing-section__container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.pricing-section__header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 4rem;
}

.pricing-section__title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.pricing-section__subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin: 0;
}

.pricing-section__footnote {
	text-align: center;
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.875rem;
	margin-top: 3rem;
}

/* Cards grid */
.pricing-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: start;
}

/* Base card */
.pricing-card {
	position: relative;
	border-radius: 20px;
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            border-color 0.4s ease,
	            box-shadow 0.4s ease;
}

.pricing-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card__inner {
	padding: 2.5rem 2rem;
}

/* Card name */
.pricing-card__name {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1.5rem;
	text-align: center;
}

/* Price display */
.pricing-card__price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 2rem;
	gap: 2px;
}

.pricing-card__currency {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	align-self: flex-start;
	margin-top: 0.5rem;
}

.pricing-card__amount {
	font-size: 3.5rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	letter-spacing: -0.03em;
}

.pricing-card__period {
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.4);
	margin-left: 2px;
}

/* Feature list */
.pricing-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.pricing-card__feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.85);
}

.pricing-card__feature:last-child {
	border-bottom: none;
}

.pricing-card__check {
	width: 18px;
	height: 18px;
	color: #22c55e;
	flex-shrink: 0;
	filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.4));
}

.pricing-card__cross {
	width: 18px;
	height: 18px;
	color: rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
}

.pricing-card__feature--disabled {
	color: rgba(255, 255, 255, 0.25);
}

/* CTA buttons */
.pricing-card__cta {
	display: block;
	text-align: center;
	padding: 0.875rem 1.5rem;
	border-radius: 12px;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.03);
}

.pricing-card__cta:hover {
	border-color: rgba(255, 255, 255, 0.25);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.pricing-card__cta--primary {
	border: none;
	color: #ffffff;
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
	background-size: 200% 200%;
	animation: ctaGradient 4s ease infinite;
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.pricing-card__cta--primary:hover {
	box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
	transform: translateY(-2px);
}

@keyframes ctaGradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Featured card (Pro) */
.pricing-card--featured {
	border-color: transparent;
	background:
		linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)) padding-box,
		linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899, #8b5cf6, #3b82f6) border-box;
	background-size: 100% 100%, 300% 300%;
	animation: featuredBorder 5s linear infinite;
	box-shadow:
		0 0 30px rgba(139, 92, 246, 0.15),
		0 0 60px rgba(139, 92, 246, 0.08);
}

.pricing-card--featured:hover {
	box-shadow:
		0 0 40px rgba(139, 92, 246, 0.25),
		0 0 80px rgba(139, 92, 246, 0.12);
}

/* Neon glow behind featured card */
.pricing-card--featured::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 22px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899, #8b5cf6, #3b82f6);
	background-size: 300% 300%;
	animation: featuredBorder 5s linear infinite;
	z-index: -1;
	filter: blur(15px);
	opacity: 0.35;
	transition: opacity 0.4s ease;
}

.pricing-card--featured:hover::after {
	opacity: 0.5;
}

@keyframes featuredBorder {
	0% { background-position: 100% 100%, 0% 50%; }
	50% { background-position: 100% 100%, 100% 50%; }
	100% { background-position: 100% 100%, 200% 50%; }
}

/* Most Popular badge */
.pricing-card__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 2;
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
	white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
	.pricing-cards {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}

	.pricing-section {
		padding: 4rem 0 5rem;
	}
}

@media (max-width: 1100px) and (min-width: 901px) {
	.pricing-cards {
		gap: 1rem;
	}

	.pricing-card__inner {
		padding: 2rem 1.5rem;
	}

	.pricing-card__amount {
		font-size: 2.75rem;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.pricing-card--featured,
	.pricing-card--featured::after,
	.pricing-card__cta--primary {
		animation: none;
	}

	.pricing-card--featured::after {
		opacity: 0.4;
	}

	.pricing-section__glow--1,
	.pricing-section__glow--2 {
		animation: none;
	}
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-item {
	background: var(--wp-glass-bg);
	border: 1px solid var(--wp-glass-border);
	border-radius: 16px;
	margin-bottom: 1rem;
	overflow: hidden;
	position: relative;
	transition: border-color var(--wp-transition-normal) var(--wp-ease-out),
	            box-shadow var(--wp-transition-normal) var(--wp-ease-out),
	            transform var(--wp-transition-normal) var(--wp-ease-out);
}

/* Gradient accent line on left */
.faq-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--wp-gradient-primary);
	opacity: 0;
	transition: opacity var(--wp-transition-normal) var(--wp-ease-out);
	border-radius: 3px 0 0 3px;
}

.faq-item:hover {
	border-color: var(--wp-glass-hover-border);
	transform: translateX(4px);
}

.faq-item:hover::before {
	opacity: 1;
}

.faq-item.is-open {
	border-color: rgba(139, 92, 246, 0.3);
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.faq-item.is-open::before {
	opacity: 1;
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	font-weight: 500;
	font-size: 1rem;
	color: var(--wp--preset--color--contrast, #ffffff);
	transition: background var(--wp-transition-fast) var(--wp-ease-out),
	            color var(--wp-transition-fast) var(--wp-ease-out);
}

.faq-item__question span {
	flex: 1;
}

.faq-item__question:hover {
	background: rgba(255, 255, 255, 0.02);
}

.faq-item.is-open .faq-item__question {
	color: var(--wp--preset--color--contrast, #ffffff);
}

.faq-item__icon {
	width: 24px;
	height: 24px;
	padding: 4px;
	color: var(--wp--preset--color--accent-4, #9ca3af);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 6px;
	flex-shrink: 0;
	transition: transform var(--wp-transition-normal) var(--wp-ease-out),
	            background var(--wp-transition-normal) var(--wp-ease-out),
	            color var(--wp-transition-normal) var(--wp-ease-out);
}

.faq-item:hover .faq-item__icon {
	background: rgba(139, 92, 246, 0.15);
	color: var(--wp--preset--color--accent-2, #8b5cf6);
}

.faq-item.is-open .faq-item__icon {
	transform: rotate(180deg);
	background: var(--wp-gradient-primary);
	color: #ffffff;
}

.faq-item__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--wp-transition-slow) var(--wp-ease-in-out);
}

.faq-item.is-open .faq-item__answer {
	max-height: 500px;
}

.faq-item__answer-inner {
	padding: 0 1.5rem 1.5rem;
	color: var(--wp--preset--color--accent-4, #9ca3af);
	line-height: 1.8;
	font-size: 0.9375rem;
	border-top: 1px solid var(--wp-glass-border);
	margin-top: 0;
	padding-top: 1.25rem;
}

/* ==========================================================================
   Stats Counter
   ========================================================================== */

.stats-counter {
	text-align: center;
}

.stats-counter__number {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	background: var(--wp-gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.1;
}

.stats-counter__label {
	font-size: 0.875rem;
	color: var(--wp--preset--color--accent-4, #9ca3af);
	margin-top: 0.5rem;
}

/* ==========================================================================
   Social Proof Avatars
   ========================================================================== */

.avatar-stack {
	display: flex;
	align-items: center;
	justify-content: center;
}

.avatar-stack__images {
	display: flex;
}

.avatar-stack__images img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--wp--preset--color--base, #0a0f1a);
	margin-left: -10px;
}

.avatar-stack__images img:first-child {
	margin-left: 0;
}

.avatar-stack__count {
	margin-left: 0.75rem;
	font-size: 0.875rem;
	color: var(--wp--preset--color--accent-4, #9ca3af);
}

/* ==========================================================================
   Video Container
   ========================================================================== */

.video-container {
	position: relative;
	background: var(--wp-glass-bg);
	border: 1px solid var(--wp-glass-border);
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-container__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
	color: var(--wp--preset--color--contrast-2, #e2e8f0);
}

.video-container__placeholder-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
	opacity: 0.5;
}

/* ==========================================================================
   Testimonial Cards
   ========================================================================== */

.testimonial-card {
	background: var(--wp-glass-bg);
	border: 1px solid var(--wp-glass-border);
	border-radius: 16px;
	padding: 1.5rem;
}

.testimonial-card__header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.testimonial-card__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.testimonial-card__name {
	font-weight: 500;
	color: var(--wp--preset--color--contrast, #ffffff);
}

.testimonial-card__handle {
	font-size: 0.875rem;
	color: var(--wp--preset--color--accent-4, #9ca3af);
}

.testimonial-card__content {
	color: var(--wp--preset--color--contrast-2, #e2e8f0);
	line-height: 1.6;
}

.testimonial-card__platform {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--wp--preset--color--accent-4, #9ca3af);
}

/* ==========================================================================
   Insights Page — Hero
   ========================================================================== */

.insights-hero {
	position: relative;
	padding: 9rem 2rem 3.5rem;
	background: #030014;
	overflow: hidden;
	text-align: center;
}

.insights-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.insights-hero__orb--1 {
	position: absolute;
	top: -20%;
	left: 10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
	filter: blur(100px);
	animation: insightsOrb1 12s ease-in-out infinite alternate;
}

.insights-hero__orb--2 {
	position: absolute;
	bottom: -30%;
	right: 10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
	filter: blur(100px);
	animation: insightsOrb2 10s ease-in-out infinite alternate;
}

.insights-hero__orb--3 {
	position: absolute;
	top: 30%;
	right: 30%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
	filter: blur(80px);
	animation: insightsOrb3 8s ease-in-out infinite alternate;
}

@keyframes insightsOrb1 { to { transform: translate(30px, 20px) scale(1.1); } }
@keyframes insightsOrb2 { to { transform: translate(-20px, -30px) scale(1.05); } }
@keyframes insightsOrb3 { to { transform: translate(-15px, 25px) scale(0.9); } }

.insights-hero__grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 10%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 10%, transparent 80%);
}

.insights-hero__content {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0 auto;
}

.insights-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 1rem;
	border-radius: 100px;
	border: 1px solid rgba(59, 130, 246, 0.2);
	background: rgba(59, 130, 246, 0.05);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 1.75rem;
}

.insights-hero__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3b82f6;
	box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
	animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(59, 130, 246, 0.5); }
	50% { opacity: 0.6; box-shadow: 0 0 16px rgba(59, 130, 246, 0.8); }
}

.insights-hero__title {
	margin: 0 0 1.25rem;
	line-height: 1.1;
}

.insights-hero__title-line {
	display: block;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
}

.insights-hero__title-gradient {
	display: block;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 800;
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.insights-hero__subtitle {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7;
	margin: 0 0 2rem;
}

.insights-hero__topics {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.insights-hero__topic {
	padding: 0.35rem 0.875rem;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.03);
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.4);
	transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.insights-hero__topic:hover {
	border-color: rgba(139, 92, 246, 0.3);
	color: rgba(255, 255, 255, 0.7);
	background: rgba(139, 92, 246, 0.06);
}

.insights-hero__fade {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to bottom, transparent, var(--wp--preset--color--base, #0a0f1a));
	pointer-events: none;
}

/* ==========================================================================
   Insights Grid Wrapper
   ========================================================================== */

.insights-grid-wrapper > * {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.insights-grid-wrapper .wp-block-post-template.insights-grid {
	max-width: none !important;
}

/* ==========================================================================
   Insights Cards
   ========================================================================== */

/* --- Decorative header for cards without featured images --- */
.insights-card:not(:has(.wp-block-post-featured-image)) {
	position: relative;
	overflow: hidden;
}

.insights-card:not(:has(.wp-block-post-featured-image)) .insights-card__body {
	padding-top: 5.5rem !important;
}

.insights-card:not(:has(.wp-block-post-featured-image))::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background:
		linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(236, 72, 153, 0.08) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	pointer-events: none;
	z-index: 0;
}

/* Abstract dots pattern in placeholder */
.insights-card:not(:has(.wp-block-post-featured-image))::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	height: 80px;
	background-image:
		radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 20px 20px;
	z-index: 1;
	pointer-events: none;
}

/* --- Featured / first card: spans full width, horizontal layout --- */
.insights-grid > li:first-child {
	grid-column: 1 / -1;
}

.insights-grid > li:first-child .insights-card {
	border-radius: 20px;
	border-color: rgba(139, 92, 246, 0.12);
	background: rgba(255, 255, 255, 0.025);
}

.insights-grid > li:first-child .insights-card:has(.wp-block-post-featured-image) {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
}

.insights-grid > li:first-child .insights-card .wp-block-post-featured-image {
	border-radius: 20px 0 0 20px !important;
	min-height: 320px;
}

.insights-grid > li:first-child .insights-card .wp-block-post-featured-image img {
	border-radius: 20px 0 0 20px !important;
	height: 100%;
	object-fit: cover;
}

.insights-grid > li:first-child .insights-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2.5rem 2.5rem !important;
}

.insights-grid > li:first-child .wp-block-post-title {
	font-size: 1.625rem !important;
}

.insights-grid > li:first-child .wp-block-post-excerpt {
	font-size: 0.9375rem !important;
}

.insights-grid > li:first-child .wp-block-post-excerpt__excerpt {
	-webkit-line-clamp: 4 !important;
}

/* LATEST badge on featured post - use the category element */
.insights-grid > li:first-child .insights-card__body::before {
	content: "LATEST";
	display: inline-block;
	padding: 0.2rem 0.625rem;
	border-radius: 5px;
	background: var(--wp-gradient-primary);
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #ffffff;
	margin-bottom: 0.625rem;
}

/* Taller placeholder for spotlight card without image */
.insights-grid > li:first-child .insights-card:not(:has(.wp-block-post-featured-image))::after {
	height: 140px;
	background:
		linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.2) 40%, rgba(236, 72, 153, 0.1) 100%);
}

.insights-grid > li:first-child .insights-card:not(:has(.wp-block-post-featured-image)) .insights-card__body {
	padding-top: 8rem !important;
	padding-bottom: 2.5rem !important;
	padding-left: 2.5rem !important;
	padding-right: 2.5rem !important;
}

.insights-grid > li:first-child .insights-card:not(:has(.wp-block-post-featured-image))::before {
	height: 120px;
}

/* When only 1-2 posts, center the second card */
.insights-grid > li:nth-child(2):last-child {
	grid-column: 1 / -1;
	max-width: 480px;
	justify-self: center;
}

/* --- Regular cards --- */
.insights-card {
	position: relative;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
				border-color 0.4s ease,
				box-shadow 0.4s ease;
}

.insights-card:hover {
	transform: translateY(-4px);
	border-color: rgba(139, 92, 246, 0.15);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.3),
		0 0 60px rgba(139, 92, 246, 0.04);
}

/* Gradient top line on cards WITH images (::after isn't taken) */
.insights-card:has(.wp-block-post-featured-image) .wp-block-post-featured-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #3b82f6 30%, #8b5cf6 60%, #ec4899 80%, transparent 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 3;
}

.insights-card:has(.wp-block-post-featured-image):hover .wp-block-post-featured-image::before {
	opacity: 1;
}

/* Featured image wrapper */
.insights-card .wp-block-post-featured-image {
	overflow: hidden;
	position: relative;
}

.insights-card .wp-block-post-featured-image::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(to top, rgba(10, 15, 26, 0.6), transparent);
	pointer-events: none;
}

.insights-card .wp-block-post-featured-image img {
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	width: 100%;
}

.insights-card:hover .wp-block-post-featured-image img {
	transform: scale(1.05);
}

/* Category tags */
.insights-card .wp-block-post-terms a {
	color: #8b5cf6;
	text-decoration: none;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: color 0.2s ease;
}

.insights-card .wp-block-post-terms a:hover {
	color: #ec4899;
}

/* Title */
.insights-card .wp-block-post-title a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.insights-card .wp-block-post-title a:hover {
	color: #3b82f6;
}

/* Excerpt */
.insights-card .wp-block-post-excerpt__excerpt {
	color: rgba(255, 255, 255, 0.45);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.6;
}

/* Meta row */
.insights-card__meta .wp-block-post-date {
	color: rgba(255, 255, 255, 0.3) !important;
	font-size: 0.75rem !important;
}

.insights-card .wp-block-read-more {
	text-decoration: none;
	font-weight: 600;
	color: #8b5cf6 !important;
	font-size: 0.8125rem !important;
	transition: color 0.2s ease, gap 0.2s ease;
}

.insights-card .wp-block-read-more:hover {
	color: #3b82f6 !important;
}

/* ==========================================================================
   Insights Empty State
   ========================================================================== */

.insights-empty {
	text-align: center;
	padding: 5rem 2rem;
	grid-column: 1 / -1;
}

.insights-empty__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(139, 92, 246, 0.06);
	border: 1px solid rgba(139, 92, 246, 0.12);
	color: #8b5cf6;
}

.insights-empty__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.5rem;
}

.insights-empty__text {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.9375rem;
	margin: 0;
}

/* ==========================================================================
   Insights Pagination
   ========================================================================== */

.insights-grid-wrapper .wp-block-query-pagination {
	gap: 0.5rem;
}

.insights-grid-wrapper .wp-block-query-pagination-numbers .page-numbers,
.insights-grid-wrapper .wp-block-query-pagination-previous,
.insights-grid-wrapper .wp-block-query-pagination-next {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0.5rem 1rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.insights-grid-wrapper .wp-block-query-pagination-numbers .page-numbers:hover,
.insights-grid-wrapper .wp-block-query-pagination-previous:hover,
.insights-grid-wrapper .wp-block-query-pagination-next:hover {
	border-color: rgba(139, 92, 246, 0.2);
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.8);
}

.insights-grid-wrapper .wp-block-query-pagination-numbers .page-numbers.current {
	background: var(--wp-gradient-primary);
	border-color: transparent;
	color: #ffffff;
}

/* ==========================================================================
   Single Blog Post Layout
   ========================================================================== */

/* Hero spacer for single posts */
.blog-post-hero {
	position: relative;
	height: 120px;
	background: #030014;
	overflow: hidden;
}

.blog-post-hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, #030014, var(--wp--preset--color--base, #0a0f1a));
}

/* Single post wrapper overrides */
.blog-single-wrapper > * {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Article + sidebar layout */
.blog-post-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 2.5rem;
	padding-top: 2rem;
	padding-bottom: 4rem;
	align-items: start;
	max-width: 1100px;
	margin: 0 auto;
}

/* Article column */
.blog-post-article {
	min-width: 0;
}

.blog-post-reading-time {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.4);
}

/* Post content typography */
.blog-post-content p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	font-size: 1.0625rem;
}

.blog-post-content h2 {
	color: #ffffff;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
}

.blog-post-content h3 {
	color: #ffffff;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
	font-weight: 700;
}

.blog-post-content a {
	color: #3b82f6;
	text-decoration: underline;
	text-decoration-color: rgba(59, 130, 246, 0.3);
	text-underline-offset: 3px;
	transition: text-decoration-color 0.2s ease;
}

.blog-post-content a:hover {
	text-decoration-color: #3b82f6;
}

.blog-post-content ul,
.blog-post-content ol {
	color: rgba(255, 255, 255, 0.65);
	padding-left: 1.5rem;
	line-height: 1.8;
}

.blog-post-content blockquote {
	border-left: 3px solid #8b5cf6;
	padding-left: 1.5rem;
	margin: 2rem 0;
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
}

.blog-post-content code {
	background: rgba(255, 255, 255, 0.06);
	border-radius: 4px;
	padding: 0.15rem 0.4rem;
	font-size: 0.875em;
	color: #ec4899;
}

.blog-post-content pre {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 1.5rem;
	overflow-x: auto;
}

.blog-post-content img {
	border-radius: 12px;
}

/* Post navigation */
.blog-post-article .wp-block-post-navigation-link a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-post-article .wp-block-post-navigation-link a:hover {
	color: #3b82f6;
}

/* ==========================================================================
   Blog Sidebar Upsell
   ========================================================================== */

.blog-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* Sidebar cards base */
.blog-sidebar__card {
	position: relative;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.02);
	overflow: hidden;
}

.blog-sidebar__card-inner {
	position: relative;
	padding: 1.5rem;
}

/* CTA card - gradient accent */
.blog-sidebar__card--cta {
	border-color: rgba(139, 92, 246, 0.15);
}

.blog-sidebar__card--cta .blog-sidebar__card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.blog-sidebar__card-title {
	font-size: 1.125rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.3;
	margin: 0 0 0.75rem;
}

.blog-sidebar__card-desc {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
	margin: 0 0 1.25rem;
}

.blog-sidebar__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 8px;
	background: var(--wp-gradient-primary);
	background-size: 200% 200%;
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-sidebar__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.blog-sidebar__card-note {
	font-size: 0.6875rem;
	color: rgba(255, 255, 255, 0.3);
	margin: 0.75rem 0 0;
}

/* Features card */
.blog-sidebar__features-title {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.4);
	margin: 0 0 1rem;
}

.blog-sidebar__features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.blog-sidebar__features li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
}

.blog-sidebar__features li strong {
	color: rgba(255, 255, 255, 0.85);
}

.blog-sidebar__feature-icon {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(139, 92, 246, 0.08);
	border: 1px solid rgba(139, 92, 246, 0.15);
	color: #8b5cf6;
}

/* Quote/proof card */
.blog-sidebar__card--proof {
	border-color: rgba(59, 130, 246, 0.12);
}

.blog-sidebar__quote {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.65);
	font-style: italic;
	line-height: 1.6;
	margin: 0 0 0.5rem;
}

.blog-sidebar__attribution {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
	margin: 0;
}

/* ==========================================================================
   Blog Responsive
   ========================================================================== */

/* ==========================================================================
   Blog + Insights Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.blog-post-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
		max-width: 720px;
	}

	.blog-sidebar {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}

	.blog-sidebar__card--cta {
		grid-column: 1 / -1;
	}

	.insights-grid > li:first-child .insights-card {
		grid-template-columns: 1fr;
	}

	.insights-grid > li:first-child .insights-card .wp-block-post-featured-image {
		border-radius: 20px 20px 0 0 !important;
		min-height: 220px;
	}

	.insights-grid > li:first-child .insights-card .wp-block-post-featured-image img {
		border-radius: 20px 20px 0 0 !important;
	}
}

@media (max-width: 768px) {
	.insights-grid.wp-block-post-template.is-layout-grid {
		grid-template-columns: 1fr !important;
	}

	.insights-hero__topics {
		gap: 0.375rem;
	}
}

@media (max-width: 640px) {
	.insights-hero {
		padding: 7rem 1.25rem 2.5rem;
	}

	.insights-hero__title-line {
		font-size: 1.75rem;
	}

	.insights-hero__title-gradient {
		font-size: 2.25rem;
	}

	.blog-sidebar {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.wp-block-form input[type="text"],
.wp-block-form input[type="email"],
.wp-block-form input[type="url"],
.wp-block-form textarea {
	background: var(--wp-glass-bg);
	border: 1px solid var(--wp-glass-border);
	border-radius: 8px;
	color: var(--wp--preset--color--contrast, #ffffff);
	padding: 0.875rem 1rem;
	width: 100%;
	transition: border-color var(--wp-transition-fast) var(--wp-ease-out),
	            box-shadow var(--wp-transition-fast) var(--wp-ease-out);
}

.wp-block-form input[type="text"]:focus,
.wp-block-form input[type="email"]:focus,
.wp-block-form input[type="url"]:focus,
.wp-block-form textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--accent-2, #8b5cf6);
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.wp-block-form input::placeholder,
.wp-block-form textarea::placeholder {
	color: var(--wp--preset--color--accent-4, #9ca3af);
}

.wp-block-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--wp--preset--color--contrast-2, #e2e8f0);
}

/* ==========================================================================
   Full-Width Section Layout (remove gaps)
   ========================================================================== */

/* Remove gaps between full-width sections */
main.wp-block-group {
	gap: 0 !important;
}

main.wp-block-group > * {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Ensure sections connect seamlessly */
.wp-block-group.alignfull + .wp-block-group.alignfull,
.alignfull + .alignfull {
	margin-top: 0 !important;
}

/* Remove gap before footer */
main.wp-block-group + footer,
main + footer,
.site-footer {
	margin-top: 0 !important;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.footer-wrapper {
	position: relative;
	background: var(--wp--preset--color--base, #0a0f1a);
	overflow: hidden;
}

/* Background layer */
.footer-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

/* Gradient line at top */
.footer-gradient-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent,
		rgba(59, 130, 246, 0.5) 20%,
		rgba(139, 92, 246, 0.8) 50%,
		rgba(236, 72, 153, 0.5) 80%,
		transparent
	);
}

.footer-gradient-top::after {
	content: '';
	position: absolute;
	top: 0;
	left: 10%;
	right: 10%;
	height: 80px;
	background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

/* Floating orbs */
.footer-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.5;
	animation: footerOrbDrift 25s ease-in-out infinite;
}

.footer-orb--1 {
	width: 500px;
	height: 500px;
	top: -200px;
	left: -150px;
	background: rgba(59, 130, 246, 0.3);
}

.footer-orb--2 {
	width: 400px;
	height: 400px;
	top: 50%;
	right: -100px;
	background: rgba(139, 92, 246, 0.25);
	animation-delay: -8s;
}

.footer-orb--3 {
	width: 300px;
	height: 300px;
	bottom: -100px;
	left: 30%;
	background: rgba(236, 72, 153, 0.2);
	animation-delay: -16s;
}

@keyframes footerOrbDrift {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(30px, 20px); }
}

/* Subtle grid pattern */
.footer-grid-pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
	-webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

/* Content container */
.footer-content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 5rem 2rem 2rem;
}

/* Main grid */
.footer-main {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.2fr;
	gap: 4rem;
}

/* Brand section */
.footer-brand {
	max-width: 320px;
}

/* Footer site logo - WordPress block */
.footer-site-logo {
	display: block;
	margin-bottom: 0;
}

.footer-site-logo img {
	max-width: 140px;
	height: auto;
}

.footer-logo {
	text-decoration: none;
	display: inline-block;
}

.footer-logo__text {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--wp--preset--color--contrast, #ffffff);
	letter-spacing: -0.02em;
}

.footer-logo__highlight {
	background: linear-gradient(135deg, #8b5cf6, #ec4899);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-tagline {
	margin-top: 1.25rem;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--wp--preset--color--accent-4, #9ca3af);
}

/* Social links */
.footer-social {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.footer-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--wp--preset--color--accent-4, #9ca3af);
	transition: all 0.3s ease;
}

.footer-social__link:hover {
	background: rgba(139, 92, 246, 0.15);
	border-color: rgba(139, 92, 246, 0.3);
	color: #fff;
	transform: translateY(-2px);
}

/* Links columns */
.footer-links {
	display: flex;
	gap: 3rem;
}

.footer-links__title {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--preset--color--contrast, #ffffff);
	margin: 0 0 1.25rem;
}

.footer-links__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links__list a {
	color: var(--wp--preset--color--accent-4, #9ca3af);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-links__list a:hover {
	color: var(--wp--preset--color--contrast, #ffffff);
}

/* CTA section */
.footer-cta__card {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
	border: 1px solid rgba(139, 92, 246, 0.2);
	border-radius: 16px;
	padding: 1.75rem;
	position: relative;
	overflow: hidden;
}

.footer-cta__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.footer-cta__title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--wp--preset--color--contrast, #ffffff);
	margin: 0 0 0.5rem;
}

.footer-cta__text {
	font-size: 0.875rem;
	color: var(--wp--preset--color--accent-4, #9ca3af);
	margin: 0 0 1.25rem;
}

.footer-cta__button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.footer-cta__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.footer-cta__button svg {
	transition: transform 0.3s ease;
}

.footer-cta__button:hover svg {
	transform: translateX(3px);
}

/* Footer bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
	font-size: 0.875rem;
	color: var(--wp--preset--color--accent-4, #9ca3af);
	margin: 0;
}

.footer-bottom__nav {
	display: flex;
	gap: 2rem;
}

.footer-bottom__nav a {
	font-size: 0.875rem;
	color: var(--wp--preset--color--accent-4, #9ca3af);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom__nav a:hover {
	color: var(--wp--preset--color--contrast, #ffffff);
}

/* Mobile */
@media (max-width: 900px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.footer-brand {
		max-width: none;
	}

	.footer-links {
		gap: 4rem;
	}
}

@media (max-width: 600px) {
	.footer-content {
		padding: 3rem 1.5rem 1.5rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.footer-bottom__nav {
		flex-wrap: wrap;
		gap: 1rem 1.5rem;
	}

	.footer-orb {
		display: none;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.footer-orb {
		animation: none;
	}
}

/* Remove any default WordPress block margins on full sections */
.wp-block-group.alignfull {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Global body/page container gap fix */
body .is-layout-flow > * + * {
	margin-block-start: 0;
}

body .is-layout-flow > .alignfull + .alignfull {
	margin-block-start: 0;
}

/* ==========================================================================
   How It Works - Timeline Section
   ========================================================================== */

/* Wrapper to contain particles */
.steps-section-wrapper {
	position: relative;
	overflow: hidden;
}

/* Background with floating particles and light streaks */
.steps-section-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

/* Floating particles - glowing orbs */
.particle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0) 70%);
	animation: particleFloat 10s ease-in-out infinite;
}

.particle--1 {
	width: 80px;
	height: 80px;
	top: 15%;
	left: 8%;
	animation-delay: 0s;
	animation-duration: 12s;
}

.particle--2 {
	width: 50px;
	height: 50px;
	top: 60%;
	left: 15%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, rgba(59, 130, 246, 0) 70%);
	animation-delay: -3s;
	animation-duration: 15s;
}

.particle--3 {
	width: 120px;
	height: 120px;
	top: 25%;
	right: 10%;
	background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, rgba(236, 72, 153, 0) 70%);
	animation-delay: -5s;
	animation-duration: 18s;
}

.particle--4 {
	width: 40px;
	height: 40px;
	top: 70%;
	right: 20%;
	animation-delay: -8s;
	animation-duration: 11s;
}

.particle--5 {
	width: 60px;
	height: 60px;
	top: 45%;
	left: 50%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0) 70%);
	animation-delay: -2s;
	animation-duration: 14s;
}

@keyframes particleFloat {
	0%, 100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.4;
	}
	25% {
		transform: translate(30px, -20px) scale(1.1);
		opacity: 0.7;
	}
	50% {
		transform: translate(-20px, 30px) scale(0.9);
		opacity: 0.5;
	}
	75% {
		transform: translate(15px, 15px) scale(1.05);
		opacity: 0.8;
	}
}

/* Light streaks - horizontal speed lines */
.light-streak {
	position: absolute;
	height: 1px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(139, 92, 246, 0.6) 20%,
		rgba(236, 72, 153, 0.8) 50%,
		rgba(139, 92, 246, 0.6) 80%,
		transparent 100%
	);
	animation: lightspeed 4s ease-in-out infinite;
	opacity: 0;
}

.light-streak--1 {
	width: 200px;
	top: 20%;
	left: -200px;
	animation-delay: 0s;
}

.light-streak--2 {
	width: 300px;
	top: 50%;
	left: -300px;
	animation-delay: 1.5s;
	height: 2px;
}

.light-streak--3 {
	width: 150px;
	top: 75%;
	left: -150px;
	animation-delay: 3s;
}

@keyframes lightspeed {
	0% {
		transform: translateX(0);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateX(calc(100vw + 400px));
		opacity: 0;
	}
}

.steps-timeline {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
	padding-top: 60px;
}

/* Animated progress track */
.steps-timeline__track {
	position: absolute;
	top: 30px;
	left: 10%;
	right: 10%;
	height: 4px;
	background: rgba(139, 92, 246, 0.15);
	border-radius: 2px;
	overflow: hidden;
}

.steps-timeline__progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
	background-size: 200% 100%;
	animation: progressFlow 3s ease-in-out infinite;
	border-radius: 2px;
}

@keyframes progressFlow {
	0% { background-position: 100% 0; opacity: 0.4; }
	50% { background-position: 0% 0; opacity: 1; }
	100% { background-position: -100% 0; opacity: 0.4; }
}

/* Timeline item container */
.steps-timeline__item {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}

/* Marker (number circle) */
.steps-timeline__marker {
	position: relative;
	width: 60px;
	height: 60px;
	margin-bottom: 2rem;
}

.steps-timeline__marker-dot {
	position: relative;
	z-index: 2;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%);
	border: 3px solid;
	border-image: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899) 1;
	border-radius: 50%;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* Fix border-radius with gradient border */
.steps-timeline__marker-dot {
	border: none;
	background:
		linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 100%) padding-box,
		linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899) border-box;
	border: 3px solid transparent;
}

.steps-timeline__marker-ring {
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 2px solid rgba(139, 92, 246, 0.3);
	animation: ringPulse 2s ease-out infinite;
}

.steps-timeline__item--1 .steps-timeline__marker-ring { animation-delay: 0s; }
.steps-timeline__item--2 .steps-timeline__marker-ring { animation-delay: 0.6s; }
.steps-timeline__item--3 .steps-timeline__marker-ring { animation-delay: 1.2s; }

@keyframes ringPulse {
	0% { transform: scale(1); opacity: 0.6; }
	100% { transform: scale(1.6); opacity: 0; }
}

/* Card styling */
.steps-timeline__card {
	position: relative;
	width: 100%;
	max-width: 280px;
	border-radius: 20px;
	overflow: hidden;
}

.steps-timeline__card-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 20px;
}

.steps-timeline__card:hover .steps-timeline__card-glow {
	opacity: 1;
}

.steps-timeline__card-inner {
	position: relative;
	padding: 1.75rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	text-align: center;
	transition: transform 0.4s var(--wp-ease-out),
	            border-color 0.4s ease,
	            box-shadow 0.4s ease;
}

.steps-timeline__card:hover .steps-timeline__card-inner {
	transform: translateY(-6px);
	border-color: rgba(139, 92, 246, 0.3);
	box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}

/* Icon */
.steps-timeline__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1.25rem;
	padding: 10px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
	border-radius: 14px;
	color: #a78bfa;
	transition: transform 0.3s ease, background 0.3s ease;
}

.steps-timeline__icon svg {
	width: 100%;
	height: 100%;
}

.steps-timeline__card:hover .steps-timeline__icon {
	transform: scale(1.1) rotate(-5deg);
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
}

/* Title */
.steps-timeline__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 0.75rem;
}

/* Text */
.steps-timeline__text {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--wp--preset--color--accent-4, #9ca3af);
	margin: 0 0 1.25rem;
}

/* Time tag */
.steps-timeline__tag {
	display: inline-block;
	padding: 0.35rem 0.9rem;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
	border: 1px solid rgba(34, 197, 94, 0.25);
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #4ade80;
	letter-spacing: 0.02em;
}

/* Staggered entrance animation */
.steps-timeline__item {
	opacity: 0;
	animation: timelineItemIn 0.7s ease-out forwards;
}

.steps-timeline__item--1 { animation-delay: 0.1s; }
.steps-timeline__item--2 { animation-delay: 0.3s; }
.steps-timeline__item--3 { animation-delay: 0.5s; }

@keyframes timelineItemIn {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile responsive */
@media (max-width: 800px) {
	.steps-timeline {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
		padding-top: 0;
	}

	.steps-timeline__track {
		display: none;
	}

	.steps-timeline__item {
		flex-direction: row;
		align-items: flex-start;
		gap: 1.5rem;
		width: 100%;
		max-width: 400px;
	}

	.steps-timeline__marker {
		flex-shrink: 0;
		margin-bottom: 0;
		width: 50px;
		height: 50px;
	}

	.steps-timeline__marker-dot {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.steps-timeline__marker-ring {
		inset: -6px;
	}

	.steps-timeline__card {
		max-width: none;
		flex: 1;
	}

	.steps-timeline__card-inner {
		text-align: left;
		padding: 1.25rem;
	}

	.steps-timeline__icon {
		margin: 0 0 1rem;
		width: 40px;
		height: 40px;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.steps-timeline__progress,
	.steps-timeline__marker-ring {
		animation: none;
	}

	.steps-timeline__item {
		animation: none;
		opacity: 1;
	}

	.steps-timeline__progress {
		opacity: 0.7;
		background-position: 0 0;
	}

	.particle,
	.light-streak {
		animation: none;
		opacity: 0.3;
	}

	.light-streak {
		opacity: 0;
	}
}

/* ==========================================================================
   Enhanced Comparison Section
   ========================================================================== */

.comparison-container {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 2rem;
	align-items: stretch;
	max-width: 1000px;
	margin: 0 auto;
}

.comparison-card {
	position: relative;
	background: var(--wp-glass-bg);
	border: 1px solid var(--wp-glass-border);
	border-radius: 20px;
	padding: 2rem;
	transition: transform var(--wp-transition-normal) var(--wp-ease-out),
	            box-shadow var(--wp-transition-normal) var(--wp-ease-out);
}

.comparison-card:hover {
	transform: translateY(-4px);
}

/* Without Card - Muted, less appealing */
.comparison-card--without {
	background: rgba(255, 255, 255, 0.02);
	border-color: rgba(239, 68, 68, 0.2);
	opacity: 0.85;
}

.comparison-card--without:hover {
	box-shadow: 0 8px 30px rgba(239, 68, 68, 0.1);
}

/* With Card - Vibrant, glowing */
.comparison-card--with {
	background: rgba(34, 197, 94, 0.05);
	border-color: rgba(34, 197, 94, 0.3);
	box-shadow: 0 0 40px rgba(34, 197, 94, 0.1);
}

.comparison-card--with:hover {
	box-shadow: 0 8px 50px rgba(34, 197, 94, 0.2),
	            0 0 60px rgba(34, 197, 94, 0.15);
}

.comparison-card__glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
	pointer-events: none;
	animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.1); }
}

.comparison-card__header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.comparison-card__badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
}

.comparison-card__badge--without {
	background: rgba(239, 68, 68, 0.15);
	color: #ef4444;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.comparison-card__badge--with {
	background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.comparison-card__sparkle {
	font-size: 1.25rem;
	animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
	0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
	50% { transform: scale(1.2) rotate(10deg); opacity: 0.8; }
}

/* Arrow between cards */
.comparison-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
}

.comparison-arrow svg {
	width: 48px;
	height: 48px;
	color: var(--wp--preset--color--accent-5, #22c55e);
	animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
	0%, 100% { transform: translateX(0); opacity: 0.7; }
	50% { transform: translateX(8px); opacity: 1; }
}

/* Comparison list */
.comparison-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comparison-list__item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	line-height: 1.5;
}

.comparison-list__item:last-child {
	border-bottom: none;
}

.comparison-list__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.comparison-list__icon svg {
	width: 16px;
	height: 16px;
}

.comparison-list__item--negative .comparison-list__icon {
	background: rgba(239, 68, 68, 0.15);
	color: #ef4444;
}

.comparison-list__item--positive .comparison-list__icon {
	background: rgba(34, 197, 94, 0.2);
	color: #22c55e;
}

.comparison-list__item--positive {
	color: var(--wp--preset--color--contrast, #ffffff);
}

.comparison-list__item--negative {
	color: var(--wp--preset--color--accent-4, #9ca3af);
}

/* Staggered animation for list items */
.comparison-list__item {
	opacity: 0;
	animation: fadeInUp 0.5s ease-out forwards;
}

.comparison-list__item:nth-child(1) { animation-delay: 0.1s; }
.comparison-list__item:nth-child(2) { animation-delay: 0.2s; }
.comparison-list__item:nth-child(3) { animation-delay: 0.3s; }
.comparison-list__item:nth-child(4) { animation-delay: 0.4s; }
.comparison-list__item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Mobile Header & Navigation
   ========================================================================== */

/* Header full width */
.site-header {
	width: 100%;
	box-sizing: border-box;
	max-width: none !important;
}

/* Mobile menu button styling */
.wp-block-navigation__responsive-container-open {
	color: var(--wp--preset--color--contrast, #ffffff) !important;
	padding: 0.5rem;
	background: transparent !important;
	border: none !important;
}

.wp-block-navigation__responsive-container-open svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

/* Mobile menu overlay - FULL VIEWPORT */
.wp-block-navigation__responsive-container.is-menu-open {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	max-width: none !important;
	background: var(--wp--preset--color--base, #0a0f1a) !important;
	z-index: 999999 !important;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

/* Close button */
.wp-block-navigation__responsive-container-close {
	color: var(--wp--preset--color--contrast, #ffffff) !important;
	padding: 0.75rem;
	background: transparent !important;
	border: none !important;
	position: absolute !important;
	top: 1.5rem !important;
	right: 1.5rem !important;
	z-index: 10;
}

.wp-block-navigation__responsive-container-close svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

/* Mobile navigation container */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5rem 2rem 2rem;
	gap: 0;
	min-height: 100%;
	width: 100%;
}

/* Mobile navigation items */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
	width: 100%;
	max-width: 300px;
	text-align: center;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	font-size: 1.5rem;
	font-weight: 500;
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: block;
	color: var(--wp--preset--color--contrast, #ffffff) !important;
	transition: color 0.3s ease;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--accent-2, #8b5cf6) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:last-child .wp-block-navigation-item__content {
	border-bottom: none;
}

/* Hide mobile-only nav items on desktop */
.mobile-nav-spacer,
.mobile-nav-cta {
	display: none !important;
}

/* Show mobile nav items only in open mobile menu */
.wp-block-navigation__responsive-container.is-menu-open .mobile-nav-spacer {
	display: block !important;
	height: 2rem !important;
}

.wp-block-navigation__responsive-container.is-menu-open .mobile-nav-cta {
	display: flex !important;
	justify-content: center;
	margin-top: 1rem;
}

.wp-block-navigation__responsive-container.is-menu-open .mobile-nav-cta .wp-block-button__link {
	padding: 1rem 2.5rem !important;
	font-size: 1.1rem !important;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
	.comparison-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.comparison-arrow {
		transform: rotate(90deg);
		padding: 0.5rem 0;
	}

	.comparison-arrow svg {
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 782px) {
	/* Header mobile adjustments */
	.site-header {
		padding: 0.75rem 1rem !important;
	}

	/* Logo size on mobile */
	.site-header .wp-block-site-logo img {
		max-width: 110px !important;
		height: auto;
	}

	/* Tighten header flex layout on mobile */
	.site-header > .wp-block-group {
		gap: 0.5rem;
	}

	/* Hide desktop CTA button on mobile - it's in the menu */
	.site-header .desktop-cta {
		display: none !important;
	}

	/* Hero adjustments */
	.hero-gradient-bg {
		margin-top: -60px;
		padding-top: calc(var(--wp--preset--spacing--80) + 60px) !important;
	}

	/* Hero text adjustments */
	.hero-subheadline {
		font-size: 0.95rem;
		padding: 0 1rem;
	}

	.hero-subheadline br {
		display: none;
	}

	/* Comparison cards */
	.comparison-card {
		padding: 1.5rem;
	}

	.comparison-card__badge {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}

	/* Pricing cards on mobile */
	.pricing-card {
		padding: 1.5rem;
	}

	.pricing-card__price {
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	.site-header .wp-block-site-logo img {
		max-width: 100px !important;
	}

	.comparison-list__item {
		font-size: 0.9rem;
	}

	.hero-gradient-bg::before,
	.hero-gradient-bg::after {
		width: 400px;
		height: 400px;
	}
}

/* Reduced motion for comparison animations */
@media (prefers-reduced-motion: reduce) {
	.comparison-card__glow,
	.comparison-card__sparkle,
	.comparison-arrow svg {
		animation: none;
	}

	.comparison-list__item {
		animation: none;
		opacity: 1;
	}
}

/* ==========================================================================
   Feature Highlights Section (Enhanced)
   ========================================================================== */

/* Background wrapper - positioned behind content */
.features-section-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	pointer-events: none;
}

.features-section-bg {
	position: absolute;
	inset: 0;
}

/* Floating orbs */
.features-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	animation: featuresOrbFloat 20s ease-in-out infinite;
}

.features-orb--1 {
	width: 300px;
	height: 300px;
	top: -50px;
	right: 10%;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
	animation-delay: 0s;
}

.features-orb--2 {
	width: 250px;
	height: 250px;
	bottom: 10%;
	left: 5%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
	animation-delay: -7s;
	animation-duration: 25s;
}

.features-orb--3 {
	width: 200px;
	height: 200px;
	top: 40%;
	left: 50%;
	background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
	animation-delay: -14s;
	animation-duration: 22s;
}

@keyframes featuresOrbFloat {
	0%, 100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.6;
	}
	25% {
		transform: translate(30px, -20px) scale(1.1);
		opacity: 0.8;
	}
	50% {
		transform: translate(-20px, 30px) scale(0.95);
		opacity: 0.5;
	}
	75% {
		transform: translate(20px, 10px) scale(1.05);
		opacity: 0.7;
	}
}

/* Light beams */
.features-beam {
	position: absolute;
	width: 2px;
	height: 150px;
	background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.4), transparent);
	animation: featuresBeamMove 8s ease-in-out infinite;
}

.features-beam--1 {
	top: 20%;
	left: 15%;
	transform: rotate(15deg);
	animation-delay: 0s;
}

.features-beam--2 {
	top: 30%;
	right: 20%;
	transform: rotate(-20deg);
	animation-delay: -4s;
	background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.3), transparent);
}

@keyframes featuresBeamMove {
	0%, 100% {
		opacity: 0;
		transform: translateY(-30px) rotate(15deg);
	}
	50% {
		opacity: 1;
		transform: translateY(30px) rotate(15deg);
	}
}

/* Enhanced feature card - works with WordPress columns + is-style-glass-card */
.feature-card-enhanced {
	position: relative;
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card-enhanced::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--card-accent-color, #8b5cf6), transparent);
	transition: width 0.4s ease;
	border-radius: 2px;
}

.feature-card-enhanced:hover {
	transform: translateY(-5px);
	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.2),
		0 0 20px rgba(139, 92, 246, 0.1);
	border-color: rgba(139, 92, 246, 0.15);
}

.feature-card-enhanced:hover::before {
	width: 60%;
}

/* Feature icon styling */
.feature-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	margin-bottom: 1.25rem;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	position: relative;
}

.feature-icon svg {
	width: 28px;
	height: 28px;
	transition: transform 0.3s ease;
}

/* Feature card links */
.feature-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #8b5cf6;
	text-decoration: none;
	transition: all 0.2s ease;
}

.feature-card__link:hover {
	color: #a78bfa;
	gap: 0.5rem;
}

.feature-card-enhanced:hover .feature-icon {
	transform: scale(1.08);
}

.feature-card-enhanced:hover .feature-icon svg {
	transform: scale(1.05);
}

/* Icon color variants with accent line colors */
.feature-icon--blue {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
	color: #60a5fa;
	--card-accent-color: #3b82f6;
}

.feature-card-enhanced:hover .feature-icon--blue {
	box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.feature-card-enhanced:has(.feature-icon--blue)::before {
	background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.feature-icon--purple {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
	color: #a78bfa;
	--card-accent-color: #8b5cf6;
}

.feature-card-enhanced:hover .feature-icon--purple {
	box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.feature-card-enhanced:has(.feature-icon--purple)::before {
	background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.feature-icon--pink {
	background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
	color: #f472b6;
	--card-accent-color: #ec4899;
}

.feature-card-enhanced:hover .feature-icon--pink {
	box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.feature-card-enhanced:has(.feature-icon--pink)::before {
	background: linear-gradient(90deg, transparent, #ec4899, transparent);
}

.feature-icon--green {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
	color: #4ade80;
	--card-accent-color: #22c55e;
}

.feature-card-enhanced:hover .feature-icon--green {
	box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.feature-card-enhanced:has(.feature-icon--green)::before {
	background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.feature-icon--linkedin {
	background: linear-gradient(135deg, rgba(0, 119, 181, 0.2), rgba(0, 119, 181, 0.1));
	color: #0077b5;
	--card-accent-color: #0077b5;
}

.feature-card-enhanced:hover .feature-icon--linkedin {
	box-shadow: 0 0 20px rgba(0, 119, 181, 0.3);
}

.feature-card-enhanced:has(.feature-icon--linkedin)::before {
	background: linear-gradient(90deg, transparent, #0077b5, transparent);
}

.feature-icon--amber {
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
	color: #fbbf24;
	--card-accent-color: #f59e0b;
}

.feature-card-enhanced:hover .feature-icon--amber {
	box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.feature-card-enhanced:has(.feature-icon--amber)::before {
	background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.features-orb {
		display: none;
	}

	.features-beam {
		display: none;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.feature-card-enhanced,
	.feature-icon,
	.feature-card-enhanced::before {
		transition: none;
	}

	.feature-card-enhanced:hover {
		transform: none;
	}

	.features-orb,
	.features-beam {
		animation: none;
	}
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
	text-align: center;
}

.text-gradient {
	background: var(--wp-gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

/* ==========================================================================
   Focus Visible Styles (Accessibility)
   ========================================================================== */

:focus-visible {
	outline: 2px solid var(--wp--preset--color--accent-1, #3b82f6);
	outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--wp--preset--color--accent-1, #3b82f6);
	outline-offset: 2px;
}

/* ==========================================================================
   Feature Deep Dive Sections
   ========================================================================== */

.features-deep-dive {
	position: relative;
}

/* Individual feature section */
.feature-section {
	position: relative;
	padding: 7rem 0;
	overflow: hidden;
}

/* ==========================================================================
   Feature Hero Section (Idea Generator)
   ========================================================================== */

.feature-section--hero {
	position: relative;
	padding: 6rem 0 8rem;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feature-hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

/* Futuristic grid pattern */
.feature-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
}

/* Floating orbs (larger, more prominent) */
.feature-hero__orb {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 70%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	animation: orbFloat 20s ease-in-out infinite;
}

.feature-hero__orb--1 {
	width: 300px;
	height: 300px;
	top: 5%;
	right: 10%;
	background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.15), transparent 70%);
	animation-delay: 0s;
}

.feature-hero__orb--2 {
	width: 200px;
	height: 200px;
	bottom: 15%;
	left: 5%;
	background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.12), transparent 70%);
	animation-delay: -7s;
}

.feature-hero__orb--3 {
	width: 150px;
	height: 150px;
	top: 40%;
	left: 15%;
	background: radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.1), transparent 70%);
	animation-delay: -14s;
}

@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	25% { transform: translate(20px, -30px) rotate(5deg); }
	50% { transform: translate(-15px, -10px) rotate(-5deg); }
	75% { transform: translate(10px, 20px) rotate(3deg); }
}

/* Light beams */
.feature-hero__beam {
	position: absolute;
	width: 2px;
	height: 200px;
	background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.4), transparent);
	animation: beamMove 8s ease-in-out infinite;
}

.feature-hero__beam--1 {
	left: 20%;
	top: 0;
	transform: rotate(15deg);
	animation-delay: 0s;
}

.feature-hero__beam--2 {
	right: 25%;
	top: 0;
	transform: rotate(-10deg);
	animation-delay: -4s;
	background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.3), transparent);
}

@keyframes beamMove {
	0%, 100% { opacity: 0; transform: translateY(-100%) rotate(15deg); }
	10%, 90% { opacity: 1; }
	50% { transform: translateY(400%) rotate(15deg); }
}

.feature-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
}

.feature-hero__glow--1 {
	width: 800px;
	height: 800px;
	background: rgba(59, 130, 246, 0.4);
	top: -30%;
	left: -10%;
	animation: heroGlowFloat 15s ease-in-out infinite;
}

.feature-hero__glow--2 {
	width: 700px;
	height: 700px;
	background: rgba(139, 92, 246, 0.35);
	top: 10%;
	right: -15%;
	animation: heroGlowFloat 18s ease-in-out infinite reverse;
}

.feature-hero__glow--3 {
	width: 600px;
	height: 600px;
	background: rgba(236, 72, 153, 0.3);
	bottom: -20%;
	left: 20%;
	animation: heroGlowFloat 20s ease-in-out infinite;
}

@keyframes heroGlowFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -20px) scale(1.05); }
	66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Floating particles */
.feature-hero__particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(139, 92, 246, 0.6);
	border-radius: 50%;
	animation: particleFloat 10s ease-in-out infinite;
}

.feature-hero__particle--1 { top: 15%; left: 10%; animation-delay: 0s; }
.feature-hero__particle--2 { top: 25%; right: 15%; animation-delay: -2s; width: 6px; height: 6px; background: rgba(59, 130, 246, 0.6); }
.feature-hero__particle--3 { top: 60%; left: 5%; animation-delay: -4s; }
.feature-hero__particle--4 { top: 70%; right: 10%; animation-delay: -6s; width: 5px; height: 5px; background: rgba(236, 72, 153, 0.6); }
.feature-hero__particle--5 { top: 40%; left: 85%; animation-delay: -8s; }
.feature-hero__particle--6 { top: 80%; left: 30%; animation-delay: -1s; width: 8px; height: 8px; background: rgba(59, 130, 246, 0.5); }
.feature-hero__particle--7 { top: 20%; right: 30%; animation-delay: -3s; width: 5px; height: 5px; background: rgba(236, 72, 153, 0.5); }
.feature-hero__particle--8 { top: 55%; right: 5%; animation-delay: -5s; width: 7px; height: 7px; background: rgba(139, 92, 246, 0.6); }

@keyframes particleFloat {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
	50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

/* Hero container */
.feature-hero__container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Hero header */
.feature-hero__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}

.feature-hero__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	margin: 0.75rem 0 1rem;
	letter-spacing: -0.02em;
}

.feature-hero__lead {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

/* Video showcase */
.feature-hero__showcase {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
}

.feature-hero__video-wrapper {
	position: relative;
	width: 100%;
	max-width: 900px;
}

/* Browser mockup */
.feature-hero__browser {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(15, 23, 42, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.05),
		0 30px 60px -15px rgba(0, 0, 0, 0.6),
		0 0 80px rgba(139, 92, 246, 0.25),
		0 0 120px rgba(59, 130, 246, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-hero__video-wrapper::before {
	content: '';
	position: absolute;
	inset: -40px;
	background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
	z-index: -1;
	animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.05); }
}

.feature-hero__browser-bar {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 1rem;
	background: rgba(30, 41, 59, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-hero__browser-dots {
	display: flex;
	gap: 6px;
}

.feature-hero__browser-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
}

.feature-hero__browser-dots span:first-child { background: #ef4444; }
.feature-hero__browser-dots span:nth-child(2) { background: #eab308; }
.feature-hero__browser-dots span:last-child { background: #22c55e; }

.feature-hero__browser-url {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 0.75rem;
	background: rgba(15, 23, 42, 0.6);
	border-radius: 6px;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
}

.feature-hero__browser-url svg {
	color: #22c55e;
}

.feature-hero__browser-content {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 1) 100%);
}

.feature-hero__video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Decorative elements */
.feature-hero__decoration {
	position: absolute;
	pointer-events: none;
}

.feature-hero__decoration--ring {
	top: -50px;
	right: -50px;
	width: 180px;
	height: 180px;
	border: 3px solid transparent;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5), rgba(236, 72, 153, 0.5)) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: ringRotate 15s linear infinite;
	filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.feature-hero__decoration--ring::before {
	content: '';
	position: absolute;
	inset: 20px;
	border: 2px solid transparent;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(59, 130, 246, 0.4)) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: ringRotate 10s linear infinite reverse;
}

@keyframes ringRotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.feature-hero__decoration--sparkle-1,
.feature-hero__decoration--sparkle-2,
.feature-hero__decoration--sparkle-3 {
	font-size: 2rem;
	color: #8b5cf6;
	animation: sparkle 3s ease-in-out infinite;
	text-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
}

.feature-hero__decoration--sparkle-1 {
	top: 5%;
	left: -30px;
	animation-delay: 0s;
	font-size: 2.5rem;
}

.feature-hero__decoration--sparkle-2 {
	bottom: 15%;
	right: -35px;
	animation-delay: 0.7s;
	color: #3b82f6;
	font-size: 2rem;
}

.feature-hero__decoration--sparkle-3 {
	top: 60%;
	left: -50px;
	animation-delay: 1.4s;
	color: #ec4899;
	font-size: 1.5rem;
}

@keyframes sparkle {
	0%, 100% {
		transform: scale(1) rotate(0deg);
		opacity: 0.4;
		filter: brightness(1);
	}
	50% {
		transform: scale(1.5) rotate(180deg);
		opacity: 1;
		filter: brightness(1.3);
	}
}

/* Feature cards */
.feature-hero__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto;
}

.feature-hero__card {
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
}

.feature-hero__card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(139, 92, 246, 0.3);
	transform: translateY(-4px);
}

.feature-hero__card-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1rem;
	padding: 0.75rem;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
	border-radius: 12px;
	color: #8b5cf6;
}

.feature-hero__card-icon svg {
	width: 100%;
	height: 100%;
}

.feature-hero__card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 0.5rem;
}

.feature-hero__card p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	line-height: 1.5;
}

/* Responsive hero section */
@media (max-width: 768px) {
	.feature-hero__cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.feature-hero__video-wrapper {
		max-width: 100%;
	}

	.feature-hero__decoration--ring,
	.feature-hero__decoration--sparkle-1,
	.feature-hero__decoration--sparkle-2,
	.feature-hero__decoration--sparkle-3 {
		display: none;
	}

	.feature-hero__title {
		font-size: 1.75rem;
	}
}

.feature-section__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.feature-section__glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
}

.feature-section__glow--blue {
	background: #3b82f6;
	top: -10%;
	left: 0%;
	opacity: 0.25;
}

.feature-section__glow--purple {
	background: #8b5cf6;
	top: -20%;
	right: -10%;
}

.feature-section__glow--pink {
	background: #ec4899;
	top: -20%;
	left: -10%;
}

.feature-section__glow--green {
	background: #10b981;
	top: -20%;
	left: -10%;
}

.feature-section__glow--multi {
	background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
	top: -20%;
	right: -10%;
}

/* Container layout */
.feature-section__container {
	position: relative;
	z-index: 1;
	display: grid !important;
	grid-template-columns: 1.2fr 1fr !important;
	gap: 5rem;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem;
	width: 100%;
	box-sizing: border-box;
}

/* Ensure media and content display properly */
.feature-section__media,
.feature-section__content {
	min-width: 0;
}

/* Reversed layout for alternating sections */
.feature-section--reversed .feature-section__media {
	grid-column: 2;
	grid-row: 1;
}

.feature-section--reversed .feature-section__content {
	grid-column: 1;
	grid-row: 1;
}

/* Video container */
.feature-video {
	position: relative;
}

.feature-video__wrapper {
	position: relative;
	border-radius: 20px;
	overflow: visible;
	background: transparent;
	border: none;
	aspect-ratio: 16 / 10;
}

.feature-video__player {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	background: transparent;
	border-radius: 16px;
	position: relative;
	z-index: 2;
}

.feature-video__overlay {
	display: none;
}

/* Video glow effect */
.feature-video::before {
	content: '';
	position: absolute;
	inset: -20px;
	background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.2) 40%, transparent 70%);
	filter: blur(40px);
	z-index: 0;
	animation: videoGlowPulse 4s ease-in-out infinite;
}

/* Animated ring around video */
.feature-video::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 20px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899, #8b5cf6, #3b82f6);
	background-size: 300% 300%;
	z-index: 1;
	animation: videoRingGradient 6s ease infinite;
	opacity: 0.6;
}

.feature-video__wrapper {
	position: relative;
	z-index: 2;
}

@keyframes videoGlowPulse {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 0.9;
		transform: scale(1.05);
	}
}

@keyframes videoRingGradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.feature-video__reflection {
	display: none;
}

/* Video placeholder */
.feature-video__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

.feature-video__placeholder-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.feature-video__placeholder-icon svg {
	width: 28px;
	height: 28px;
	color: rgba(255, 255, 255, 0.5);
}

.feature-video__placeholder-text {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.05em;
}

.feature-video:hover .feature-video__placeholder-icon {
	background: rgba(139, 92, 246, 0.2);
	border-color: rgba(139, 92, 246, 0.4);
	transform: scale(1.05);
}

/* Content section */
.feature-section__content {
	padding: 1rem 0;
}

.feature-section__badge {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
	border: 1px solid rgba(139, 92, 246, 0.3);
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #a78bfa;
	margin-bottom: 1.25rem;
}

.feature-section__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 1.25rem 0;
	letter-spacing: -0.02em;
}

.feature-section__lead {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 1.75rem 0;
}

/* Feature list */
.feature-section__list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.feature-section__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.feature-check {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: #8b5cf6;
	margin-top: 2px;
}

.feature-section__list span {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
}

/* Pain point callout */
.feature-section__pain {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	background: rgba(239, 68, 68, 0.08);
	border: 1px solid rgba(239, 68, 68, 0.2);
	border-radius: 10px;
	margin-top: 1.5rem;
}

.feature-section__pain-label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #ef4444;
	white-space: nowrap;
}

.feature-section__pain-text {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
	text-decoration: line-through;
	text-decoration-color: rgba(239, 68, 68, 0.4);
}

/* Channel cards */
.feature-section__channels {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.feature-channel {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.feature-channel:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(139, 92, 246, 0.3);
}

.feature-channel__icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-channel__icon svg {
	width: 24px;
	height: 24px;
}

.feature-channel__icon--wordpress {
	background: linear-gradient(135deg, #21759b, #1e6e8c);
	color: #ffffff;
}

.feature-channel__icon--linkedin {
	background: linear-gradient(135deg, #0077b5, #005582);
	color: #ffffff;
}

.feature-channel__icon--email {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
	color: #ffffff;
}

.feature-channel__info {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.feature-channel__info strong {
	font-size: 0.95rem;
	font-weight: 600;
	color: #ffffff;
}

.feature-channel__info span {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Subsections for AI Content */
.feature-subsections {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.feature-subsection {
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
}

.feature-subsection__title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 0.875rem 0;
}

.feature-subsection__title svg {
	width: 20px;
	height: 20px;
	color: #8b5cf6;
}

.feature-subsection__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.feature-subsection__list li {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	padding-left: 1rem;
	position: relative;
}

.feature-subsection__list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #8b5cf6;
}

/* Integrations grid */
.feature-integrations {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.feature-integration {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.feature-integration:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(139, 92, 246, 0.3);
}

.feature-integration__logo {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-integration__logo svg {
	width: 22px;
	height: 22px;
	color: #ffffff;
}

.feature-integration__logo span {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
}

.feature-integration__logo--wordpress {
	background: linear-gradient(135deg, #21759b, #1e6a8d);
}

.feature-integration__logo--linkedin {
	background: linear-gradient(135deg, #0077b5, #005582);
}

.feature-integration__logo--brevo {
	background: linear-gradient(135deg, #0b996e, #088a5f);
}

.feature-integration__logo--mailchimp {
	background: linear-gradient(135deg, #ffe01b, #f5d000);
}

.feature-integration__logo--mailchimp span {
	font-size: 1.5rem;
	font-weight: 700;
	color: #241c15;
}

.feature-integration__info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.feature-integration__info strong {
	font-size: 0.9rem;
	font-weight: 600;
	color: #ffffff;
}

.feature-integration__info span {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.4;
}

.feature-section__coming-soon {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
	font-style: italic;
	margin: 0 0 1rem 0;
}

/* Responsive - Feature Sections */
@media (max-width: 1024px) {
	.feature-section {
		padding: 4rem 0;
	}

	.feature-section__container {
		gap: 3rem;
	}

	.feature-subsections {
		grid-template-columns: 1fr;
	}

	.feature-integrations {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.feature-section {
		padding: 3rem 0;
	}

	.feature-section__container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.feature-section--reversed .feature-section__container {
		direction: ltr;
	}

	.feature-section__media {
		order: -1;
	}

	.feature-section__title {
		font-size: 1.5rem;
	}

	.feature-section__lead {
		font-size: 1rem;
	}

	.feature-video__wrapper {
		aspect-ratio: 16 / 9;
	}

	.feature-subsections {
		gap: 1rem;
	}

	.feature-subsection {
		padding: 1rem;
	}

	.feature-section__channels {
		gap: 0.75rem;
	}

	.feature-channel {
		padding: 0.875rem 1rem;
	}

	.feature-channel__icon {
		width: 38px;
		height: 38px;
	}
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
	.site-header,
	.site-footer,
	.wp-block-button {
		display: none;
	}

	body {
		background: #ffffff;
		color: #000000;
	}

	.is-style-gradient-text {
		background: none;
		-webkit-text-fill-color: initial;
		color: #000000;
	}
}
