.mattock-reason {
	// Custom colors based on the HTML demo - adapted for Tailwind v4
	:root {
		--primary: #1e3a8a;
		--primary-dark: #1e293b;
		--primary-light: #3b82f6;
		--secondary: #10b981;
		--secondary-dark: #059669;
		--secondary-light: #34d399;
		--accent: #f59e0b;
		--accent-light: #fbbf24;
	}
	
	// Custom gradient text
	.gradient-text {
		background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	
	// Gradient backgrounds
	.gradient-bg-primary {
		background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	}
	
	.gradient-bg-primary-dark {
		background: linear-gradient(135deg, #1e293b 0%, #1e3a8a 100%);
	}
	
	.gradient-bg-secondary {
		background: linear-gradient(135deg, #059669 0%, #34d399 100%);
	}
	
	.gradient-bg-gold {
		background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fde68a 100%);
	}
	
	.gradient-bg-accent {
		background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
	}
	
	// Scroll animations
	.animate-on-scroll {
		opacity: 0;
		transform: translateY(30px);
		transition: all 0.8s ease-out;
		
		&.visible {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	// Custom animations for Tailwind v4
	@keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	
	@keyframes fadeInUp {
		0% {
			opacity: 0;
			transform: translateY(30px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	@keyframes fadeInDown {
		0% {
			opacity: 0;
			transform: translateY(-30px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	@keyframes float {
		0%, 100% {
			transform: translate(0, 0) scale(1);
		}
		50% {
			transform: translate(-20px, -30px) scale(1.1);
		}
	}
	
	@keyframes counter {
		0% {
			transform: translateY(100%);
		}
		100% {
			transform: translateY(0);
		}
	}
	
	// Animation classes
	.animate-fade-in {
		animation: fadeIn 0.8s ease-out;
	}
	
	.animate-fade-in-up {
		animation: fadeInUp 0.8s ease-out;
	}
	
	.animate-fade-in-down {
		animation: fadeInDown 0.8s ease-out;
	}
	
	.animate-float {
		animation: float 20s infinite ease-in-out;
	}
	
	.animate-pulse-slow {
		animation: pulse 2s infinite;
	}
	
	.animate-counter {
		animation: counter 2s ease-out;
	}
	
	// Custom shadows
	.shadow-glow {
		box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
	}
	
	// Tab button styles
	.tab-button {
		position: relative;
		transition: all 0.3s ease;
		border: 2px solid transparent;
		
		&:hover {
			transform: translateY(-2px);
			box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
		}
		
		&.active {
			background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
			color: white;
			border-color: transparent;
			box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
		}
	}
	
	// Checkbox item styles
	.checkbox-item {
		transition: all 0.3s ease;
		border: 2px solid transparent;
		
		&:hover {
			transform: translateY(-2px);
			box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		}
		
		.checkbox-icon {
			transition: all 0.3s ease;
		}
		
		input[type="checkbox"]:checked ~ .checkbox-icon {
			background-color: var(--primary);
			color: white;
		}
		
		&:has(input[type="checkbox"]:checked) {
			background-color: rgba(59, 130, 246, 0.1);
			border-color: var(--primary);
		}
	}
	
	// Comparison table styles
	.comparison-table {
		.our-column {
			background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
			position: relative;
			
			&::before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
				pointer-events: none;
			}
		}
		
		tr:hover {
			background-color: rgba(59, 130, 246, 0.05);
		}
	}
	
	// Progress bar animation
	.progress-bar {
		transition: width 1.5s ease-out;
		transform-origin: left;
	}
	
	// Counter animation enhancement
	.counter {
		font-variant-numeric: tabular-nums;
		transition: all 0.3s ease;
	}
	
	// Custom colors for theme integration
	.text-primary {
		color: var(--primary);
	}
	
	.text-primary-dark {
		color: var(--primary-dark);
	}
	
	.text-primary-light {
		color: var(--primary-light);
	}
	
	.text-secondary {
		color: var(--secondary);
	}
	
	.text-secondary-dark {
		color: var(--secondary-dark);
	}
	
	.text-secondary-light {
		color: var(--secondary-light);
	}
	
	.text-accent {
		color: var(--accent);
	}
	
	.text-accent-light {
		color: var(--accent-light);
	}
	
	// Background color utilities
	.bg-primary {
		background-color: var(--primary);
	}
	
	.bg-primary-dark {
		background-color: var(--primary-dark);
	}
	
	.bg-primary-light {
		background-color: var(--primary-light);
	}
	
	.bg-secondary {
		background-color: var(--secondary);
	}
	
	.bg-secondary-dark {
		background-color: var(--secondary-dark);
	}
	
	.bg-secondary-light {
		background-color: var(--secondary-light);
	}
	
	.bg-accent {
		background-color: var(--accent);
	}
	
	.bg-accent-light {
		background-color: var(--accent-light);
	}
	
	// Border color utilities
	.border-primary {
		border-color: var(--primary);
	}
	
	.border-secondary {
		border-color: var(--secondary);
	}
	
	.border-accent {
		border-color: var(--accent);
	}
	
	// Hover states
	.hover\:border-primary:hover {
		border-color: var(--primary);
	}
	
	.hover\:text-primary:hover {
		color: var(--primary);
	}
	
	.hover\:bg-primary:hover {
		background-color: var(--primary);
	}
	
	// Focus states
	.focus\:border-primary:focus {
		border-color: var(--primary);
	}
	
	.focus\:ring-primary:focus {
		--tw-ring-color: var(--primary);
	}
	
	// ROI Calculator specific styles
	#roiResult {
		border: 2px solid var(--secondary);
		background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
	}
	
	// Industry selector styles
	#industrySelect {
		border: 2px solid #e5e7eb;
		transition: all 0.3s ease;
		
		&:focus {
			border-color: var(--primary);
			box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
		}
	}
	
	.industry-content {
		animation: fadeInUp 0.5s ease-out;
	}
	
	// Enhanced drop shadow for text
	.drop-shadow-md {
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	}
	
	.drop-shadow-lg {
		text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
	}
	
	// CTA pulse effect
	@keyframes ctaPulse {
		0%, 100% {
			box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
		}
		50% {
			box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
		}
	}
	
	.cta-pulse {
		animation: ctaPulse 2s infinite;
	}
	
	// Mobile enhancements
	@media (max-width: 768px) {
		.tab-button {
			font-size: 0.875rem;
			padding: 0.75rem 1rem;
		}
		
		.comparison-table {
			font-size: 0.875rem;
		}
		
		.checkbox-item {
			padding: 1rem;
		}
	}
	
	// Scrollbar hide utilities
	.scrollbar-hide {
		-ms-overflow-style: none;
		scrollbar-width: none;
		
		&::-webkit-scrollbar {
			display: none;
		}
	}
	
	// Hero section background
	.hero-section.bg-gradient-to-br {
		background-image: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(255, 255, 255, 1), rgba(16, 185, 129, 0.1));
	}
	
	// Final CTA section
	.gradient-bg-primary {
		background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
		position: relative;
		overflow: hidden;
		
		&::before {
			content: '';
			position: absolute;
			top: -50%;
			right: -50%;
			width: 200%;
			height: 200%;
			background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
			animation: float 30s infinite ease-in-out;
		}
	}
}