* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	.m-body-custom {
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		min-height: 100vh;
		position: relative;
		overflow-x: hidden;
		padding-top: 80px;
	}

	.m-background-animation {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
		z-index: 0;
		pointer-events: none;
	}

	.m-floating-shape {
		position: absolute;
		background: rgba(255, 255, 255, 0.75);
		border-radius: 50%;
		animation: float 6s ease-in-out infinite;
	}

	.m-shape-1 {
		width: 80px;
		height: 80px;
		top: 20%;
		left: 10%;
		animation-delay: 0s;
	}

	.m-shape-2 {
		width: 120px;
		height: 120px;
		top: 60%;
		right: 15%;
		animation-delay: 2s;
	}

	.m-shape-3 {
		width: 60px;
		height: 60px;
		top: 80%;
		left: 20%;
		animation-delay: 4s;
	}

	.m-shape-4 {
		width: 100px;
		height: 100px;
		top: 10%;
		right: 30%;
		animation-delay: 1s;
	}

	.m-shape-5 {
		width: 40px;
		height: 40px;
		top: 70%;
		right: 50%;
		animation-delay: 3s;
	}

	@keyframes float {
		0%, 100% { transform: translateY(0px) rotate(0deg); }
		50% { transform: translateY(-20px) rotate(180deg); }
	}

	/* m-header Styles */
	.m-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		z-index: 1000;
		transition: all 0.3s ease;
	}

	.m-nav-container {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 1rem 2rem;
	}

	.m-logo {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		font-size: 1.5rem;
		font-weight: 700;
		color: #2d3748;
		text-decoration: none;
	}

	.m-logo-icon {
		width: 40px;
		height: 40px;
		background: linear-gradient(135deg, #667eea, #764ba2);
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
	}

	.m-nav-links {
		display: flex;
		list-style: none;
		gap: 2rem;
	}

	.m-nav-links a {
		text-decoration: none;
		color: #4a5568;
		font-weight: 500;
		transition: color 0.3s ease;
		position: relative;
	}

	.m-nav-links a:hover {
		color: #667eea;
	}

	.m-nav-links a::after {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0;
		height: 2px;
		background: #667eea;
		transition: width 0.3s ease;
	}

	.m-nav-links a:hover::after {
		width: 100%;
	}

	.m-mobile-menu-btn {
		display: none;
		background: none;
		border: none;
		font-size: 1.5rem;
		cursor: pointer;
		color: #4a5568;
	}

	/* Main Content */
	.m-main-content {
		position: relative;
		z-index: 1;
		min-height: calc(100vh - 160px);
		padding: 2rem 0;
	}

	.m-container {
	    background: rgba(255, 255, 255, 0.6);  /* напівпрозорий білий */
        backdrop-filter: blur(20px);           /* розмиття заднього фону */
        -webkit-backdrop-filter: blur(20px);   /* для Safari */
        
		border-radius: 20px;
		padding: 3rem 2.5rem;
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
		max-width: 1200px;
		margin: 0 auto 2rem;
		border: 1px solid rgba(255, 255, 255, 0.2);
		animation: slideUp 0.8s ease-out;
		
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.75);
		backdrop-filter: blur(20px);
	}

	.m-container-2 {
	    background: rgba(255, 255, 255, 0.6);  /* напівпрозорий білий */
        backdrop-filter: blur(20px);           /* розмиття заднього фону */
        -webkit-backdrop-filter: blur(20px);   /* для Safari */
        
		border-radius: 20px;
		padding: 3rem 2.5rem;
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
		max-width: 650px;
		margin: 0 auto 2rem;
		border: 1px solid rgba(255, 255, 255, 0.2);
		animation: slideUp 0.8s ease-out;
		
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.75);
		backdrop-filter: blur(20px);
	}

	@keyframes slideUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.m-hero-section {
		text-align: center;
		margin-bottom: 4rem;
	}

	.m-hero-icon {
		width: 120px;
		height: 120px;
		margin: 0 auto 2rem;
		background: linear-gradient(135deg, #667eea, #764ba2);
		border-radius: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		animation: pulse 2s ease-in-out infinite;
	}

	.m-hero-icon::before {
		content: "💻";
		font-size: 3rem;
	}

	@keyframes pulse {
		0%, 100% { transform: scale(1); }
		50% { transform: scale(1.05); }
	}

	.m-hero-title {
		font-size: 3rem;
		font-weight: 900;
		background: linear-gradient(135deg, #667eea, #764ba2);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		margin-bottom: 1rem;
		line-height: 1.2;
	}

	.m-hero-subtitle {
		color: #4a5568;
		font-size: 1.3rem;
		margin-bottom: 2rem;
		line-height: 1.6;
	}

	.m-services-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
		margin: 3rem 0;
	}

	.m-service-card {
		background: #f7fafc;
		border-radius: 15px;
		padding: 2rem;
		text-align: center;
		border: 2px solid transparent;
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
	}

	.m-service-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
		transition: left 0.5s;
	}

	.m-service-card:hover::before {
		left: 100%;
	}

	.m-service-card:hover {
		border-color: #667eea;
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
	}

	.m-service-icon {
		font-size: 3rem;
		margin-bottom: 1rem;
		width: 80px;
		height: 80px;
		margin: 0 auto 1rem;
		background: linear-gradient(135deg, #667eea, #764ba2);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		animation: pulse 2s ease-in-out infinite;
		color: white;
	}

	.m-service-title {
		color: #2d3748;
		font-size: 1.5rem;
		font-weight: 700;
		margin-bottom: 1rem;
	}

	.m-service-description {
		color: #4a5568;
		line-height: 1.6;
	}

	.m-cta-section {
		text-align: center;
		margin: 4rem 0;
		padding: 3rem;
		background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
		border-radius: 20px;
		border: 1px solid rgba(102, 126, 234, 0.2);
	}

	.m-cta-title {
		color: #2d3748;
		font-size: 2rem;
		font-weight: 700;
		margin-bottom: 1rem;
	}

	.m-cta-description {
		color: #4a5568;
		font-size: 1.1rem;
		margin-bottom: 2rem;
		line-height: 1.6;
	}

	.m-buttons {
		display: flex;
		gap: 1rem;
		justify-content: center;
		flex-wrap: wrap;
	}

	.m-btn {
		padding: 1rem 2rem;
		border: none;
		border-radius: 12px;
		font-size: 1rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		position: relative;
		overflow: hidden;
	}

	.m-btn::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
		transition: left 0.5s;
	}

	.m-btn:hover::before {
		left: 100%;
	}

	.m-btn-primary {
		background: linear-gradient(135deg, #667eea, #764ba2);
		color: white;
		box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	}

	.m-btn-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
	}

	.m-btn-secondary {
		background: white;
		color: #667eea;
		border: 2px solid #667eea;
	}

	.m-btn-secondary:hover {
		background: #667eea;
		color: white;
		transform: translateY(-2px);
		box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
	}

	/* m-footer Styles */
	.m-footer {
		position: relative;
		z-index: 1;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(20px);
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		padding: 2rem 0;
		margin-top: 2rem;
	}

	.m-footer-container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2rem;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 2rem;
		text-align: center;
	}

	.m-footer-section h3 {
		color: #2d3748;
		font-size: 1.2rem;
		font-weight: 700;
		margin-bottom: 1rem;
	}

	.m-footer-section p,
	.m-footer-section a {
		color: #4a5568;
		text-decoration: none;
		line-height: 1.6;
		margin-bottom: 0.5rem;
		display: block;
	}

	.m-footer-section a:hover {
		color: #667eea;
	}

	.m-social-links {
		display: flex;
		gap: 1rem;
		justify-content: center;
		margin-top: 1rem;
	}

	.m-social-link {
		width: 40px;
		height: 40px;
		background: #f7fafc;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.2rem;
		transition: all 0.3s ease;
	}

	.m-social-link:hover {
		background: #667eea;
		color: white;
		transform: translateY(-2px);
	}

	.m-footer-bottom {
		text-align: center;
		margin-top: 2rem;
		padding-top: 2rem;
		border-top: 1px solid rgba(102, 126, 234, 0.2);
		color: #4a5568;
	}

	/* Responsive Design */
	@media (max-width: 768px) {
		.m-nav-links {
			display: none;
		}
		
		.m-mobile-menu-btn {
			display: block;
		}
		
		.m-container {
			margin: 0 1rem 2rem;
			padding: 2rem 1.5rem;
		}
		
		.m-hero-title {
			font-size: 2rem;
		}
		
		.m-hero-subtitle {
			font-size: 1.1rem;
		}
		
		.m-services-grid {
			grid-template-columns: 1fr;
		}
		
		.m-buttons {
			flex-direction: column;
			align-items: center;
		}
		
		.m-btn {
			width: 100%;
			max-width: 300px;
		}
	}

	/* m-modal Styles */
	.m-modal {
		display: none;
		position: fixed;
		z-index: 2000;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(10px);
		animation: fadeIn 0.3s ease;
	}

	.m-modal.show {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.m-modal-content {
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(20px);
		border-radius: 20px;
		padding: 2rem;
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
		border: 1px solid rgba(255, 255, 255, 0.2);
		max-width: 90%;
		max-height: 90%;
		overflow-y: auto;
		position: relative;
		animation: slideUp 0.5s ease-out;
	}

	.m-modal-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 2rem;
		padding-bottom: 1rem;
		border-bottom: 2px solid rgba(102, 126, 234, 0.2);
	}

	.m-modal-title {
		color: #2d3748;
		font-size: 2rem;
		font-weight: 700;
		background: linear-gradient(135deg, #667eea, #764ba2);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.m-close-btn {
		background: none;
		border: none;
		font-size: 2rem;
		cursor: pointer;
		color: #4a5568;
		transition: all 0.3s ease;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.m-close-btn:hover {
		background: #f7fafc;
		color: #667eea;
		transform: rotate(90deg);
	}

	.m-portfolio-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
		margin: 2rem 0;
	}

	.m-portfolio-item {
		background: #f7fafc;
		border-radius: 15px;
		padding: 1.5rem;
		border: 2px solid transparent;
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
	}

	.m-portfolio-item::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
		transition: left 0.5s;
	}

	.m-portfolio-item:hover::before {
		left: 100%;
	}

	.m-portfolio-item:hover {
		border-color: #667eea;
		transform: translateY(-3px);
		box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
	}

	.m-portfolio-item h4 {
		color: #2d3748;
		font-size: 1.3rem;
		font-weight: 600;
		margin-bottom: 0.5rem;
	}

	.m-portfolio-item p {
		color: #4a5568;
		line-height: 1.6;
		margin-bottom: 1rem;
	}

	.m-portfolio-tags {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.m-portfolio-tag {
		background: #667eea;
		color: white;
		padding: 0.3rem 0.8rem;
		border-radius: 20px;
		font-size: 0.8rem;
		font-weight: 500;
	}

	.m-pricing-table {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
		margin: 2rem 0;
	}

	.m-pricing-card {
		background: #f7fafc;
		border-radius: 15px;
		padding: 2rem;
		text-align: center;
		border: 2px solid transparent;
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
	}

	.m-pricing-card.featured {
		border-color: #667eea;
		transform: scale(1.05);
		background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
	}

	.m-pricing-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
		transition: left 0.5s;
	}

	.m-pricing-card:hover::before {
		left: 100%;
	}

	.m-pricing-card:hover {
		border-color: #667eea;
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
	}

	.m-pricing-card.featured:hover {
		transform: scale(1.05) translateY(-5px);
	}

	.m-pricing-header {
		margin-bottom: 1.5rem;
	}

	.m-pricing-title {
		color: #2d3748;
		font-size: 1.5rem;
		font-weight: 700;
		margin-bottom: 0.5rem;
	}

	.m-pricing-price {
		color: #667eea;
		font-size: 3rem;
		font-weight: 900;
		margin-bottom: 0.5rem;
	}

	.m-pricing-period {
		color: #4a5568;
		font-size: 1rem;
	}

	.m-pricing-features {
		list-style: none;
		text-align: left;
		margin: 2rem 0;
	}

	.m-pricing-features li {
		padding: 0.5rem 0;
		color: #4a5568;
		position: relative;
		padding-left: 2rem;
	}

	.m-pricing-features li::before {
		content: "✅";
		position: absolute;
		left: 0;
		top: 0.5rem;
	}

	@media (max-width: 768px) {
		.m-modal-content {
			margin: 1rem;
			padding: 1.5rem;
			max-width: calc(100% - 2rem);
		}
		
		.m-portfolio-grid {
			grid-template-columns: 1fr;
		}
		
		.m-pricing-table {
			grid-template-columns: 1fr;
		}
		
		.m-pricing-card.featured {
			transform: none;
		}
		
		.m-pricing-card.featured:hover {
			transform: translateY(-5px);
		}
	}