/**
 * Home landing template (home.php) — external sheet for cache + AMP sanitizer.
 *
 * @package HelloElementorChild
 */

	/* Hero Section */
	.hero-section {
		background: white;
		color: #333;
		padding: 100px 0;
		min-height: 80vh;
		display: flex;
		align-items: center;
	}

	.hero-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 80px;
		align-items: center;
	}

	.hero-left {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.modern-heading {
		margin-bottom: 40px;
	}

	.heading-line {
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		font-weight: 700;
		margin-bottom: 8px;
	}

	.heading-line:first-child {
		font-size: 2.5rem;
		color: #374151;
		margin-bottom: 4px;
	}

	.heading-line.brand {
		font-size: 4.5rem;
		color: #3b82f6;
		margin-bottom: 8px;
		letter-spacing: -0.02em;
	}

	.heading-line:last-of-type {
		font-size: 3.2rem;
		color: #374151;
		margin-bottom: 16px;
	}

	.heading-line .brand {
		color: #3b82f6;
		font-size: 3.5rem;
	}

	.heading-accents {
		position: relative;
		height: 20px;
	}

	.accent-line {
		position: absolute;
		height: 3px;
		border-radius: 2px;
	}

	.accent-line.orange {
		width: 50px;
		background: #f59e0b;
		top: 0;
		left: 0;
	}

	.accent-line.green {
		width: 35px;
		background: #10b981;
		top: 10px;
		left: 10px;
	}

	.plugin-showcase {
		margin-bottom: 40px;
	}

	.plugin-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.plugin-card {
		background: white;
		border: 2px solid #e5e7eb;
		border-radius: 16px;
		padding: 24px;
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
	}

	.plugin-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: linear-gradient(90deg, #3b82f6, #1e40af);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.plugin-card:hover {
		border-color: #3b82f6;
		transform: translateY(-8px);
		box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
	}

	.plugin-card:hover::before {
		opacity: 1;
	}

	.plugin-card.premium {
		border-color: #f59e0b;
	}

	.plugin-card.premium:hover {
		border-color: #f59e0b;
		box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
	}

	.plugin-card.featured {
		border-color: #10b981;
		background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
	}

	.plugin-card.featured:hover {
		border-color: #10b981;
		box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
	}

	/* Plugin Header */
	.plugin-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 16px;
	}

	.plugin-icon {
		width: 48px;
		height: 48px;
		background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		color: white;
	}

	.plugin-card.premium .plugin-icon {
		background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	}

	.plugin-card.featured .plugin-icon {
		background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	}

	.plugin-badge {
		background: #e5e7eb;
		color: #6b7280;
		font-size: 10px;
		font-weight: 700;
		padding: 4px 8px;
		border-radius: 6px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.plugin-badge.featured {
		background: #10b981;
		color: white;
	}

	/* Plugin Content */


	.plugin-name {
		font-size: 18px;
		font-weight: 700;
		color: #1f2937;
		margin-bottom: 8px;
		line-height: 1.3;
	}

	.plugin-description {
		color: #6b7280;
		font-size: 13px;
		line-height: 1.5;
		margin-bottom: 12px;
	}

	.plugin-features {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
	}

	.feature-tag {
		background: #f3f4f6;
		color: #374151;
		font-size: 10px;
		font-weight: 600;
		padding: 3px 8px;
		border-radius: 4px;
		text-transform: uppercase;
		letter-spacing: 0.3px;
	}

	/* Plugin Footer */
	.plugin-footer {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.plugin-stats {
		display: flex;
		gap: 12px;
	}

	.stat {
		color: #6b7280;
		font-size: 12px;
		font-weight: 600;
	}

	.plugin-btn {
		background: #3b82f6;
		color: white;
		border: none;
		padding: 8px 16px;
		border-radius: 8px;
		font-size: 12px;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.plugin-btn:hover {
		background: #1e40af;
		transform: translateY(-2px);
	}

	.plugin-btn.featured {
		background: #10b981;
	}

	.plugin-btn.featured:hover {
		background: #059669;
	}

	.hero-stats {
		display: flex;
		gap: 40px;
		margin-top: 20px;
	}

	.stat {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.stat-number {
		font-size: 1rem;
		font-weight: 700;
		color: #fbbf24;
	}

	.stat-label {
		font-size: 14px;
		color: #666;
		margin-top: 5px;
	}



	/* Professional Interface */
	.hero-right {
		position: relative;
	}

	.professional-interface {
		position: relative;
		width: 100%;
		height: 500px;
		background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	}

	/* Application Window */
	.app-window {
		position: absolute;
		top: 60px;
		left: 60px;
		width: 320px;
		background: #1e293b;
		border-radius: 16px;
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
		overflow: hidden;
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.window-header {
		background: #334155;
		padding: 16px 20px;
		display: flex;
		align-items: center;
		gap: 15px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.window-controls {
		display: flex;
		gap: 8px;
	}

	.control {
		width: 14px;
		height: 14px;
		border-radius: 50%;
		transition: all 0.3s ease;
	}

	.control.red {
		background: #ef4444;
	}

	.control.yellow {
		background: #f59e0b;
	}

	.control.green {
		background: #10b981;
	}

	.control:hover {
		transform: scale(1.1);
		box-shadow: 0 0 10px currentColor;
	}

	.window-title {
		color: #cbd5e1;
		font-size: 14px;
		font-weight: 500;
		letter-spacing: 0.5px;
	}

	.window-content {
		padding: 20px;
	}

	/* Dashboard Header */
	.dashboard-header {
		margin-bottom: 20px;
	}

	.stats-row {
		display: flex;
		justify-content: space-between;
		gap: 12px;
	}

	.stat-item {
		text-align: center;
		flex: 1;
	}

	.stat-number {
		color: #3b82f6;
		font-size: 16px;
		font-weight: 700;
		margin-bottom: 2px;
	}

	.stat-label {
		color: #94a3b8;
		font-size: 10px;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.dashboard-grid {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin-bottom: 20px;
	}

	.dashboard-item {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 14px;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 10px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		transition: all 0.3s ease;
		position: relative;
	}

	.dashboard-item.active {
		background: rgba(59, 130, 246, 0.15);
		border-color: rgba(59, 130, 246, 0.3);
	}

	.dashboard-item:hover {
		background: rgba(255, 255, 255, 0.1);
		transform: translateX(3px);
	}

	.item-icon {
		width: 36px;
		height: 36px;
		background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 16px;
		flex-shrink: 0;
	}

	.item-info {
		flex: 1;
		min-width: 0;
	}

	.item-name {
		color: #f1f5f9;
		font-size: 13px;
		font-weight: 600;
		margin-bottom: 2px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.item-status {
		color: #10b981;
		font-size: 11px;
		font-weight: 500;
		margin-bottom: 2px;
	}

	.item-desc {
		color: #94a3b8;
		font-size: 10px;
		font-weight: 400;
	}

	.item-badge {
		background: rgba(59, 130, 246, 0.2);
		color: #3b82f6;
		font-size: 9px;
		font-weight: 600;
		padding: 2px 6px;
		border-radius: 6px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		flex-shrink: 0;
	}

	/* Dashboard Footer */
	.dashboard-footer {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-top: 16px;
	}

	.quick-actions {
		display: flex;
		gap: 8px;
	}

	.action-btn {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		padding: 8px 12px;
		border: none;
		border-radius: 6px;
		font-size: 11px;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.3s ease;
		color: white;
	}

	.action-btn.primary {
		background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
	}

	.action-btn.primary:hover {
		background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
		transform: translateY(-1px);
	}

	.action-btn.secondary {
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

	.action-btn.secondary:hover {
		background: rgba(255, 255, 255, 0.15);
		border-color: rgba(255, 255, 255, 0.3);
	}

	.action-btn i {
		font-size: 10px;
	}

	/* Module Showcase */
	.module-showcase {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}

	.module-card {
		position: absolute;
		background: white;
		border-radius: 16px;
		padding: 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		transition: all 0.4s ease;
		border: 1px solid rgba(0, 0, 0, 0.05);
		overflow: hidden;
	}

	.module-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.module-card:hover {
		transform: translateY(-8px) scale(1.05);
		box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
	}

	.module-card:hover::before {
		opacity: 1;
	}

	.card-glow {
		position: absolute;
		top: -2px;
		left: -2px;
		right: -2px;
		bottom: -2px;
		background: linear-gradient(135deg, #3b82f6, #1e40af, #8b5cf6);
		border-radius: 18px;
		opacity: 0;
		transition: opacity 0.3s ease;
		z-index: -1;
	}

	.module-card:hover .card-glow {
		opacity: 0.3;
	}

	.card-content {
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.card-icon {
		width: 48px;
		height: 48px;
		background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 20px;
		color: white;
		box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
	}

	.card-label {
		font-size: 11px;
		font-weight: 700;
		color: #374151;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	/* Card Positions */
	.module-card.plugins {
		top: 40px;
		right: 40px;
		transform: rotate(-8deg);
	}

	.module-card.themes {
		top: 160px;
		right: 60px;
		transform: rotate(6deg);
	}

	.module-card.tools {
		bottom: 140px;
		left: 40px;
		transform: rotate(-4deg);
	}

	.module-card.code {
		bottom: 40px;
		left: 60px;
		transform: rotate(8deg);
	}

	/* Background Elements */
	.bg-elements {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		pointer-events: none;
	}

	.bg-circle {
		position: absolute;
		border-radius: 50%;
		filter: blur(2px);
	}

	.bg-circle.primary {
		width: 120px;
		height: 120px;
		top: 30px;
		right: 30px;
		background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
	}

	.bg-circle.secondary {
		width: 80px;
		height: 80px;
		bottom: 60px;
		left: 30px;
		background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
	}

	.bg-line.accent {
		position: absolute;
		width: 150px;
		height: 3px;
		background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.2) 50%, transparent 100%);
		top: 50%;
		right: 20px;
		transform: translateY(-50%) rotate(45deg);
		border-radius: 2px;
	}

	/* Plugin Introduction Section */
	.plugin-intro-section {
		background: #fff;
		padding: 80px 0;
		position: relative;
		overflow: hidden;
	}

	/* Animation Keyframes */
	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes fadeInLeft {
		from {
			opacity: 0;
			transform: translateX(-30px);
		}

		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

	@keyframes fadeInRight {
		from {
			opacity: 0;
			transform: translateX(30px);
		}

		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

	@keyframes float {

		0%,
		100% {
			transform: translateY(0px);
		}

		50% {
			transform: translateY(-10px);
		}
	}

	@keyframes pulse {

		0%,
		100% {
			transform: scale(1);
		}

		50% {
			transform: scale(1.05);
		}
	}

	@keyframes slideInFromTop {
		from {
			opacity: 0;
			transform: translateY(-20px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes rotateIn {
		from {
			opacity: 0;
			transform: rotate(-10deg) scale(0.8);
		}

		to {
			opacity: 1;
			transform: rotate(0deg) scale(1);
		}
	}

	@keyframes glow {

		0%,
		100% {
			box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
		}

		50% {
			box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
		}
	}

	@keyframes bounce {

		0%,
		20%,
		50%,
		80%,
		100% {
			transform: translateY(0);
		}

		40% {
			transform: translateY(-8px);
		}

		60% {
			transform: translateY(-4px);
		}
	}

	.intro-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 80px;
		align-items: center;
		position: relative;
		z-index: 1;
	}

	.intro-text {
		max-width: 600px;
		animation: fadeInLeft 1s ease-out;
	}

	/* ===== ATTRACTIVE HEADING DESIGN ===== */
	.heading-container {
		position: relative;
		margin-bottom: 32px;
		animation: fadeInUp 1s ease-out 0.2s both;
	}

	.heading-line {
		display: flex;
		align-items: baseline;
		gap: 12px;
		margin-bottom: 8px;
		flex-wrap: wrap;
	}

	.heading-prefix {
		font-size: 3.2rem;
		font-weight: 700;
		color: #334155;
		line-height: 1.1;
	}

	.heading-highlight {
		font-size: 4rem;
		font-weight: 900;
		background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		position: relative;
		text-shadow: 0 6px 12px rgba(6, 182, 212, 0.4);
	}

	.heading-highlight::before {
		content: '';
		position: absolute;
		bottom: -8px;
		left: 0;
		width: 100%;
		height: 5px;
		background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
		border-radius: 3px;
		transform: scaleX(0);
		transform-origin: left;
		animation: expandLine 1.2s ease-out 0.8s forwards;
		box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
	}

	.heading-suffix {
		font-size: 2.8rem;
		font-weight: 600;
		color: #475569;
		line-height: 1.2;
		margin-left: 4px;
	}

	.heading-accent {
		position: absolute;
		top: -15px;
		right: -20px;
		display: flex;
		gap: 8px;
		animation: fadeInRight 1s ease-out 1s both;
	}

	.accent-dot {
		width: 12px;
		height: 12px;
		border-radius: 50%;
		animation: pulse 2s ease-in-out infinite;
	}

	.accent-dot.primary {
		background: linear-gradient(135deg, #06b6d4, #0891b2);
		animation-delay: 0s;
		box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
	}

	.accent-dot.secondary {
		background: linear-gradient(135deg, #3b82f6, #1d4ed8);
		animation-delay: 0.5s;
		box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
	}

	.accent-dot.tertiary {
		background: linear-gradient(135deg, #8b5cf6, #7c3aed);
		animation-delay: 1s;
		box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
	}

	@keyframes expandLine {
		from {
			transform: scaleX(0);
		}

		to {
			transform: scaleX(1);
		}
	}

	.intro-description {
		font-size: 1.1rem;
		color: #64748b;
		line-height: 1.7;
		margin-bottom: 32px;
		animation: fadeInUp 1s ease-out 0.4s both;
		text-align: left
	}

	.intro-features {
		display: flex;
		flex-direction: column;
		gap: 16px;
		margin-bottom: 40px;
		animation: fadeInUp 1s ease-out 0.6s both;
	}

	.feature-item {
		display: flex;
		align-items: center;
		gap: 12px;
		color: #475569;
		font-weight: 500;
		animation: slideInFromTop 0.6s ease-out both;
		width: 100%;
	}

	.feature-item:nth-child(1) {
		animation-delay: 0.8s;
	}

	.feature-item:nth-child(2) {
		animation-delay: 1.0s;
	}

	.feature-item:nth-child(3) {
		animation-delay: 1.2s;
	}

	.feature-item i {
		color: #3b82f6;
		font-size: 18px;
		width: 24px;
		animation: pulse 2s ease-in-out infinite;
	}

	.intro-btn {
		display: inline-block;
		background: #1e40af;
		color: white;
		padding: 16px 32px;
		border-radius: 12px;
		text-decoration: none;
		font-weight: 600;
		font-size: 1rem;
		transition: all 0.3s ease;
		box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
		animation: fadeInUp 1s ease-out 1.4s both;
	}

	.intro-btn:hover {
		color: white !important;
	}

	/* Visual Elements */
	.intro-visual {
		position: relative;
		/* height: 400px; */
		animation: fadeInRight 1s ease-out 0.3s both;
	}

	.plugin-showcase-visual {
		position: relative;
		width: 100%;
		height: 100%;
	}

	.plugin-card-visual {
		z-index: 9;
		position: absolute;
		top: 51%;
		left: 57%;
		transform: translate(-50%, -50%);
		background: white;
		border-radius: 20px;
		padding: 32px;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
		border: 1px solid rgba(59, 130, 246, 0.1);
		width: 230px;
		animation: rotateIn 1s ease-out 1s both;
	}

	.card-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
	}

	.plugin-icon-visual {
		width: 48px;
		height: 48px;
		background: linear-gradient(135deg, #3b82f6, #1e40af);
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 20px;
		animation: glow 2s ease-in-out infinite;
	}

	.plugin-status {
		background: #10b981;
		color: white;
		padding: 4px 12px;
		border-radius: 20px;
		font-size: 12px;
		font-weight: 600;
		animation: pulse 1.5s ease-in-out infinite;
	}

	.card-body h3 {
		color: #1e293b;
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 8px;
	}

	.card-body p {
		color: #64748b;
		font-size: 14px;
		line-height: 1.5;
	}

	.floating-elements {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}

	.element {
		position: absolute;
		background: white;
		border-radius: 12px;
		padding: 12px 16px;
		display: flex;
		align-items: center;
		gap: 8px;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
		font-size: 12px;
		font-weight: 600;
		color: #374151;
		transition: all 0.3s ease;
		animation: float 3s ease-in-out infinite;
	}

	.element:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
		animation: bounce 0.6s ease-in-out;
	}

	.element i {
		color: #3b82f6;
		font-size: 14px;
	}

	.element.security {
		top: 20px;
		right: 40px;
		background: linear-gradient(135deg, #fef3c7, #fde68a);
		color: #92400e;
		animation-delay: 0s;
	}

	.element.security i {
		color: #f59e0b;
		animation: pulse 2s ease-in-out infinite;
	}

	.element.performance {
		top: 12px;
		left: 20px;
		background: linear-gradient(135deg, #dbeafe, #bfdbfe);
		color: #1e40af;
		animation-delay: 1s;
	}

	.element.performance i {
		color: #3b82f6;
		animation: pulse 2s ease-in-out infinite 0.5s;
	}

	.element.seo {
		bottom: 20px;
		left: 40px;
		background: linear-gradient(135deg, #dcfce7, #bbf7d0);
		color: #166534;
		animation-delay: 2s;
	}

	.element.seo i {
		color: #10b981;
		animation: pulse 2s ease-in-out infinite 1s;
	}

	/* ===== FEATURES SECTION ===== */
	.features-section {
		padding: 80px 0;
		background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
		position: relative;
		overflow: hidden;
	}

	.features-section::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(59,130,246,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
		pointer-events: none;
	}

	/* Layout */
	.features-layout {
		display: flex;
		gap: 20px;
		align-items: start;
		position: relative;
		z-index: 1;
		min-height: 600px;
		flex-direction: column;
	}

	/* Header Column */
	.features-header {
		position: relative;
		display: flex;
		height: 100%;
		flex-direction: column;
	}

	.header-content {
		width: 100%;
	}

	.main-title {
		font-size: 2.5rem;
		font-weight: 800;
		margin-bottom: 24px;
		color: #1e293b;
		background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.accent-line {
		display: flex;
		gap: 8px;
		margin-bottom: 32px;
	}

	.accent-segment {
		width: 80px;
		height: 5px;
		border-radius: 3px;
	}

	.accent-segment.orange {
		background: linear-gradient(90deg, #f59e0b, #f97316);
	}

	.accent-segment.green {
		background: linear-gradient(90deg, #10b981, #059669);
	}

	.subtitle {
		font-size: 1.4rem;
		color: #64748b;
		line-height: 1.7;
		font-weight: 400;
		margin-bottom: 40px;
	}

	/* Header Stats */
	.header-stats {
		display: flex;
		gap: 40px;
		margin-top: 40px;
	}

	.stat-item {
		text-align: center;
	}

	.stat-number {
		font-size: 1rem;
		font-weight: 800;
		color: #3b82f6;
		margin-bottom: 8px;
	}

	.stat-text {
		font-size: 0.5rem;
		color: #64748b;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	/* Cards Column */
	.features-cards {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
	}

	.cards-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		width: 100%;
	}

	/* Feature Cards */
	.feature-card {
		background: rgba(255, 255, 255, 0.9);
		backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.2);
		padding: 40px 30px;
		border-radius: 24px;
		text-align: center;
		position: relative;
		overflow: hidden;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	}

	.feature-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.feature-card:hover {
		transform: translateY(-15px) scale(1.02);
		box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
	}

	.feature-card:hover::before {
		opacity: 1;
	}

	.feature-card.featured {
		background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
		border: 2px solid rgba(59, 130, 246, 0.2);
		transform: scale(1.05);
	}

	.feature-card.featured:hover {
		transform: translateY(-15px) scale(1.07);
	}

	/* Card Effects */
	.card-glow {
		position: absolute;
		top: -2px;
		left: -2px;
		right: -2px;
		bottom: -2px;
		background: linear-gradient(135deg, #3b82f6, #1e40af, #8b5cf6);
		border-radius: 26px;
		opacity: 0;
		transition: opacity 0.3s ease;
		z-index: -1;
	}

	.feature-card:hover .card-glow {
		opacity: 0.3;
	}

	/* Card Icons */
	.feature-icon {
		position: relative;
		margin-bottom: 30px;
	}

	.icon-bg {
		width: 100px;
		height: 100px;
		background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 20px;
		position: relative;
		box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
		transition: all 0.3s ease;
	}

	.feature-card:hover .icon-bg {
		transform: scale(1.1) rotate(5deg);
		box-shadow: 0 20px 45px rgba(59, 130, 246, 0.4);
	}

	.icon-bg i {
		font-size: 40px;
		color: white;
		transition: all 0.3s ease;
	}

	.feature-card:hover .icon-bg i {
		transform: scale(1.1);
	}

	/* Particles */
	.icon-particles {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 120px;
		height: 120px;
	}

	.particle {
		position: absolute;
		width: 6px;
		height: 6px;
		background: #3b82f6;
		border-radius: 50%;
		opacity: 0;
		animation: particleFloat 3s ease-in-out infinite;
	}

	.particle:nth-child(1) {
		top: 10px;
		left: 20px;
		animation-delay: 0s;
	}

	.particle:nth-child(2) {
		top: 60px;
		right: 15px;
		animation-delay: 1s;
	}

	.particle:nth-child(3) {
		bottom: 20px;
		left: 30px;
		animation-delay: 2s;
	}

	@keyframes particleFloat {

		0%,
		100% {
			opacity: 0;
			transform: translateY(0) scale(0);
		}

		50% {
			opacity: 1;
			transform: translateY(-20px) scale(1);
		}
	}

	/* Card Content */
	.feature-content {
		position: relative;
		z-index: 1;
	}

	.feature-card h3 {
		font-size: 1.8rem;
		font-weight: 700;
		margin-bottom: 16px;
		color: #1e293b;
		transition: color 0.3s ease;
	}

	.feature-card:hover h3 {
		color: #3b82f6;
	}

	.feature-card p {
		color: #64748b;
		line-height: 1.7;
		font-size: 1rem;
		margin-bottom: 24px;
	}

	/* Card Stats */
	.feature-stats {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 4px;
		padding: 16px;
		background: rgba(59, 130, 246, 0.05);
		border-radius: 12px;
		border: 1px solid rgba(59, 130, 246, 0.1);
	}

	.stat {
		font-size: 1.5rem;
		font-weight: 800;
		color: #3b82f6;
	}

	.stat-label {
		font-size: 0.9rem;
		color: #64748b;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.card-overlay {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(30, 64, 175, 0.02) 100%);
		opacity: 0;
		transition: opacity 0.3s ease;
		pointer-events: none;
	}

	.feature-card:hover .card-overlay {
		opacity: 1;
	}

	/* ===== MODERN STATISTICS SECTION ===== */
	.stats-section {
		padding: 100px 0;
		background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
		position: relative;
		overflow: hidden;
	}

	.stats-section::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background:
			radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
			radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
			radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
		pointer-events: none;
	}

	.stats-section::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modern-stats-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.8" fill="rgba(59,130,246,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23modern-stats-pattern)"/></svg>');
		pointer-events: none;
	}

	.stats-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
		position: relative;
		z-index: 1;
		margin: 0 auto;
	}

	.stats-section .stat-item {
		text-align: center;
		padding: 50px 30px;
		background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
		backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 24px;
		transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		overflow: hidden;
		animation: fadeInUp 1s ease-out both;
		box-shadow:
			0 8px 32px rgba(0, 0, 0, 0.3),
			inset 0 1px 0 rgba(255, 255, 255, 0.1);
	}

	.stats-section .stat-item:nth-child(1) {
		animation-delay: 0.2s;
	}

	.stats-section .stat-item:nth-child(2) {
		animation-delay: 0.4s;
	}

	.stats-section .stat-item:nth-child(3) {
		animation-delay: 0.6s;
	}

	.stats-section .stat-item:nth-child(4) {
		animation-delay: 0.8s;
	}

	.stats-section .stat-item::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
	}

	.stats-section .stat-item:hover {
		transform: translateY(-15px) scale(1.03);
		background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
		border-color: rgba(59, 130, 246, 0.4);
		box-shadow:
			0 25px 60px rgba(59, 130, 246, 0.25),
			inset 0 1px 0 rgba(255, 255, 255, 0.2);
	}

	.stats-section .stat-item:hover::before {
		opacity: 1;
	}

	.stats-section .stat-item h3 {
		font-size: 36px;
		font-weight: 900;
		background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		margin-bottom: 16px;
		position: relative;
		z-index: 1;
		text-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
		transition: all 0.4s ease;
		line-height: 1;
	}

	.stats-section .stat-item:hover h3 {
		background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #dbeafe 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		transform: scale(1.08);
		text-shadow: 0 12px 24px rgba(59, 130, 246, 0.6);
	}

	.stats-section .stat-item p {
		font-size: 14px;
		color: #cbd5e1;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 1.5px;
		position: relative;
		z-index: 1;
		transition: all 0.4s ease;
		margin: 0;
	}

	.stats-section .stat-item:hover p {
		color: #e2e8f0;
		transform: translateY(-2px);
	}

	/* Modern glow effect */
	.stats-section .stat-item::after {
		content: '';
		position: absolute;
		top: -3px;
		left: -3px;
		right: -3px;
		bottom: -3px;
		background: linear-gradient(135deg, #3b82f6, #1e40af, #8b5cf6, #06b6d4);
		border-radius: 27px;
		opacity: 0;
		transition: opacity 0.4s ease;
		z-index: -1;
		filter: blur(8px);
	}

	.stats-section .stat-item:hover::after {
		opacity: 0.4;
	}

	/* Floating particles */
	.stats-section .stat-item .floating-particle {
		position: absolute;
		width: 4px;
		height: 4px;
		background: #3b82f6;
		border-radius: 50%;
		opacity: 0;
		animation: floatParticle 3s ease-in-out infinite;
	}

	.stats-section .stat-item:nth-child(1) .floating-particle:nth-child(1) {
		top: 20%;
		left: 15%;
		animation-delay: 0s;
	}

	.stats-section .stat-item:nth-child(1) .floating-particle:nth-child(2) {
		top: 60%;
		right: 20%;
		animation-delay: 1.5s;
	}

	.stats-section .stat-item:nth-child(2) .floating-particle:nth-child(1) {
		top: 30%;
		left: 25%;
		animation-delay: 0.5s;
	}

	.stats-section .stat-item:nth-child(2) .floating-particle:nth-child(2) {
		bottom: 25%;
		right: 15%;
		animation-delay: 2s;
	}

	.stats-section .stat-item:nth-child(3) .floating-particle:nth-child(1) {
		top: 40%;
		left: 20%;
		animation-delay: 1s;
	}

	.stats-section .stat-item:nth-child(3) .floating-particle:nth-child(2) {
		bottom: 30%;
		right: 25%;
		animation-delay: 2.5s;
	}

	.stats-section .stat-item:nth-child(4) .floating-particle:nth-child(1) {
		top: 25%;
		left: 30%;
		animation-delay: 1.5s;
	}

	.stats-section .stat-item:nth-child(4) .floating-particle:nth-child(2) {
		bottom: 35%;
		right: 20%;
		animation-delay: 3s;
	}

	@keyframes floatParticle {

		0%,
		100% {
			opacity: 0;
			transform: translateY(0) scale(0);
		}

		50% {
			opacity: 1;
			transform: translateY(-20px) scale(1);
		}
	}

	/* ===== PLUGINS CAROUSEL SECTION ===== */
	.plugins-section {
		padding: 100px 0;
		position: relative;
		overflow: hidden;
	}



	.section-header {
		position: relative;
		z-index: 1;
	}

	.section-header h2 {
		font-size: 2.5rem;
		font-weight: 800;
		color: #1e293b;
		margin-bottom: 20px;
		background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.section-header .accent-line {
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}

	.section-header .accent-segment.green {
		width: 80px;
		height: 4px;
		background: linear-gradient(90deg, #10b981, #059669);
		border-radius: 2px;
	}

	.section-header p {
		font-size: 1.2rem;
		color: #64748b;
		line-height: 1.6;
	}

	/* Owl Carousel Custom Styles */
	.plugins-carousel {
		position: relative;
		z-index: 1;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}

	.plugins-carousel .owl-stage {
		padding: 20px 0;
	}

	.plugins-carousel .owl-item {
		padding: 0 15px;
	}

	/* Plugin Cards */
	.plugin-card {
		background: white;
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		height: 100%;
	}

	.plugin-card:hover {
		transform: translateY(-10px) scale(1.02);
		box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
	}

	.plugin-image {
		position: relative;
		overflow: hidden;
	}

	/* Reserve media space to prevent card shifts while images decode */
	.plugin-image::before {
		content: "";
		display: block;
		aspect-ratio: 16 / 9;
	}

	.plugin-image img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		transition: transform 0.4s ease;
		max-width: 50%;
		margin: auto;
	}

	.plugin-card:hover .plugin-image img {
		transform: scale(1.1);
	}




	.plugin-content h3 {
		font-size: 16px;
		font-weight: 700;
		color: #1e293b;
		margin-bottom: 15px;
		line-height: 1.4;
		min-height: 3.2rem;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.plugin-stats {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 25px;
		padding: 15px;
		background: rgba(59, 130, 246, 0.05);
		border-radius: 12px;
		border: 1px solid rgba(59, 130, 246, 0.1);
	}

	.downloads {
		font-size: 0.9rem;
		color: #64748b;
		font-weight: 600;
	}

	.rating {
		color: #f59e0b;
		font-size: 1rem;
		letter-spacing: 2px;
	}



	/* Owl Carousel Navigation */
	.plugins-carousel .owl-nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 100%;
		pointer-events: none;
	}

	.plugins-carousel .owl-prev,
	.plugins-carousel .owl-next {
		position: absolute;
		width: 50px;
		height: 50px;
		background: white;
		border-radius: 50%;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		color: #3b82f6;
		transition: all 0.3s ease;
		pointer-events: auto;
	}

	.plugins-carousel .owl-prev {
		left: -25px;
	}

	.plugins-carousel .owl-next {
		right: -25px;
	}

	.plugins-carousel .owl-prev:hover,
	.plugins-carousel .owl-next:hover {
		background: #3b82f6;
		color: white;
		transform: scale(1.1);
		box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
	}

	/* Owl Carousel Dots */
	.plugins-carousel .owl-dots {
		text-align: center;
		margin-top: 40px;
	}

	.plugins-carousel .owl-dot {
		width: 12px;
		height: 12px;
		margin: 0 6px;
		background: #cbd5e1;
		border-radius: 50%;
		transition: all 0.3s ease;
	}

	.plugins-carousel .owl-dot.active {
		background: #3b82f6;
		transform: scale(1.2);
	}

	.plugins-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 40px;
	}

	.plugin-card {
		background: white;
		border-radius: 15px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		transition: transform 0.3s ease;
	}

	.plugin-card:hover {
		transform: translateY(-5px);
	}



	.plugin-content p {
		color: #666;
		margin-bottom: 20px;
		line-height: 1.6;
	}

	.plugin-stats {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
	}

	.downloads {
		color: #666;
		font-size: 0.9rem;
	}

	.rating {
		color: #ffd700;
		font-size: 1.1rem;
	}


	/* Testimonials Section */
	.testimonials-section {
		padding: 100px 0;
		background: #f8f9fa;
	}

	.testimonials-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 40px;
	}

	.testimonial-card {
		background: white;
		padding: 30px;
		border-radius: 15px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.testimonial-content p {
		font-style: italic;
		color: #666;
		margin-bottom: 20px;
		line-height: 1.6;
	}

	.testimonial-author {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.testimonial-author img {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		object-fit: cover;
	}

	.author-info h4 {
		margin: 0;
		color: #333;
		font-size: 1.1rem;
	}

	.author-info span {
		color: #666;
		font-size: 0.9rem;
	}

	/* CTA Section */
	.cta-section {
		background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
		color: white;
		padding: 100px 0;
		text-align: center;
	}

	.cta-content h2 {
		font-size: 2.5rem;
		margin-bottom: 20px;
		position: relative;
	}

	.cta-content h2::after {
		top: 100%;
		content: '';
		display: block;
		width: 12%;
		height: 4px;
		background: linear-gradient(90deg, var(--hwx-orange), var(--hwx-green));
		margin-top: 10px;
		border-radius: 2px;
		left: 62%;
		position: absolute;
		right: 0;
	}

	.cta-content p {
		font-size: 1.1rem;
		margin-bottom: 30px;
		opacity: 0.9;
	}

	.cta-buttons {
		display: flex;
		gap: 20px;
		justify-content: center;
		flex-wrap: wrap;
	}

	/* About Section */
	.about-section {
		padding: 100px 0;
		background: #f8f9fa;
	}

	.about-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 60px;
		align-items: center;
	}

	.about-text h2 {
		font-size: 2.5rem;
		margin-bottom: 20px;
		color: #1e3a8a;
		font-weight: 700;
	}

	.about-subtitle {
		font-size: 1.2rem;
		color: #3b82f6;
		margin-bottom: 20px;
		font-weight: 600;
	}

	.about-text p {
		color: #666;
		line-height: 1.6;
		margin-bottom: 30px;
	}

	.about-features {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		margin-bottom: 30px;
	}

	.about-feature {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.about-feature i {
		color: #3b82f6;
		font-size: 18px;
	}

	.about-feature span {
		color: #333;
		font-weight: 500;
	}

	.about-image img {
		width: 100%;
		border-radius: 15px;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	}

	/* Pricing Section */
	.pricing-section {
		padding: 100px 0;
		background: white;
	}

	.pricing-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 30px;
		margin-top: 60px;
	}

	.pricing-card {
		background: white;
		border: 2px solid #e5e7eb;
		border-radius: 15px;
		padding: 40px 30px;
		text-align: center;
		position: relative;
		transition: all 0.3s ease;
	}

	.pricing-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
		border-color: #3b82f6;
	}

	.pricing-card.featured {
		border-color: #3b82f6;
		background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
		transform: scale(1.05);
	}

	.pricing-badge {
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translateX(-50%);
		background: #3b82f6;
		color: white;
		padding: 8px 20px;
		border-radius: 20px;
		font-size: 14px;
		font-weight: 600;
	}

	.pricing-header h3 {
		font-size: 1.5rem;
		margin-bottom: 20px;
		color: #1e3a8a;
	}

	.price {
		margin-bottom: 20px;
	}

	.currency {
		font-size: 1.5rem;
		color: #666;
		vertical-align: top;
	}

	.amount {
		font-size: 3rem;
		font-weight: 700;
		color: #1e3a8a;
	}

	.period {
		font-size: 1rem;
		color: #666;
	}

	.pricing-header p {
		color: #666;
		margin-bottom: 30px;
	}

	.pricing-features {
		margin-bottom: 30px;
	}

	.feature {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 15px;
		text-align: left;
	}

	.feature i {
		color: #3b82f6;
		font-size: 16px;
	}

	.feature span {
		color: #333;
	}

	/* ===== HOW IT WORKS SECTION ===== */
	.how-it-works-section {
		padding: 80px 0;
		background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
		position: relative;
		overflow: hidden;
	}

	.how-it-works-section::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="steps-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23steps-pattern)"/></svg>');
		pointer-events: none;
	}

	.steps-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
		position: relative;
		z-index: 1;
		margin-top: 60px;
	}

	.step-card {
		background: rgba(255, 255, 255, 0.9);
		backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.2);
		padding: 50px 30px;
		border-radius: 24px;
		text-align: center;
		position: relative;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	}

	.step-card:hover {
		transform: translateY(-15px) scale(1.02);
		box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
	}

	.step-number {
		position: absolute;
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
		width: 40px;
		height: 40px;
		background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-weight: 700;
		font-size: 18px;
		box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
	}

	.step-icon {
		width: 80px;
		height: 80px;
		background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 30px;
		transition: all 0.3s ease;
	}

	.step-card:hover .step-icon {
		background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(30, 64, 175, 0.2) 100%);
		transform: scale(1.1);
	}

	.step-icon i {
		font-size: 32px;
		color: #3b82f6;
		transition: all 0.3s ease;
	}

	.step-card:hover .step-icon i {
		transform: scale(1.1);
	}

	.step-card h3 {
		font-size: 1.8rem;
		font-weight: 700;
		color: #1e293b;
		margin-bottom: 20px;
		transition: color 0.3s ease;
	}

	.step-card:hover h3 {
		color: #3b82f6;
	}

	.step-card p {
		color: #64748b;
		line-height: 1.7;
		font-size: 1rem;
		margin-bottom: 25px;
	}

	.step-features {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		justify-content: center;
	}

	.step-features .feature-tag {
		background: rgba(59, 130, 246, 0.1);
		color: #3b82f6;
		font-size: 0.8rem;
		font-weight: 600;
		padding: 6px 12px;
		border-radius: 20px;
		border: 1px solid rgba(59, 130, 246, 0.2);
	}

	.steps-connector {
		position: absolute;
		top: 50%;
		left: 0;
		right: 0;
		transform: translateY(-50%);
		z-index: 0;
		pointer-events: none;
	}

	.connector-line {
		position: absolute;
		top: 50%;
		width: 100px;
		height: 2px;
		background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
		transform: translateY(-50%);
	}

	.connector-line:first-child {
		left: 33.33%;
	}

	.connector-line:last-child {
		left: 66.66%;
	}

	/* ===== VIDEO TUTORIALS SECTION ===== */
	.tutorials-section {
		padding: 80px 0;
		background: white;
		position: relative;
		overflow: hidden;
	}

	.tutorials-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
		margin-top: 60px;
	}

	.video-card {
		background: white;
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
	}

	.video-card:hover {
		transform: translateY(-10px) scale(1.02);
		box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
	}

	.video-thumbnail {
		position: relative;
		height: 200px;
		overflow: hidden;
	}

	.video-thumbnail img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.4s ease;
	}

	.video-card:hover .video-thumbnail img {
		transform: scale(1.1);
	}

	.play-button {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 60px;
		height: 60px;
		background: rgba(59, 130, 246, 0.9);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 20px;
		cursor: pointer;
		transition: all 0.3s ease;
		backdrop-filter: blur(10px);
	}

	.video-card:hover .play-button {
		background: #3b82f6;
		transform: translate(-50%, -50%) scale(1.1);
		box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
	}

	.video-overlay {
		position: absolute;
		top: 15px;
		right: 15px;
	}

	.video-duration {
		background: rgba(0, 0, 0, 0.7);
		color: white;
		padding: 4px 8px;
		border-radius: 4px;
		font-size: 12px;
		font-weight: 600;
	}

	.video-content {
		padding: 25px;
	}

	.video-content h3 {
		font-size: 1.3rem;
		font-weight: 700;
		color: #1e293b;
		margin-bottom: 10px;
		line-height: 1.4;
	}

	.video-content p {
		color: #64748b;
		font-size: 0.9rem;
		line-height: 1.6;
		margin-bottom: 15px;
	}

	.video-meta {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.video-category {
		background: rgba(59, 130, 246, 0.1);
		color: #3b82f6;
		padding: 4px 12px;
		border-radius: 20px;
		font-size: 0.8rem;
		font-weight: 600;
	}

	.video-views {
		color: #64748b;
		font-size: 0.8rem;
		font-weight: 500;
	}

	.tutorials-cta {
		text-align: center;
		margin-top: 30px;
		display: flex;
		gap: 20px;
		justify-content: center;
		flex-wrap: wrap;
	}

	/* ===== FAQ SECTION ===== */
	.faq-section {
		padding: 80px 0;
		background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
		position: relative;
		overflow: hidden;
	}

	.faq-grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
		margin-top: 60px;
	}

	.faq-item {
		background: white;
		border-radius: 16px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
		transition: all 0.3s ease;
		border: 1px solid rgba(59, 130, 246, 0.1);
	}

	.faq-item:hover {
		transform: translateY(-5px);
		box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
		border-color: rgba(59, 130, 246, 0.2);
	}

	.faq-question {
		padding: 25px 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		cursor: pointer;
		transition: all 0.3s ease;
		list-style: none;
	}

	.faq-question::-webkit-details-marker {
		display: none;
	}

	.faq-question::marker {
		content: "";
	}

	.faq-question:hover {
		background: rgba(59, 130, 246, 0.05);
	}

	.faq-question .faq-title {
		font-size: 1.1rem;
		font-weight: 600;
		color: #1e293b;
		margin: 0;
		line-height: 1.4;
		display: block;
		text-align: start;
	}

	.faq-toggle {
		width: 24px;
		height: 24px;
		background: rgba(59, 130, 246, 0.1);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #3b82f6;
		font-size: 12px;
		transition: all 0.3s ease;
		flex-shrink: 0;
	}

	details.faq-item[open] .faq-toggle {
		background: #3b82f6;
		color: white;
		transform: rotate(45deg);
	}

	.faq-answer {
		padding: 0 30px 25px;
		color: #64748b;
		line-height: 1.6;
		font-size: 0.95rem;
	}

	.faq-cta {
		text-align: center;
		margin-top: 50px;
	}

	.faq-cta p {
		font-size: 1.1rem;
		color: #64748b;
		margin-bottom: 20px;
	}

	.faq-cta a {
		margin: 0 auto;
	}

	/* ===== BUTTON STYLES ===== */

	/* Responsive Design */
	@media (max-width: 768px) {

		.intro-text {
			order: 1;
		}

		.plugins-carousel {
			grid-template-columns: repeat(1, 1fr);
		}

		.hero-content {
			grid-template-columns: 1fr;
			text-align: center;
			gap: 40px;
		}

		.hero-left {
			order: 2;
		}

		.hero-right {
			order: 1;
		}

		.title-line {
			font-size: 2.5rem;
		}

		.title-line.highlight {
			font-size: 2.8rem;
		}

		.accent-line.orange {
			width: 35px;
		}

		.accent-line.green {
			width: 25px;
			top: 6px;
			left: 6px;
		}

		.plugin-grid {
			grid-template-columns: 1fr;
			gap: 16px;
		}

		.plugin-card {
			padding: 20px;
		}

		.plugin-icon {
			width: 40px;
			height: 40px;
			font-size: 16px;
		}

		.plugin-name {
			font-size: 16px;
		}

		.plugin-description {
			font-size: 12px;
		}

		.feature-tag {
			font-size: 9px;
			padding: 2px 6px;
		}

		.plugin-btn {
			padding: 6px 12px;
			font-size: 11px;
		}

		/* Plugin Introduction Section Mobile */
		.intro-content {
			grid-template-columns: 1fr;
			gap: 40px;
			text-align: center;
		}

		.heading-container {
			margin-bottom: 24px;
		}

		.heading-line {
			flex-direction: column;
			align-items: flex-start;
			gap: 8px;
		}

		.heading-prefix {
			font-size: 2.4rem;
		}

		.heading-highlight {
			font-size: 3rem;
		}

		.heading-suffix {
			font-size: 2.2rem;
			margin-left: 0;
		}

		.heading-accent {
			position: relative;
			top: 0;
			right: 0;
			margin-top: 12px;
		}

		.intro-description {
			font-size: 1rem;
		}

		.intro-features {
			align-items: center;
		}

		.plugin-card-visual {
			width: 240px;
			padding: 24px;
			top: 44%;
			left: 25%;
		}

		.element {
			padding: 8px 12px;
			font-size: 10px;
		}

		.element.security {
			top: 10px;
			right: 20px;
		}

		.element.performance {
			bottom: 40px;
			right: 10px;
		}

		.element.seo {
			bottom: 10px;
			left: 20px;
		}

		.hero-stats {
			justify-content: center;
		}

		.professional-interface {
			height: 380px;
		}

		.app-window {
			width: 260px;
			top: 40px;
			left: 40px;
		}

		.window-header {
			padding: 12px 16px;
		}

		.window-content {
			padding: 16px;
		}

		.stats-row {
			gap: 8px;
		}

		.stat-number {
			font-size: 14px;
		}

		.stat-label {
			font-size: 9px;
		}

		.dashboard-item {
			padding: 10px;
			gap: 10px;
		}

		.item-icon {
			width: 28px;
			height: 28px;
			font-size: 12px;
		}

		.item-name {
			font-size: 11px;
		}

		.item-status {
			font-size: 9px;
		}

		.item-desc {
			font-size: 8px;
		}

		.item-badge {
			font-size: 8px;
			padding: 1px 4px;
		}

		.action-btn {
			padding: 6px 8px;
			font-size: 9px;
		}

		.action-btn i {
			font-size: 8px;
		}

		.module-card {
			padding: 16px;
		}

		.card-icon {
			width: 36px;
			height: 36px;
			font-size: 16px;
		}

		.card-label {
			font-size: 9px;
		}

		/* Adjust card positions for mobile */
		.module-card.plugins {
			top: 30px;
			right: 30px;
		}

		.module-card.themes {
			top: 120px;
			right: 40px;
		}

		.module-card.tools {
			bottom: 100px;
			left: 30px;
		}

		.module-card.code {
			bottom: 30px;
			left: 40px;
		}

		.bg-circle.primary {
			width: 80px;
			height: 80px;
		}

		.bg-circle.secondary {
			width: 60px;
			height: 60px;
		}

		.features-layout {
			grid-template-columns: 1fr;
			gap: 40px;
		}

		.header-content {
			max-width: 100%;
		}

		.main-title {
			font-size: 1.4rem;
		}

		.header-stats {
			justify-content: center;
			gap: 30px;
		}

		.cards-grid {
			grid-template-columns: 1fr;
			gap: 20px;
		}

		.features-grid,
		.plugins-grid,
		.testimonials-grid {
			grid-template-columns: 1fr;
		}

		/* Plugins Carousel Mobile */
		.plugins-section {
			padding: 60px 0;
		}

		h2 {
			font-size: 1.5rem !important;
		}

		.section-header p {
			font-size: 1rem;
		}

		.plugins-carousel .owl-nav {
			display: none;
		}

		.plugin-card {
			margin: 0 10px;
		}



		.plugin-content h3 {
			font-size: 1.3rem;
		}

		.plugin-content h3 {
			font-size: 1rem;
			min-height: 2.8rem;
		}

		.plugin-stats {
			padding: 12px;
		}

		.downloads {
			font-size: 0.8rem;
		}

		.rating {
			font-size: 0.9rem;
		}

		/* Statistics Section Mobile */
		.stats-section {
			padding: 80px 0;
		}

		.stats-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 20px;
			max-width: 100%;
		}

		.stats-section .stat-item {
			padding: 40px 20px;
		}

		.stats-section .stat-item h3 {
			font-size: 2rem;
		}

		.stats-section .stat-item p {
			font-size: 0.9rem;
		}

		.about-content {
			grid-template-columns: 1fr;
		}

		.about-features {
			grid-template-columns: 1fr;
		}

		.pricing-grid {
			grid-template-columns: 1fr;
		}

		.pricing-card.featured {
			transform: none;
		}

		.cta-buttons {
			flex-direction: column;
			align-items: center;
		}

		.stats-grid {
			grid-template-columns: repeat(2, 1fr);
		}

		/* New Sections Mobile Responsive */
		.steps-grid {
			grid-template-columns: 1fr;
			gap: 30px;
		}

		.steps-connector {
			display: none;
		}

		.tutorials-grid {
			grid-template-columns: 1fr;
			gap: 20px;
		}

		.faq-grid {
			grid-template-columns: 1fr;
			gap: 20px;
		}

		

		.tutorials-cta {
			flex-direction: column;
			align-items: center;
		}
	}

/* -------------------------------------------------------------------------
   Home template (home.php): fluid section rhythm — less vertical bloat, clearer UX
   Scoped to .hwx-home-page so other templates are unchanged.
   ------------------------------------------------------------------------- */
.hwx-home-page {
	--hwx-sec-y: clamp(2.5rem, 4.5vw, 3.75rem);
	--hwx-hero-y: clamp(2.75rem, 5vw, 4rem);
	--hwx-stack: clamp(1.25rem, 2.5vw, 2rem);
}

@media (max-width: 768px) {
	.hwx-home-page {
		--hwx-sec-y: clamp(2rem, 5vw, 2.75rem);
		--hwx-hero-y: clamp(2.25rem, 6vw, 3rem);
		--hwx-stack: clamp(1rem, 3vw, 1.5rem);
	}
}

.hwx-home-page .plugin-intro-section {
	padding-block: var(--hwx-hero-y);
}

.hwx-home-page .stats-section,
.hwx-home-page .features-section,
.hwx-home-page .plugins-section,
.hwx-home-page .testimonials-section,
.hwx-home-page .pricing-section,
.hwx-home-page .cta-section,
.hwx-home-page .about-section,
.hwx-home-page .how-it-works-section,
.hwx-home-page .tutorials-section,
.hwx-home-page .faq-section {
	padding-block: var(--hwx-sec-y);
}

.hwx-home-page .stats-grid {
	gap: var(--hwx-stack);
}

.hwx-home-page .stats-section .stat-item {
	padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.5rem);
}

.hwx-home-page .features-layout {
	gap: var(--hwx-stack);
	min-height: 0;
}

.hwx-home-page .cards-grid {
	gap: var(--hwx-stack);
}

.hwx-home-page .feature-card {
	padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
}

.hwx-home-page .section-header {
	margin-bottom: var(--hwx-stack);
}

.hwx-home-page .section-header h2 {
	margin-bottom: clamp(0.45rem, 1.2vw, 0.65rem);
}

.hwx-home-page .plugins-carousel {
	margin-top: var(--hwx-stack);
	gap: var(--hwx-stack);
}

.hwx-home-page .plugin-content {
	padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.25rem);
}

.hwx-home-page .testimonials-grid {
	gap: var(--hwx-stack);
}

.hwx-home-page .testimonial-card {
	padding: clamp(1.1rem, 2.2vw, 1.6rem);
}

.hwx-home-page .pricing-grid {
	margin-top: var(--hwx-stack);
	gap: var(--hwx-stack);
}

.hwx-home-page .pricing-card {
	padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.25rem, 2vw, 1.75rem);
}

.hwx-home-page .how-it-works-section .steps-grid {
	gap: var(--hwx-stack);
	margin-top: var(--hwx-stack);
}

.hwx-home-page .step-card {
	padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.25rem, 2vw, 1.5rem);
}

.hwx-home-page .tutorials-grid {
	gap: var(--hwx-stack);
	margin-top: var(--hwx-stack);
}

.hwx-home-page .video-content {
	padding: clamp(1rem, 2vw, 1.35rem);
}

.hwx-home-page .faq-grid {
	gap: var(--hwx-stack);
	margin-top: var(--hwx-stack);
}

.hwx-home-page .faq-question {
	padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 2.5vw, 1.5rem);
}

.hwx-home-page .faq-answer {
	padding: 0 clamp(1.25rem, 2.5vw, 1.5rem) clamp(0.85rem, 1.8vw, 1.15rem);
}

.hwx-home-page .intro-content {
	gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.hwx-home-page .heading-container {
	margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hwx-home-page .intro-description {
	margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.hwx-home-page .intro-features {
	gap: clamp(0.65rem, 1.5vw, 0.9rem);
	margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.hwx-home-page .about-content {
	gap: var(--hwx-stack);
}

.hwx-home-page .about-features {
	gap: var(--hwx-stack);
}

.hwx-home-page .tutorials-cta {
	margin-top: var(--hwx-stack);
	gap: var(--hwx-stack);
}

.hwx-home-page .faq-cta {
	margin-top: var(--hwx-stack);
}

.hwx-home-page .cta-content p {
	margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.hwx-home-page .professional-interface {
	min-height: clamp(380px, 50vw, 480px);
}

/* Keep above-fold stable and reduce visual jump from late effects */
.hwx-home-page .plugin-intro-section,
.hwx-home-page .stats-section {
	contain: layout paint;
}
